
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}


a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
	color: #0a6149;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 170px;
    z-index: 996;
    background: #ffd375;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #ffc064;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}
#topbar.topbar-transparent {
  background: #04654b;
}
#topbar.topbar-scrolled {
  top: -50px;
}
#topbar em {
  color: #ffffff;
  line-height: 0;
}
#topbar em span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
/*     background-color: #fbf1f2;
 */    border-color: #dee2e6 #dee2e6 #fff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 50px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
 
}
#header.header-transparent {
     background-image: linear-gradient(to bottom,#ffffff 29%,#509e2f42 192%);

}
#header.header-scrolled {
  top: 0;
  background-image: linear-gradient(to bottom,#ffffff -11%,#165e6cf5 177%);
}
a.nav-link.scrolled {
    color: #fff;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
 padding: 0;
    margin: 0;
    margin-top: -35px;
    z-index: 1000;
    position: absolute;

}
@media only screen and (max-width: 480px){
.logo img {
    width: 108px;
}}

@media only screen and (max-width: 1024px){
.logo img {
    width: 108px;
}}

.container-fluid.ada {
    background: #e4a112;
    color: #fff;
    text-align: center;
    padding: 10px 10px;
}
/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  background: #f0b153;
  color: #fff;
  border-radius: 0px;
  margin: 0 0 0 20px;
  padding: 8px 25px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;   

}
.book-a-table-btn:hover {
  background: #36ab89;
  color: #fff;
}
@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-size:19px;
  font-weight: 500;
  color: black;
  white-space: nowrap;
  transition: 0.3s;     

}




.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color:#04654b;     font-weight: 600;

}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;     border-bottom: 1px solid #509e2f;

}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #509e2f;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #509e2f;
    font-size: 35px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    font-weight: 700;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 130px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ffb03b;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ffb03b;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  /* background-color: #4444443d; */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 380px;
  left: 0;
  right: 0;
}
#hero .carousel-content {
  text-align: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;background: #50724257;
    padding: 10px;
}
#hero h2 span {
  color: #ffffff;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #509e2f;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #509e2f;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgb(2 2 2 / 36%), rgb(0 0 0 / 60%)), url(../img/internet.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h4 {
  color: #165e6c;
  font-size: 28px;
  font-weight: 700;   

}

.cta p {
  color: #fff;    text-align: center;

}

.cta .cta-btn {
 
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;    background: #305c4c;

}

.cta .cta-btn:hover {
  background: #f5ae36;
  border: 2px solid #009970;
}
.bg {
    background: #fff;    padding: 20px;

}
.ctalist {
    color: #509e2f;
    font-size: 20px;
    border-bottom: 2px solid #ccc;
    padding: 10px 10px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.ct {
  background: linear-gradient(rgb(2 2 2 / 36%), rgb(0 0 0 / 60%)), url(../img/Accessibility.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.ct h4 {
  color: #165e6c;
  font-size: 28px;
  font-weight: 700;   

}

.ct p {
  color: #fff;    text-align: center;

}

.ct .ct-btn {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;    background: #305c4c;

}

.ct .ct-btn:hover {
  background: #f5ae36;
  border: 2px solid #009970;
}
.bg {
    background:#ffffff;    padding: 20px;

}
.ctalist {
    color: #509e2f;
    font-size: 20px;
    border-bottom: 2px solid #ccc;
    padding: 10px 10px;
}
.title3 {
    text-align: center;
    color: #fff;
    font-size: 45px;
    
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
}

.section-bg {
  background-color: #e1e1e126;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 50px;
  font-weight: 400;
    color: #5f5950;
    letter-spacing: 1px;
}
.section-title h2 span {
  color: #102642;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
/* ✅ About Section */
/* ?? About Section */
.about {
    background: #ffffff;
}

/* ? Container */
.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

/* ?? About Content */
.about-content h1 {
    font-size: 36px;
    font-weight: bold;
    color: #076248;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: #5c5c5c;
    line-height: 1.7;
}

/* ?? Read More Button */
.read-more-btn {
    background: #ff5f03;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
    transition: background 0.3s ease-in-out;
}

.read-more-btn:hover {
    background: #e04c02;
}

/* ?? Right Side: Floating Circular Images */
.about-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ?? Image Styling */
.circle-image {
       border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
}

/* ?? Large Image */
.circle-image.large {
    width: 280px;
    height: 280px;
    top: 0;
    right: 01px;
}

/* ?? Small Image */
.circle-image.small {
    width: 180px;
    height: 180px;
    bottom: -30px;
    right: 0;
}

/* ?? Floating Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes floatReverse {
    0% { transform: translateY(-5px); }
    100% { transform: translateY(5px); }
}

.animate-float {
    animation: float 3s infinite alternate ease-in-out;
}

.animate-float-reverse {
    animation: floatReverse 3s infinite alternate ease-in-out;
}

/* ?? Responsive Design */
@media (max-width: 820px) {
    .about-images {
        justify-content: center;
        margin-bottom: 20px;
    }

    .circle-image.large {
        width: 200px;
        height: 200px;
        right: 30px;
    }

    .circle-image.small {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: 10px;
    }

    .about-content {
        text-align: center;
    }

    .read-more-btn {
        display: block;
        margin: 20px auto 0;
    }
}

@media (max-width: 406px) {
    .container {
        width: 95%;
    }

    .about-content h1 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
    }

    .circle-image.large {
        width: 160px;
        height: 160px;
        right: 20px;
    }

    .circle-image.small {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: 5px;
    }

    .read-more-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}






.circle-image {
    width: 250px;  /* Default size */
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Smaller Circle Image */
.small-circle {
    width: 150px;  /* Default size */
    height: 150px;
    position: absolute;
    top: -40px; /* Adjust positioning */
    right: -40px;
    border-radius: 50%;
}

/* ?? Responsive Adjustments */
@media (max-width: 820px) {
    .circle-image {
        width: 200px;
        height: 200px;
    }

    .small-circle {
        width: 120px;
        height: 120px;
        top: -30px;
        right: -30px;
    }
}

@media (max-width: 406px) {
    .circle-image {
        width: 160px;
        height: 160px;
    }

    .small-circle {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -20px;
    }
}


/*--------------------------------------------------------------
# Whu Us
--------------------------------------------------------------*/
   section#why-us {
    background:#b4e0aa30;
}
.why-us .bx {
  padding: 20px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;     background: #fff;

}
.why-us .bx span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}
.why-us .bx h4 {
  font-size: 23px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #165e6c;
}
.why-us .bx p {
  color: #9c9999;
    font-size: 15px;
    margin: 0;
    padding: 0;
    line-height: 2em;
}
.why-us .bx:hover {
  background: #155b69;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .bx:hover span, .why-us .bx:hover h4, .why-us .bx:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid #ffb03b;
  border-radius: 50px;
}
.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: #fff;
  background: #ffb03b;
}
.menu #menu-flters li:last-child {
  margin-right: 0;
}
.menu .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #dad8d4;
}
.menu .menu-content a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #ff9b08;
}
.menu .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}
.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;    background: #509e2f1c;


}

.specials .nav-tabs {
  border: 0;
}
.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 10px;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}
.specials .nav-link:hover {
  color: #509e2f;
}
.specials .nav-link.active {
  color: #509e2f;
    border-color: #165e6c;
}
.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #165e6c;
    letter-spacing: 2px;
}
.specials .details p {
  color: #777777;
}
.specials .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
  .specials .nav-link.active {
    color: #fff;
    background: #ffb03b;
  }
}

/*--------------------------------------------------------------*/
.highlights {
    background: linear-gradient(180deg, #8affdf, #034936);
    padding: 60px 40px;  /* Reduced padding for better fit */
    border-radius: 10px;
}

/* ? Image Side (Left) */
.highlight-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;  /* Reduced gap */
}

.highlight-image img {
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;  /* Adjusted for perfect fit */
    transition: transform 0.3s ease-in-out;
}

.highlight-image img:hover {
    transform: scale(1.05);
}

/* ? Content Side (Right) */
.highlight-box {
  background: rgb(234 234 234);
    padding: 25px;  /* Reduced padding */
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 550px;  /* Adjusted width for better balance */
}

/* ? Title */
.highlight-title {
    font-size: 28px;  /* Slightly smaller for better spacing */
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;  /* Reduced gap */
}

.highlight-title i {
    color: #ff7f50;
    font-size: 26px;
}

/* ? Content Items */
.highlight-content {
    margin-top: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;  /* Reduced gap between icon & text */
    margin-bottom: 10px;  /* Reduced space between lines */
    padding: 10px;
   background: rgb(23 150 115);
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.highlight-item:hover {
    transform: translateX(5px);
    background: #ffd375;
}

.highlight-item i {
    color: #ff7f50;
    font-size: 20px;
}

.highlight-item p {
    font-size: 16px;
    color: black;
    margin: 0;
}

/* ? Responsive Design */
@media (max-width: 820px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .highlight-image {
        order: 2;  /* Move image below content on small screens */
        padding-bottom: 10px;  /* Reduced padding */
    }

    .highlight-box {
        order: 1;  /* Move content above image */
        max-width: 100%;
    }

    .highlight-title {
        font-size: 26px;
    }

    .highlight-item p {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .highlight-title {
        font-size: 22px;
    }

    .highlight-item p {
        font-size: 13px;
    }

    .highlight-item i {
        font-size: 16px;
    }
}








/* ?? Hotel Policies Section */
.hotel-policy {
    background: linear-gradient(135deg, #f0f0f0, #dff1ff);
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hotel-container {
    width: 100%;
    max-width: 1200px;
}

/* ?? Row Setup */
.hotel-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* ?? Individual Cards */
.hotel-col {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
}

.hotel-card {
    background: #ffffff;
    padding: 4px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgb(94 88 88 / 10%);
    transition: transform 0.3s ease-in-out;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

/* ?? Icons */
.hotel-icon {
    font-size: 35px;
    color: #ff7f50;
    margin-bottom: 10px;
}

/* ?? Titles & Info */
.hotel-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a3b5d;
    margin-bottom: 5px;
}

.hotel-info {
    font-size: 15px;
    color: #555;
}

/* ?? Responsive Design */
@media (max-width: 820px) {
    .hotel-row {
        flex-direction: column;
        align-items: center;
    }
    .hotel-col {
        max-width: 300px;
    }
}

@media (max-width: 430px) {
    .hotel-title {
        font-size: 16px;
    }
    .hotel-info {
        font-size: 14px;
    }
    .hotel-card {
        padding: 15px;
    }
}






.book-a-table .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}
.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}
.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.book-a-table .php-email-form input {
  height: 44px;
}
.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}
.book-a-table .php-email-form button[type=submit] {
  background: #ffb03b;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.book-a-table .php-email-form button[type=submit]:hover {
  background: #ffa012;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  padding-bottom: 0;
}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
  background: url("../img/about-bg2.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}
.chefs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(255 255 255 / 62%);
  z-index: 9;
}
.chefs .container {
  position: relative;
  z-index: 10;
}
.chefs .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.chefs .member .pic {
  overflow: hidden;
}
.chefs .member .member-info {
  position: absolute;
  bottom: -119px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.chefs .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 30px;
    color: #155c69;
  position: relative;
  padding-bottom: 10px;
  
}
.chefs .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ffcf88;
  bottom: 0;
  left: calc(50% - 25px);
}
.chefs .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.chefs .member .social {
  margin-top: 15px;
}
.chefs .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}
.chefs .member .social a:hover {
  color: #ffb03b;
}
.chefs .member .social i {
  font-size: 16px;
  margin: 0 2px;
}
@media (max-width: 992px) {
  .chefs .member {
    margin-bottom: 110px;
  }
}
@media (min-width: 1024px) {
  .chefs {
    background-attachment: fixed;
  }
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background:#0a6e4f;
  padding: 0 0 30px 0;
  color: #eee;
  font-size:16px;
}
#footer a{
  
  color: #fff;
  
} 
#footer .footer-top {
	  background: linear-gradient(rgb(6 97 69), rgb(34 185 138));
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #18d26e;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #eee;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #28d59f;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #ffd376;
  color: #fff;
}

#footer .footer-top .title5 {
  font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 12px;      


}

#footer .footer-top .title5::before,
#footer .footer-top .title5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top .title5::before {
  right: 0;
  background: #165e6c;
}

#footer .footer-top .title5::after {
  background: #509e2f;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #61d9b4;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffd376;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #18d26e;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 15px;
  color: #ddd;
}

@media (min-width: 992px){
.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
    float: left;
}}

.image {
    border-radius: 0px 300px 300px 0px; border: 20px solid #ffffffs;

}
.fst-italic {
    font-style: italic!important;
    color: #000;
}
.button {
  padding: 10px 25px;
    font-size: 19px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #f56710;
    border: none;
    border-radius: 15px;
    box-shadow: 0 7px #999;

}

.button:hover {background-color: #165e6c}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


/* Features Section - Home Page
------------------------------*/
.features .features-item {
  color: rgba(var(--default-color-rgb), 0.8);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 400;
    font-size: 35px;
    color: #165e6c;
}


.features .features-item .btn-get-started {
  background-color: #509e2f;
    color: #fff;
    padding: 8px 20px 8px 20px;
    border-radius: 4px;
    font-size: 18px;
}

.features .features-item .btn-get-started:hover {
  background-color: #165e6c;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item img {
  border: 6px solid var(--background-color);
  box-shadow: 0 15px 30px -10px rgb(22 93 106);
}

.features .features-item .features-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .features .features-item .features-img-bg {
    min-height: 300px;
  }
}

.features .features-item .features-img-bg img {
  /* position: absolute; */ 
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100% 100% 100% 100%;

}

.features .features-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.features .features-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.evnt {
    background:#ff5f0317s;
}
.text-effect{
    color: #e84385;
        

    font-size: 100px;
    font-weight: 600;
    
    letter-spacing: 2px;
    animation: animate 1.2s infinite ease-in;
}
@keyframes animate{
    0%, 100%{ text-shadow: 3px 0 #fff, 10px 0 #ccc; }
    25%{ text-shadow: 0 3px #fff, 0 10px #ccc; }
    50%{ text-shadow: -3px 0 #fff, -10px 0 #ccc; }
    75%{ text-shadow: 0 -3px #fff, 0 -10px #ccc; }
}
@media only screen and (max-width: 990px){
    .text-effect{ font-size: 90px; }
}
@media only screen and (max-width: 767px){
    .text-effect{ font-size: 70px; }
}
@media only screen and (max-width: 576px){
    .text-effect{ font-size: 50px; }
}
@media only screen and (max-width: 479px){
    .text-effect{
        font-size: 40px;
        line-height: 50px;
    }
}
/*--------------------------------------------------------------

--------------------------------------------------------------*/
/* ?? Amenities Section */
.amenities-section {
    background: linear-gradient(135deg, #ffffff, #eef7ff);
    padding: 50px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenities-container {
    width: 100%;
    max-width: 1200px;
}

/* ?? Section Title */
.amenities-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1a3b5d;
    margin-bottom: 30px;
}

/* ?? Grid Layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

/* ?? Individual Cards */
.amenities-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
   border: 2px solid #3adfb2;
    text-align: center;
}

.amenities-card:hover {
    border-color: #ff7f50;
    transform: translateY(-5px);
}

/* ?? Icons */
.amenities-icon {
    font-size: 40px;
    color: #ff7f50;
    margin-bottom: 10px;
}

/* ?? Titles & Info */
.amenities-heading {
    font-size: 18px;
    font-weight: bold;
    color: #1a3b5d;
    margin-bottom: 5px;
}

.amenities-text {
    font-size: 15px;
    color: #555;
}

/* ?? Responsive Design */
@media (max-width: 820px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 430px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .amenities-heading {
        font-size: 16px;
    }
    .amenities-text {
        font-size: 14px;
    }
    .amenities-card {
        padding: 20px;
    }
}









.content.hvr a {
    color: #509e2f;
}
.title2 {
    color: #509e2f;
    font-size: 22px;
}

.about .cont {
    background-color: #f6f9ff;
    padding: 40px;
}
.container-fluid.tp {
    margin-top: 140px;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #165e6c;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
}
@media (min-width: 992px){
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
}}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.p-d {
    padding-right: 0px;
    padding-left: 0px;
}
.gpdn {
    padding-top: 10px;
    color: #fff!important;
}
.btn-primary {
    
    background-color: #ffffff;
    border-color: #145966;
}
.btn-primary:hover {
    
    background-color: #ffffff;
    border-color: #145966;
}
.title4 {
    color: #165e6c;
    font-size: 22px;

}
.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom, #172c40 16%, #193041 68%);
    padding: 1em;
    /* -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%); */
    /* -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42); */
    /* box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%); */
    margin-top: 5px;
}
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
    width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px 22px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
}
.date_btn input[type="submit"]:hover {
    background: #ffffff;
    color: #ffffff;
}
.date_btn input[type="submit"] {
    text-transform: uppercase;
    width: 100%;
    background:#ff5f03;
    color: #fff;
    padding: 10px 0;
    border: none;
    font-size: 1em;
    outline: none;
    font-weight: 600;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
.date_btn input:hover[type="submit"] {
    background: #98a8e6ad;
 
}
.agileits_reservation em.bi {
    position: absolute;
    color: #555;
    font-size: 0.9em;
    margin-top: 14px;
    margin-left: 5px;
}
.container-fluid.content {
    padding: 50px 0;
    background-color: #f4f4f4;
}



.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
}

.form-bg {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header {
    background-color: #4CAF50;
    color: #fff;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
}

.form-horizontal {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.heading {
    color: #4CAF50;
    font-weight: bold;
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
}

.btn-primary {
    background-color: #4CAF50;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #45a049;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 10px;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .form-bg {
        padding: 20px;
    }
    h1 {
        font-size: 28px;
    }
    .header {
        font-size: 20px;
    }
}
/* Adjusted margin-top to ensure no overlap with header */
.slider {
    position: relative;
    max-width: 100%;
    height: auto; /* Change from fixed height to auto */
    margin-top: 120px; /* Increase this value to ensure the header doesn't overlap */
    overflow: hidden;
    z-index: 1; /* Ensure slider is below header */
}

/* Adjusting the header's z-index to be above the slider */
header {
    position: fixed; /* Make sure header stays on top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2; /* Higher z-index to ensure it stays above the slider */
}

/* Rest of your CSS remains the same */
.slides {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100%;
    opacity: 0;
    height: auto; /* Change from fixed height to auto */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column; /* Ensure content stacks vertically on smaller screens */
}

.slide img {
    width: 100%;
    height: 700px; /* Maintain aspect ratio */
    object-fit: cover;
    vertical-align: top;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 50px;
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

.indicator.active {
    background-color: #FF6F61;
}

.indicator:hover {
    background-color: #FF7F50;
}

.indicator:hover .preview-image {
    display: block;
}

.preview-image {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 58px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.slide-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px; /* Reduce font size for smaller screens */
    font-weight: 700;
    text-align: center;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .slide-title {
        font-size: 16px; /* Further reduce font size */
        padding: 8px 16px;
    }
    
    .slider-buttons {
        margin-top: -25px; /* Remove extra margin on smaller screens */
    }
    
    .slider-button {
        padding: 8px;
        font-size: 16px;
    }
}

@media (min-width: 820px) and (max-width: 1180px) {
    .agileits_reservation_grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 20px;
      max-width: 720px;
      margin: 0 auto;
    }

    .agileits_reservation_grid .book_date {
      width: 48%;
      margin-bottom: 15px;
    }

    .agileits_reservation_grid .date_btn {
      width: 100%;
      margin-bottom: 0;
    }

    input.date, select {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      margin-top: 5px;
    }

    input[type="submit"] {
      width: 100%;
      padding: 15px;
      font-size: 18px;
      background-color: #28a745;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    input[type="submit"]:hover {
      background-color: #218838;
    }
  }
  
  
  
  
  
  
  
  
  
  
  .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  display: none; /* Hidden by default */
}

.cookie-banner p {
  margin: 0;
  padding-right: 10px;
  display: inline;
}

.cookie-banner button {
  background-color: #f1c40f;
  color: #333;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.cookie-banner button:hover {
  background-color: #e1b308;
}














/* ? Rooms Section */
.custom-rooms {
    background: #ffffff;
    padding: 60px 0;
}

.custom-container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

/* ? Flexbox Row */
/* General Layout */
.custom-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

/* Columns */
.custom-col {
    flex: 1;
    min-width: 300px;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.custom-col:hover {
    transform: scale(1.05);
}

/* Images */
.custom-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Titles */
.custom-title {
    font-size: 22px;
    font-weight: bold;
    color: #1a3b5d;
    margin-bottom: 10px;
}

/* List Styles */

.custom-list a {
    text-decoration: none;
    color: #333; /* Darker color for better visibility */
    font-weight: normal;
}

.custom-list a:hover {
    color: #063;
   
}


.custom-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.custom-list li {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

/* Icons */
.custom-list i {
    color: #ff5f03;
    margin-right: 10px;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .custom-row {
        flex-direction: column;
        align-items: center;
    }

    .custom-col {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 406px) {
    .custom-title {
        font-size: 18px;
    }

    .custom-list li {
        font-size: 14px;
    }
}














/* Section Container */
.direction-container {
    padding: 30px;
    display: flex;
    justify-content: center;
}

/* Direction Box (Flex Container) */
.direction-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
   
}

/* Form Section */
.direction-form {
    flex: 1;
}

.direction-form h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.direction-form p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Coordinates Box */
.coordinates {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.coordinate-item {
    background: #eaf4ff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Input Field */
.input-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Button */
.direction-btn {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s ease;
}

.direction-btn:hover {
    background: #0056b3;
}

/* Map Container */
.map-container {
    flex: 1;
    max-width: 50%;
}

iframe {
    width: 100%;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .direction-box {
        flex-direction: column;
        text-align: center;
    }

    .map-container {
        max-width: 100%;
        margin-top: 15px;
    }
}









.custom-faq {
    margin: 20px;
    font-family: Arial, sans-serif;
}

.faq-header h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.faq-accordion {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.faq-title {
    background-color: #e4f9f3;
    color: white;
    padding: 12px 20px;
    margin: 0;
    border-radius: 5px;
    cursor: pointer;
}

.faq-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    padding: 10px;
    color: #035139;
    display: flex;
    align-items: center;
}

.faq-button:hover {
    background-color: #076448;
	color:#FFFFFF;
}

.faq-button i {
    margin-right: 10px;
    font-size: 20px;
}

.faq-collapse {
    background-color: #f9f9f9;
}

.faq-content {
    padding: 15px;
    border-top: 1px solid #ddd;
}

.faq-content a{
    padding: 15px;
    border-top: 1px solid #ddd;
	color:#000000;
}

.faq-content a:hover{
    padding: 15px;
    border-top: 1px solid #ddd;
	color:#339966;
}











.contact-container {
    padding: 20px;
    background-color: #f8f8f8;
}

.contact-wrapper {
    margin: 0 auto;
    max-width: 1200px; /* Increased max-width */
}

.contact-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 48%; /* Increased width */
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.contact-details h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #000000;
    font-weight: bold;
}

.contact-info p {
    margin: 10px 0;
    font-size: 17px;
    font-weight: 400;
    color: #333;
}

.contact-info i {
    margin-right: 10px;
    color: #e4a112;
    font-size: 26px;
}

.contact-info a {
    color: #076448;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: #ff6600;
  
}

.contact-map {
    flex: 1;
    min-width: 48%; /* Increased width */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}




.highlight a {
  color: #0a6248; /* or any visible contrasting color */
  font-weight: bold;
  text-decoration: none; /* optional */
}

.highlight a:hover {
  color: #F63; /* darker shade on hover */
  /* optional hover effect */
}


#more-text a {
  color: #007B5E; /* Dark green, visible on white background */
  font-weight: bold;
  text-decoration: none;
}

#more-text a:hover {
  color: #004D3A; /* Slightly darker on hover */
}



@media (min-width: 992px) {
  .col-lg-9 {
      flex: 0 0 auto !important;
      width: 65% !important;
  }
}































/* New Facility Section */
.new-facility-section {
  text-align: center;
  color: Black; /* Use darker blue color from your palette */
}

.new-facility-title {
  font-size: 2.5rem;
  color: #e30404;
  margin-bottom: 40px;
  position: relative;
}

.new-facility-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #83SFC0; /* Light blue underline */
  margin: 15px auto;
}

/* Grid Styling */
.facility-grid-creative {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Facility Box */
.facility-box-creative {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.facility-box-creative:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Background */
.icon-background {
  background: linear-gradient(to right, #054735, #076248, #0a8a66);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #fff;
  position: relative;
  border-bottom: 5px solid #CAC9CB; /* Light gray for depth */
}

.facility-box-creative:hover .icon-background {
  background: linear-gradient(145deg, #2B81A2, #83SFC0); /* Lighten the gradient on hover */
}

/* Facility Information */
.facility-info {
  padding: 30px;
  text-align: center;
}

.facility-info h3 {
  font-size: 1.6rem;
  color: #ed9b43; /* Darker blue for headings */
  margin-bottom: 15px;
  font-weight: bold; /* Added bold property */
}

.facility-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .facility-grid-creative {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .facility-grid-creative {
      grid-template-columns: 1fr;
  }

  .facility-box-creative {
      max-width: 100%;
  }

  .icon-background {
      padding: 20px;
  }
}



/* General Facilities Section */
.facility-section {
/* Soft neutral background */
  text-align: center;
}

.facility-container {
  max-width: 1200px;
  margin: 0 auto;
}

.facility-title {
  font-size: 2.5rem;
  color: #fff; /* Dark blue color from your palette */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  font-weight: bold;
}

.facility-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2B81A2; /* Strong accent color */
  margin: 10px auto;
  border-radius: 2px;
}

/* Facilities Grid - 3 columns */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Facility Column */
.facility-column {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Softer shadow */
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Stronger hover shadow */
}

/* Facility Category Title */
.facility-column h3 {
  font-size: 1.6rem;
  color: #0047b5; /* Accent color for headings */
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid #83SFC0; /* Light blue accent */
  padding-bottom: 8px;
}

/* Facility List */
.facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-list li {
  font-size: 1.1rem;
  color: #555; /* Neutral text color for readability */
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.facility-list li em {
  font-size: 1.5rem;
  color: #2B81A2; /* Icon color to match brand */
  margin-right: 10px;
}

.facility-list li:hover {
  background-color: #d0e7f7; /* Lighter blue hover background */
  border-radius: 5px;
  padding-left: 10px;
  transition: 0.3s ease-in;
}

/* Responsive Design */
@media (max-width: 768px) {
  .facility-grid {
      grid-template-columns: 1fr; /* One column on mobile */
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .facility-grid {
      grid-template-columns: 1fr 1fr; /* Two columns on tablet */
  }
}







/* Section Styling */
/* Apply a smooth gradient background */
.video-attraction-section {
  background: linear-gradient(to right, #00bd6f, #076248); /* Green gradient */
  font-family: 'Poppins', sans-serif;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #076248;
background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='100%25'%20height='100%25'%20viewBox='0%200%202%201'%3E%3Cdefs%3E%3ClinearGradient%20id='a'%20gradientUnits='userSpaceOnUse'%20x1='0'%20x2='0'%20y1='0'%20y2='1'%3E%3Cstop%20offset='0'%20stop-color='%23076248'/%3E%3Cstop%20offset='1'%20stop-color='%23076248'/%3E%3C/linearGradient%3E%3ClinearGradient%20id='b'%20gradientUnits='userSpaceOnUse'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3E%3Cstop%20offset='0'%20stop-color='%23cf8'%20stop-opacity='0'/%3E%3Cstop%20offset='1'%20stop-color='%23cf8'%20stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient%20id='c'%20gradientUnits='userSpaceOnUse'%20x1='0'%20y1='0'%20x2='2'%20y2='2'%3E%3Cstop%20offset='0'%20stop-color='%23cf8'%20stop-opacity='0'/%3E%3Cstop%20offset='1'%20stop-color='%23cf8'%20stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect%20x='0'%20y='0'%20fill='url(%23a)'%20width='2'%20height='1'/%3E%3Cg%20fill-opacity='0.5'%3E%3Cpolygon%20fill='url(%23b)'%20points='0%201%200%200%202%200'/%3E%3Cpolygon%20fill='url(%23c)'%20points='2%201%202%200%200%200'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}

/* Heading Styles */
.video-attraction-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Subheading for Top Attractions */
.video-attraction-section .top-attractions {
  font-size: 24px;
  color: #e0f7fa;
  /*margin-bottom: 30px;*/
  font-weight: 600;
}

/* Card-style for the Attractions section */
.video-attraction-section .attraction-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual Attraction Card */
.video-attraction-section .attraction-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

/* Attraction Card Hover Effect */
.video-attraction-section .attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Icons for each attraction */
.video-attraction-section .attraction-card i {
  font-size: 40px;
  color: #00975f;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

/* Hover effect for icons */
.video-attraction-section .attraction-card:hover i {
  color: #00bd6f;
}

/* Description for each attraction */
.video-attraction-section .attraction-card p {
  font-size: 16px;
 color: #72a27b;
    line-height: 1.5;
    font-weight: 600;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .video-attraction-section .attraction-list {
    flex-direction: column;
    align-items: center;
  }

  .video-attraction-section .attraction-card {
    width: 80%;
    margin-bottom: 20px;
  }

  .video-attraction-section h2 {
    font-size: 30px;
  }

  .video-attraction-section .top-attractions {
    font-size: 20px;
  }
}

/* Styling for the Video Section */
.video-section {
  background: #f0f0f0; /* Light background for the video section */
  padding: 30px 5%;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /*margin-top: 40px;*/
    background: linear-gradient(to bottom, #006847 0%, #f5f5f5 100%);
background-attachment: fixed;
background-size: cover;
}

/* Video Title */
.video-section h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  font-style:italic;
}

/* Video Player */
.video-section video {
  width: 100%;
  height: auto;
  max-width: 800px; /* Limit the maximum width */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out; /* Add zoom effect on hover */
}

/* Video Hover Effect (Zoom In) */
.video-section video:hover {
  transform: scale(1.05); /* Slight zoom effect */
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-section h3 {
    font-size: 28px;
  }

  .video-section video {
    max-width: 100%; /* Make the video responsive on small screens */
  }
}




























.content-container {
      padding: 40px 5%;
      margin: 0 auto;
    }
    
    .category-title {
      font-size: 28px;
      font-weight: 600;
      margin: 50px 0 20px;
      color: #2d2d2d;
      position: relative;
      padding-left: 20px;
    }
    
    .category-title:before {
      content: "";
      position: absolute;
      left: 0;
      top: 5px;
      height: 80%;
      width: 5px;
      background: #2a5e55;
      border-radius: 5px;
    }

    .section {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      margin-bottom: 40px;
      gap: 20px;
      transform-style: preserve-3d;
      perspective: 1200px;
    }

    /* PERFECT SQUARE CONTAINERS */
    .list-box, .image-box {
      width: calc(50% - 10px);
      aspect-ratio: 1/1;
      min-height: 280px;
      max-height: 350px;
      display: flex;
      transition: all 0.5s ease;
      overflow: hidden;
    }

    /* TEXT CONTAINER */
    .list-box {
      background: white;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 15px 5px 25px -10px rgba(0,0,0,0.15);
      transform: rotateY(-10deg);
      border: 1px solid #f0f0f0;
      flex-direction: column;
    }

    /* IMAGE CONTAINER */
    .image-box {
      border-radius: 12px;
      box-shadow: -15px 5px 25px -10px rgba(0,0,0,0.15);
      transform: rotateY(10deg);
      border: 1px solid #f0f0f0;
    }

    /* HOVER EFFECTS */
    .section:hover .list-box {
      transform: rotateY(-15deg) translateX(-5px);
    }

    .section:hover .image-box {
      transform: rotateY(15deg) translateX(5px);
    }

    .column {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .section-headline {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #3a3a3a;
      text-align: center;
      padding: 0 10px;
    }

    .column ul {
      list-style-type: none;
      padding: 0 10px;
      margin: 0;
      flex-grow: 1;
    }

    .column ul li {
      margin-bottom: 12px;
      color: #2d2d2d;
      font-size: 17.5px;
      padding: 8px 0;
      position: relative;
      padding-left: 25px;
      transition: all 0.3s ease;
    }

    .column ul li:before {
      content: "→";
      color: #2a5e55;
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    .column ul li:hover {
      transform: translateX(8px);
      color: #2a5e55;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .section:hover .image-box img {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .content-container {
        padding: 30px 15px;
      }
      
      .category-title {
        font-size: 24px;
        margin: 30px 0 15px;
      }
      
      .section {
        flex-direction: column;
        perspective: none;
      }
      
      .list-box, .image-box {
        transform: none !important;
        width: 100%;
        aspect-ratio: unset;
        height: auto;
        min-height: 250px;
        max-height: none;
      }
      
      .image-box {
        height: 250px;
        order: -1;
      }
      
      .section-headline {
        font-size: 18px;
      }
    }
.attractions-header {
            color: #2a5e55;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 30px 0;
            padding: 20px 0;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .attractions-header::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 15px;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: #e26811;
            border-radius: 2px;
        }





        /* Form & Map Section */
        .form-image-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .form-container, .image-container {
            flex: 1 1 45%;
            min-width: 300px;
        }

        .info-card {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .info-title {
            color: #ed9b43;
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .info-subtitle {
            color: #555;
            margin-bottom: 20px;
        }

        .coordinates {
            margin: 20px 0;
        }

        .coordinate-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .icon {
            color: #076248;
            font-size: 1.2em;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1em;
        }

        .get-directions-btn {
            background-color: #00724f;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 1em;
            width: 100%;
        }

        .get-directions-btn:hover {
            background-color: #e65c00;
        }

        .responsive-image {
            border-radius: 8px;
            height: auto;
            max-width: 100%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            object-fit: cover;
            height: 100%;
            min-height: 400px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .facility-grid, .form-image-section {
                flex-direction: column;
            }

            .facility-column, .form-container, .image-container {
                flex: 1 1 100%;
                min-width: 100%;
            }

            .facility-title {
                font-size: 1.8em;
            }

            .responsive-image {
                min-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .facility-title {
                font-size: 1.5em;
            }

            .facility-description {
                font-size: 0.9em;
            }

            .facility-list li {
                font-size: 0.9em;
            }

            .facility-list em {
                font-size: 1.2em;
            }
        }



        /* SECTION STYLES */
.features-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #2b7a4b, #1c6c5c);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 2 1'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23054735'/%3E%3Cstop offset='0.5' stop-color='%23076248'/%3E%3Cstop offset='1' stop-color='%230a8a66'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23076248' stop-opacity='0.2'/%3E%3Cstop offset='1' stop-color='%23076248' stop-opacity='0.6'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='2' y2='2'%3E%3Cstop offset='0' stop-color='%23076248' stop-opacity='0.2'/%3E%3Cstop offset='1' stop-color='%23076248' stop-opacity='0.6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='2' height='1'/%3E%3Cg fill-opacity='1'%3E%3Cpolygon fill='url(%23b)' points='0 1 0 0 2 0'/%3E%3Cpolygon fill='url(%23c)' points='2 1 2 0 0 0'/%3E%3Cpolygon fill='url(%23b)' points='0 0 0 0.3 2 0.3'/%3E%3Cpolygon fill='url(%23c)' points='2 0 2 0.3 0 0.3'/%3E%3C/g%3E%3C/svg%3E");
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.features-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: #ed9b43;
  margin: 10px auto;
}

.features-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
}

/* CARDS CONTAINER */
.features-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD BASE */
.feature-card {
  background: #fff;
  border-radius: 12px;
  width: 300px;
  padding: 25px;
  color: #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
}

/* CARD COLORS */
.card-blue .card-icon {
  background: #3498db;
}

.card-red .card-icon {
  background: #e74c3c;
}

.card-purple .card-icon {
  background: #9b59b6;
}

/* CARD ICON */
.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* CARD HEADING */
.card-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* CARD LIST */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-list li {
  background: #f4f6f8;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

/* DOT STYLE (for blue card) */
.dot {
  width: 8px;
  height: 8px;
  background: #3498db;
  border-radius: 50%;
  margin-right: 10px;
}

/* NUMBER STYLE (for red card) */
.number {
  background: #e74c3c;
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: bold;
  margin-right: 10px;
}

/* MINUS STYLE (for purple card) */
.minus {
  width: 20px;
  height: 4px;
  background: #9b59b6;
  border-radius: 2px;
  margin-right: 10px;
}



















.faq-section {
    margin: 20px auto;
    padding: 0 20px;
    margin-top: -20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #076248;
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #076248, #f0b153);
    border-radius: 2px;
}

.faq-header p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #076248;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #f0b153;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #076248, transparent);
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #076248;
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #f0b153;
    border-bottom-color: #f0b153;
}

.faq-answer .fa-caret-right {
    color: #f0b153;
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}