:root {
  /* Primary Font Sizes */
  --font-size-xs: 0.75rem;    /* 12px at 16px base */
  --font-size-sm: 0.875rem;   /* 14px at 16px base */
  --font-size-base: 1rem;     /* 16px */
  --font-size-md: 1.125rem;   /* 18px at 16px base */
  --font-size-lg: 1.25rem;    /* 20px at 16px base */
  --font-size-xl: 1.5rem;     /* 24px at 16px base */
  --font-size-2xl: 1.75rem;   /* 28px at 16px base */
  --font-size-3xl: 2rem;      /* 32px at 16px base */
  --font-size-4xl: 2.5rem;    /* 40px at 16px base */
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Letter Spacing */
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
}

/* Responsive Base Font Size */
html {
  font-size: 14px; /* for very small screens (~320px-399px) */
}

/* 400px and above */
@media (min-width: 400px) {
  html {
    font-size: 15px;
  }
}

/* 600px and above */
@media (min-width: 600px) {
  html {
    font-size: 16px;
  }
}

/* 768px and above (Tablets) */
@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}

/* 1024px and above (Desktops) */
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}

/* 1440px and above (Big desktops) */
@media (min-width: 1440px) {
  html {
    font-size: 19px;
  }
}

/* Typography Utility Classes */
.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-base {
  font-size: var(--font-size-base);
}

.text-md {
  font-size: var(--font-size-md);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

.text-2xl {
  font-size: var(--font-size-2xl);
}

.text-3xl {
  font-size: var(--font-size-3xl);
}

.text-4xl {
  font-size: var(--font-size-4xl);
}

/* Font Weight Classes */
.font-light {
  font-weight: var(--font-weight-light);
}

.font-normal {
  font-weight: var(--font-weight-normal);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

.font-semibold {
  font-weight: var(--font-weight-semibold);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

/* Line Height Classes */
.leading-tight {
  line-height: var(--line-height-tight);
}

.leading-normal {
  line-height: var(--line-height-normal);
}

.leading-relaxed {
  line-height: var(--line-height-relaxed);
}

/* Letter Spacing Classes */
.tracking-tight {
  letter-spacing: var(--letter-spacing-tight);
}

.tracking-normal {
  letter-spacing: var(--letter-spacing-normal);
}

.tracking-wide {
  letter-spacing: var(--letter-spacing-wide);
}

/* Element-specific typography */
body {
  font-family: 'Poppins', sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--dark);
}

h1, .h1 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 0.75rem;
}

h3, .h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  margin-bottom: 0.75rem;
}

h4, .h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}
:root {
  --primary: #2563eb;
  --secondary: #f59e0b;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --success: #10b981;
  --card-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f1f5f9;
  color: var(--dark);
  line-height: 1.6;
}

.blog-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .card-image {
  transform: scale(1.1);
}

.card-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.card-date i {
  margin-right: 8px;
  color: var(--primary);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
  transition: var(--transition);
}

.blog-card:hover .card-title {
  color: var(--primary);
}

.card-excerpt {
  color: var(--gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
  padding-top: 15px;
}

.author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid var(--primary);
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary);
}

.read-more:hover i {
  transform: translateX(5px);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--success);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 5px;
}

.view-all-container {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, var(--primary), #4f46e5);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}


/* Apply to your specific elements */
.menu_bar li {
  font-size: var(--font-size-base);
}

.card-header span {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

#about h5 {
  color: #faea0c;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
  margin-bottom: 10px;
}

#about p {
  text-align: center;
  font-size: var(--font-size-base);
  color: #666;
}

.image-container .overlay {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}

#abouts p {
  text-align: center;
  font-size: var(--font-size-md) !important;
  color: #1c2120;
}

#abouts h3 {
  color: #1c2120;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-2xl);
  margin-bottom: 10px;
}

.imagegallery .content h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: #1c2120;
}

/* Mobile-specific adjustments */
@media only screen and (max-width: 601px) {
  .row.circles p {
    font-size: var(--font-size-sm);
  }
  
  .overlay {
    font-size: var(--font-size-sm);
  }
  
  .container h3 {
    font-size: var(--font-size-lg);
  }
  
  .container p {
    font-size: var(--font-size-sm);
  }
}

@media only screen and (max-width: 400px) {
  .imagegallery .content h4 {
    font-size: var(--font-size-base) ;
  }
  
  .btn {
    font-size: var(--font-size-sm);
  }
}

/* Default styles for larger screens (Desktops & large laptops) */
.menu_bar li{
    font-size: medium ;
    /*font-weight: bold ;*/
}
.menu_bar li:hover{
    background-color: #faea0c;
}
.menu_bar .nav-item{
    /* height: 80px; */
    display: flex !important;
    align-items: center !important;
}
.menu_bar a{
    color: black;
}
.menu_bar a:hover{
    color: black;
}
.col-lg-4 iframe{
    width: 100% !important;
    height: 70% !important;
}
.carousel-container .carousel-imagex button{
    background-color:#faea0c;
    color:Black;
}
.carousel-container .carousel-image button{
    background-color:#faea0c;
    color:Black;
}
nav{
    margin-top: 10px !important;
}
nav button{
    border: none !important;
}
.slide{
    width: 50%;
    display: flex;
    margin: auto;
}
#aboutus{
    margin-top: 35px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    color:#ffbd59;
    font-weight: bold;
    font-size: larger;
    padding: 15px;
}
#aboutus p{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

.logo_cont{
    display: flex;
    align-items: center;
    margin-left: 50px;
    /* width: 50%; */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}
.logo_cont img{
    width: 400px;
}

#about{
    display: flex;
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
    /* height: 200px; */
}
#about p{
    text-align: center;
    /*font-size: 20px;*/
    color: #666;
}
#about h5{
    color:#faea0c;
    font-weight: bold;
    /*font-size: 30px;*/
    margin-bottom: 10px;
}
.search-bar{
    width: 50%; 
    margin: auto;  
    /* margin-top: -25px; */
}
/* nationalcards ...............................................................*/
.carousel-containerss {
    position: relative;
    width: 80%; /* Adjust to fit 6 images */
    height: 250px; /* Set height to 100px */
    overflow: hidden;
    margin: auto;
}

.carousel-news {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item-news {
    min-width: calc(80% / 4); /* Each item takes 1/6th of the container width */
    height: 250px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* background-color: #f1c40f; */
}
.carousel-item-news div{
    text-decoration: none;
    background-color: #ffbd59;
    color: #1c2120;
    padding: 5px;
    margin: 2px;
    border-radius: 10px;
    font-weight: bold;
}
.carousel-item-news div:hover{
    background-color: #1c2120;
    color: #ffbd59;
}

.carousel-news img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    padding: 5px;
    border-radius: 20px;
}

.carousel-buttons-news {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-buttons-news button{
    border: none;
    border-radius: 50%;
    background-color:rgb(233, 228, 220);
    padding: 5px;
    cursor: pointer;
}

.carousel-buttons-news:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.carousel-buttons-news svg{
    color:rgb(76, 170, 165);
    width: 25px;
    height: 25px;
}

/* circle */
.circle{
    /*height: 220px;*/
    /*margin: 15px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle div:hover{
    transform: scale(0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.circle img{
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.circle a{
    text-decoration: none;
    color: orange;
}
.explore img{
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    /* border-radius: 8px; */
}
.explore-col{
    display: flex;
    justify-content: space-between;
    margin: 4px 0px;
    height:250px;
    padding: 4px !important;
    /* border: 1px solid #ffbd59; */
}
.image-container .overlay{
    z-index: 1;
    position: absolute;
    color:#faea0c;
    font-weight: bold;
    display: flex;
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* opacity: 0.8; */
    margin: 25px;
    font-size: 20px;
}


.address_bar{
    /* height: 400px;  */
    background-color:#faea0c; 
    color:#1c2120; 
    margin-top: 15px; 
    top: 0; 
    position: sticky;
}
.foot_icons img{
    height: 30px;
    margin: 0;
    padding: 0px 10px;
}
#footer_area h3, h5{
    /* background-color: #007acc; */
    margin: 10px 0px;
    font-weight: bold;
}
#foot-logo img{
    height:50px;
}
#foot-logo h1{
    /* border: 2px solid black; */
    font-weight: bolder;
    height: 80px;
    align-items: center;
    display: flex;
    margin: 0;
}

/* rowimage */
.image-container img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    /* max-width: 400px; */
}

.image-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* image */
.card-image img:hover{
    transform: scale(0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.card-header span{
    font-size: 15px;
    margin: 0 10px;
    font-weight: bold;
    color:#1c2120;
    /* background-color: #ffbd59; */
    padding: 7px;
    /* border-radius: 40%; */
}
.card-header span:hover{
    background-color: #ffbd59;
    color: #1c2120;
}

/* scrollcontainer */
  /* Navbar styles */
 

  /* Scroll container styles */
  .scroll-container1 {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    
    scroll-snap-type: x mandatory;

    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  .scroll-container1::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Edge */
  }

  /* destination */
  .table-destinations td a{
    text-decoration: none;
    color: #1c2120;
    padding: 0 5px;
  }
  .table-destinations td a:hover{
    color: #ffbd59;
  }

  /* mycarousel1 */

  .mycarousel1{
    width: 70%;
    margin: auto;
    display: flex;
    /* height: 350px; */
  }
  .mycarousel1 img{
    height: 350px;
    /* width: 70%; */
    /* border-radius: 10px; */
  }
  .mycarousel1 button{
    width:auto;
    /* margin: 0 -40px; */
  }
  .mycarousel1 button svg{
    width: 40px;
    height: 40px;
    color:white;
    /* border-radius: 50%; */
  }

    .mycarousel1 .carousel-caption{
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        font-weight: bold;
        padding: 10px;
        border-radius: 10px;
        height: 115px;
    }
    

    
    
/* imagegallery  */

.imagegallery {
    /* max-width: 1000px; */
    margin: auto;
    border: 1px solid #ffbd59;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  }
  
  .imagegallery .row {
    margin: 8px -16px;
  }
  
  /* Add padding BETWEEN each column (if you want) */
  .imagegallery .row,
  .imagegallery .row > .column {
    padding: 8px;
  }
  
  /* Create three equal columns that floats next to each other */
  .imagegallery .column {
    float: left;
    width: 25%;
    display: none; /* Hide columns by default */
  }
  .imagegallery .column a{
    text-decoration: none;
    color: #1c2120;
  }
  .imagegallery .column p{
    text-align: left;
  }
  .imagegallery .column:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
  }
  
  /* Clear floats after rows */
  .imagegallery .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Content */
  .imagegallery .content {
    background-color: white;
    padding: 0px 0px 10px 0px;
    
  }

  .imagegallery .content h4{
    font-size: 15px;
    /* text-align: center; */
    margin-top: 5px;
    font-weight: bold;
    color: #1c2120;
    
  }

  .imagegallery .content img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* The "show" class is added to the filtered elements */
  .imagegallery .show {
    display: block;
  }
  
  /* Style the buttons */
  .imagegallery .btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: white;
    cursor: pointer;
  }
  
  /* Add a grey background color on mouse-over */
  .imagegallery .btn:hover {
    background-color: #ddd;
  }
  
  /* Add a dark background color to the active button */
  .imagegallery .btn.active {
    background-color: #666;
     color: white;
  }

  /* readmore */
  #more {display: none;}

  .aboutus button{
    background-color:#ffbd59;
    color: #1c2120;
    font-weight: bold;
    border: 0;
    padding: 10px;
    border-radius: 10px;
    margin-left: 5px;
  }

  /* cardslides */
  .gallery{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #ccc6c6;
    overflow: hidden;
    height: 550px;
    /* border: 1px solid #000; */
    }



#abouts{
    /* height: 300px; */
    margin: 50px auto;
    /* background-color: #ffbd59; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#abouts p{
    text-align: center;
    font-size: 17px !important;
    color: #1c2120;
}
#abouts h3{
    color: #1c2120;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 10px;
}

.card-body img{
    width: 200px; 
    height: 190px; 
    padding: 5px; 
    border-radius: 20px;
}
.natural{
    display: flex;
}
@media only screen and (max-width: 601px) {

    .menu_bar ul.nav {
      flex-direction: column !important;
      /*align-items: flex-start;*/
    }
    .menu_bar ul.nav li {
      width: 100%;
      text-align: left;
      padding: 10px;
      border-bottom: 1px solid #ddd;
    }
  

.logo_cont{
    display: flex;
    align-items: center;
    margin-left: 50px;
    /* width: 50%; */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}
.logo_cont img{
    width: 200px !important;
}
    .menu_bar ul.nav li a {
      width: 80%;
      display: block;
    }
    .row .circles {
        flex-direction: column;
        align-items: center;
        margin: auto;
      }
    
      .row.circles .circle {
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
      }
      .row.circles p  {
        font-size: 14px;
        margin-top: 8px;
        text-align: center;
      }
      .row.circles h3{
        text-align: center;
      }
      .servicess {
        flex-direction: column;
        padding: 0 10px;
      }
    
      .explore-col {
        width: 100% !important;
        flex: 0 0 100%;
        max-width: 100%;
      }
    
      .overlay {
        font-size: 14px;
        padding: 8px;
      }
    
      .image-container img {
        height: auto;
        max-height: 200px;
        object-fit: cover;
      }
    
      .container h3 {
        font-size: 1.2rem;
      }
    
      .container p {
        font-size: 0.9rem;
      }
      .card-image {
        flex-direction: column;
        /* align-items: center; */
      }
  
      .card-image img {
        width: 90px;
        height: 120px;
        /* margin-bottom: 10px; */
      }
      #foot-logo {
          width: 50px !important;
      }
    }

    
    @media only screen and (max-width: 400px) {
    .menu_bar ul.nav {
      flex-direction: column !important;
      /*align-items: flex-start;*/
    }
  
    .menu_bar ul.nav li {
      width: 100%;
      text-align: left;
      padding: 10px;
      border-bottom: 1px solid #ddd;
    }
  
    .menu_bar ul.nav li a {
      width: 100%;
      display: block;
    }
    .row.circles {
      flex-direction: column;
      align-items: center;
    }
  
    .row.circles .circle {
      margin-bottom: 20px;
      width: 100%;
      display: flex;
      justify-content: center;
    }
    .row.circles p  {
      font-size: 14px;
      margin-top: 8px;
      text-align: center;
    }
    .row.circles h3{
      text-align: center;
    }
    .servicess {
      flex-direction: column;
      padding: 0 10px;
    }
  
    .explore-col {
      width: 100% !important;
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .overlay {
      font-size: 14px;
      padding: 8px;
    }
  
    .image-container img {
      height: auto;
      max-height: 200px;
      object-fit: cover;
    }
  
    .container h3 {
      font-size: 1.2rem;
    }
  
    .container p {
      font-size: 0.9rem;
    }
    .card-image {
      flex-direction: column;
    }
    .card-image img {
      width: 90px;
      height: 120px;
    }
    .imagegallery .row {
      flex-direction: column;
    }
  
    .imagegallery .column {
      width: 100% !important;
      padding: 8px 0; 
    }
  
    .imagegallery .content img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
    }
  
    .imagegallery .content h4 {
      text-align: center;
      font-size: 16px;
      margin-top: 6px;
      color: #1c2120;
    }
  
    #myBtnContainer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
    }
  
    .btn {
      padding: 8px 16px;
      font-size: 14px;
    }
    #foot-logo {
          width: 50px !important;
      }
  }

  