* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#header {
  height: 75px;
  background-color: #f3efef;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fa-plane {
  transform: rotate(315deg);
}

.center {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.num_button {
  font-family: "Montserrat", sans-serif;
}

.heading_text {
  font-family: "Open Sans", sans-serif;
}

.heading {
  font-family: "Manrope", sans-serif;
}

.back {
  background-color: #3b9132;
}

.colo {
  color: #3b9132;
}

.border-colo {
  border: 1px solid #3b9132;
}

.button {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid #3b9132;
  color: #3b9132;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-weight: 600;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: color 0.4s ease;
  border-radius: 15px 0 15px 0;
}

.button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  background: #3b9132;
  transition: all 0.6s ease;
  z-index: 0;
  transform: translateX(-50%);
}

/* Hover animation: fill expands from center */
.button:hover::before {
  width: 100%;
}

/* Make text appear above the fill */
.button span {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.button:hover span {
  color: #fff;
}

/* Navbar background */
#navbar {
  background-color: #3b9132;
  color: white;
  transition: background-color 0.4s ease;
}

.menu li {
  position: relative;
  color: white;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-top: 3px solid transparent;
  padding: 15px;
}

/* Hover top line animation */
.menu li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #fff;
  transition: width 0.4s ease;
  transform: translateX(-50%);
  border-radius: 5px;
}

.menu li:hover::before {
  width: 100%;
}

/* Hover background without height shift */
.menu li:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Active state */
.menu li.active {
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;

  padding: 15px;
}

.menu li.active::before {
  width: 100%;
}

/* Icon styling */
#navbar i {
  font-size: 20px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

#navbar i:hover {
  color: rgba(0, 123, 255, 0.95);
  transform: scale(1.2);
}

#navbar #navmobile {
  height: 90vh;
  width: 70%;
  position: fixed;
  /* changed from absolute */
  top: 75px;
  /* below header height */
  left: 0;
  background-color: #f8f9fa;
  display: none;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
}


#navmobile .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Remove UL padding/margin */
#navmobile .mobilemenuitem {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Full-width items */
#navmobile .mitem {
  width: 100%;
  padding: 15px 20px;
  text-align: start;
  color: #000;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Hover */
#navmobile .mitem:hover {
  background-color: rgba(83, 240, 83, 0.25);
  color: #3b9132;
  transform: scale(1.01);
}

/* Active */
#navmobile .mitem.active {
  background-color: #3b9132;
  color: #fff;
  font-weight: 600;
}


/* Slide-down animation for menu */
@keyframes slideDown {
  0% {
      transform: translateY(-20px);
      opacity: 0;
  }

  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

#navbar #mobiledetail {
  position: fixed;
  width: 72%;
  height: 170px;
  right: 0;
  top: 51px;
  /* same height as header */
  background-color: #f8f9fa;
  display: none;
  z-index: 9999;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
}

.mobilesidemenu {
  height: 50px;
  font-weight: 600;
}

#main {
  height: auto;
  width: 100%;
  padding: 0;
  margin: 0;
}

.vertical-slider .item {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.5rem;
  transition: all 1s ease;
}

.description {
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 5%;
}

.touchbtn {
  position: relative;
  /* Make ::before stay inside the button */
  width: 130px;
  height: 55px;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: color 0.4s ease;
  overflow: hidden;
  /* Prevent the fill from overflowing */
}

.touchbtn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  background: #3b9132;
  transition: all 0.6s ease;
  transform: translateX(-50%);
  z-index: 0;
  /* Behind text */
}

.touchbtn:hover::before {
  width: 100%;
}

.touchbtn span {
  position: relative;
  z-index: 1;
  /* Keeps text above the fill */
  transition: color 0.4s ease;
  font-size: 16px;
}
.touchbtn:hover{
  border:1px solid #3b9132;
}
.touchbtn:hover span {
  color: #fff;
}


.slide1 {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url('../img/blog-post-1-568x492.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide2 {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url('../img/blog-post-2-568x492.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide3 {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url('../img/blog-post-3-568x492.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.owl-dots {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.owl-dot span {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  /* small box */
  border: 2px solid #fff;
  background: transparent;
  display: block;
  transition: all 0.3s ease;
}

.owl-dot.active span,
.owl-dot:hover span {
  background: #3b9132;
  transform: scale(1.1);
}

.destination-card img {
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

#our_tour {
  height: 420px;
  position: relative;
}

/* Container for each tour card */
/* ===== OUR TOUR SECTION ===== */

/* Common card styles */
.tours {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.tours img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease-in-out;
}

.tours:hover img {
  transform: scale(1.1);
}

/* Caption on bottom */
.tour-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  padding: 12px 0;
  transition: background 0.3s ease;
}

/* .tours:hover .tour-caption {
  background: rgba(59, 145, 50, 0.8);
} */

/* ===== OTHER TOURS LINK ===== */
.othertour {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
}

.othertour i {
  margin-left: 6px;
  transition: transform 0.4s ease;
}

.othertour:hover {
  color: #3b9132;
}

.othertour:hover i {
  transform: translateX(6px);
}

.othertour::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #3b9132;
  transition: width 0.4s ease;
}

.othertour:hover::after {
  width: 100%;
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 992px) {
  #our_tour {
    position: relative;
    height: 450px; /* Space for absolute cards */

  }

  .ourtour-desktop {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    z-index: 5;
  }
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 991px) {
  #our_tour {
    position: static;
    height: auto;
    margin-top: 20px;
  }

  .ourtour-desktop {
    display: none !important;
  }

  .ourtour-mobile {
    position: static;
  }
}


#body h2 {
  color: #222;
  font-weight: 700;
}

/* ===== TABS ===== */
#tourTabs {
  width: 100%;
}

.tab-header {
  display: flex;
  gap: 30px;
  border-bottom: 2px solid #e0e0e0;
  position: relative;
  padding-bottom: 5px;
  justify-content: flex-start; /* ✅ Default: left align for desktop */
}

.tab-btn {
  cursor: pointer;
  font-weight: 600;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn:hover {
  color: #3b9132;
}

/* Active tab text */
.tab-btn.active {
  color: #3b9132;
}

/* Underline animation */
.tab-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: #3b9132;
  width: 0;
  transition: all 0.3s ease;
}

/* Active underline movement */
.tab-btn.active ~ .tab-underline {
  width: 90px; /* Adjust based on active tab width if dynamic JS not used */
}

/* Tab content */
.tab-content {
  margin-top: 20px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.tab-panel.active {
  display: block;
}

/* Button links inside tab */
.tab-link1 {
  text-decoration: none;
  color: #3b9132;
  font-weight: 600;
  padding: 20px 35px;
  border: 2px solid #3b9132;
}

.tab-link1:hover {
  color: #fff;
  background-color: #3b9132;
  transition:background-color,color ease-in-out 0.7s ;
}
/* Button links inside tab */
.tab-link2 {
  text-decoration: none;
  background-color: #3b9132;
  color: #fff;
  font-weight: 600;
  padding: 20px 43px;
}

.tab-link2:hover {
  color: #3b9132;
  background-color: #fff;
  border: 2px solid #3b9132;
  transition: background-color,color ease-in-out 0.5s;
}

/* Animation for smooth fade */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .tab-header {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
  
}
/* ===== OUR SERVICES SECTION ===== */
#our_service {
  text-align: center;
}

.service_inner {
  background: #fff;
  border: 2px solid #3b9132;
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  transform: scale(1);
}

/* Hover effect: expand and hide border */
.service_inner:hover {
  transform: scale(1.05);
  border-color: transparent; /* border hides */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.service_icon i {
  font-size: 36px;
  color: #3b9132;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Icon hover animation */
.service_inner:hover .service_icon i {
  color: #2e7327;
  transform:rotate(360deg) scale(1.1);
}

/* Text */
.service_inner h5 {
  font-size: 18px;
  margin-top: 10px;
  color: #222;
}

.service_inner p {
  color: #555;
  font-size: 15px;
  margin-top: 10px;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .service_inner {
    padding: 30px 20px;
  }
}

#counter .counter-outer{
  background: linear-gradient(90deg,rgba(0,0,0,0.2),rgba(0,0,0,0.6)),url('../img/beach.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#counter .counter-outer .counter-inner{
  width: 90%;
  height: 270px;
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #3b9132;
  border-radius: 15px;
}
#counter .counter-outer .counter-inner .counter-content{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#counter .counter-outer .counter-inner .counter-content i{
  font-size: 32px;
  color: #3b9132;
}
#counter .counter-outer .counter-inner .counter-content h3{
  font-size: 85px;
  color: rgba(0, 0, 0, 0.982);
}

#counter .counter-outer:hover .counter-inner{
  transform: scale(1.05);
  transition: transform ease-in-out 0.8s;
}


@media (min-width:991px)
{
  #counter .counter-outer{
    width: 30%;
  }

  #counter .counter-outer .counter-inner{
  width: 90%;
  height: 270px;
  background-color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
}
}
#book_tour{
  width: 100%;
  height: 450px;
  background:linear-gradient(180deg,rgba(0,0,0,0.1),rgba(0,0,0,0.3)),url('../img/maldives-islands-ocean-tropical-beach-600nw-1938868960.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment:fixed;
  background-size: cover;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
#book_tour h3{
  font-size: 52px;
  font-weight: 700;
}
#book_tour h5{
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 40px;
}
#book_tour .bookbutton{
  padding: 20px 35px;
  color: #fff;
  background-color: #3b9132;
  text-decoration: none;
}
#book_tour .bookbutton:hover{
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  transition:all ease-in-out 0.7s ;
}
@media (max-width:992px) {
    #book_tour h3{
    font-size: 32px;
    font-weight: 700;
  }
  #book_tour h5{
    font-size: 15px;
  }
}

/* Room Card Container */
#hotel_rooms .room-cards {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

/* Image Styling */
#hotel_rooms .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#hotel_rooms .room-image:hover img {
  transform: scale(1.05);
}

/* Room Info Box */
#hotel_rooms .room-info {
  position: relative;
  background: #fff;
}

/* Price Tag */
#hotel_rooms .price-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: #00c2a9;
  color: #fff;
  font-weight: 700;
  padding: 10px 25px;
  font-size: 18px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 75%);
  z-index: 10;
}

/* Button Style */
#hotel_rooms .book-btn {
  /* display: inline-block; */
  padding: 15px 21px;
  background: transparent;
  border: 2px solid #3b9132;
  text-decoration: none;
  color: #3b9132;
  font-weight: 600;
  transition: all 0.4s ease;
}

#hotel_rooms .book-btn:hover {
  background: #3b9132;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  #hotel_rooms .room-cards {
    flex-direction: column;
    height: auto;
  }

  #hotel_rooms .room-info {
    padding: 20px;
  }

  #hotel_rooms .price-tag {
    font-size: 16px;
    padding: 8px 20px;
  }
}

#offer{
  width: 100%;
  height: 400px;
  background:linear-gradient(90deg,rgba(0,0,0,0.2),rgba(0,0,0,0.4)),url("../img/sea-rzmc4vt49ysdefo2.jpg") ;
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover ;
  background-attachment: fixed;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#offer h2{
  font-size:45px ;
  color: #fff;
  font-weight: 700;
}
#offer p{
  color: #fff;
  font-size: 16px; 
  margin: 30px 0;
}
/* Input field */
#offer .subscribetxt {
  width: 350px;
  width: 100%;
  padding: 20px 18px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  transition: 0.3s;
}

#offer .subscribetxt:focus {
  background: #fff;
  box-shadow: 0 0 10px rgba(59, 145, 50, 0.5);
}

/* Subscribe button */
#offer .subscribe-btn {
  background: #00bfa6;
  color: white;
  border: none;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
  width: 100%;
}

#offer .subscribe-btn:hover {
  background: #3b9132;
  transform: translateY(-2px);
}

/* ==================== GALLERY SECTION ==================== */
#gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#gallery .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

#gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox popup */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox .close:hover {
  color: #3b9132;
}

/* Owl carousel dots */
#gallery .owl-dots {
  text-align: center;
  margin-top: 15px;
}

#gallery .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#gallery .owl-dot.active span {
  background: #3b9132;
  transform: scale(1.2);
}

/* ==================== FOOTER ==================== */
#footer {
  background: #1b1b1b;
  color: #d9d9d9;
  font-family: "Open Sans", sans-serif;
}

#footer h4 {
  color: #fff;
  font-size: 20px;
}

#footer p {
  font-size: 15px;
  line-height: 1.7;
}

#footer .footer-links li {
  margin-bottom: 8px;
}

#footer .footer-links a {
  color: #d9d9d9;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer .footer-links a:hover {
  color: #3b9132; /* theme green */
}

/* Social Icons */
#footer .social-icons a {
  display: inline-block;
  color: #d9d9d9;
  font-size: 16px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 8px;
  transition: all 0.3s ease;
}

#footer .social-icons a:hover {
  background: #3b9132;
  color: #fff;
  transform: translateY(-3px);
}

/* Copyright bar */
#footer .footer-bottom {
  background: #111;
  color: #aaa;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #footer {
    text-align: center;
  }
  #footer .social-icons {
    justify-content: center;
  }
}
/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 15px 20px;
  font-size: 14px;
  z-index: 9999;
  display: none;
  animation: slideUp 0.6s ease forwards;
}

.cookie-consent a {
  color: #3b9132;
}

.cookie-buttons .btn {
  border-radius: 20px;
  font-weight: 500;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Floating Button Container */
#floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Common Button Style */
#floating-buttons a {
  width: 50px;
  height: 50px;
  background: #3b9132;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Hover Animation */
#floating-buttons a:hover {
  transform: translateY(-4px);
  background: #2e6f26;
}

/* WhatsApp Specific */
#whatsappButton {
  background-color: #25d366;
}

#whatsappButton:hover {
  background-color: #1ebe5d;
}

/* Hide Back-to-Top by default */
#backToTop {
  display: none;
}
#contact {
  background-color: #fdfafa;
}

#contact .smallbox {
  height: 220px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

/* Hover effect - scale & shadow */
#contact .smallbox:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: #3b9132;
}

/* Icon styling */
#contact .smallbox i {
  font-size: 45px;
  color: #3b9132;
  transition: transform 0.4s ease, color 0.3s ease;
}

/* Icon grows on hover */
#contact .smallbox:hover i {
  transform: scale(1.3);
  color: #2f7229;
}

/* Divider line */
#contact .smallbox .partition {
  border: 2px solid #3b9132;
  width: 0%;
  transition: width 0.5s ease;
  margin: 15px 0;
}

/* Line expands on hover */
#contact .smallbox:hover .partition {
  width: 45%;
}

/* Text styling */
#contact .smallbox span {
  display: block;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

#contact .smallbox:hover span {
  color: #3b9132;
}

/* Responsive spacing fix */
@media (max-width: 768px) {
  #contact .smallbox {
    margin-bottom: 15px;
  }
}
#contactForm {
  background-color: #fdfafa;
}

#contactForm h2 {
  font-weight: 700;
}

#contactForm p {
  font-size: 16px;
}

#contactForm .form-control {
  border-radius: 0;
  border: 2px solid #e5e5e5;
  padding: 14px;
  transition: all 0.3s ease;
  font-size: 16px;
}

#contactForm .form-control:focus {
  border-color: #3b9132;
  box-shadow: none;
}

#contactForm .form-control.is-invalid {
  border-color: #dc3545;
}

#contactForm .invalid-feedback {
  font-size: 14px;
  color: #dc3545;
  margin-top: 5px;
}

#contactForm .send-btn {
  background-color: #00b7a3;
  color: #fff;
  font-size: 18px;
  padding: 12px 40px;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
}

#contactForm .send-btn:hover {
  background-color: #009b89;
  transform: scale(1.02);
}

#gallerytop{
  width: 100%;
  height: 350px;
  background:linear-gradient(90deg,rgba(0,0,0,0.3),rgba(0,0,0,0.6)),url("../img/maldives-islands-ocean-tropical-beach-600nw-1938868960.webp") ;
  background-size:cover ;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}
#gallerytop h2{
  font-size: 50px;
  font-weight: 700;
}
#gallerytop a,#gallerytop span{
  font-size: 18px;
}
#destinationTabs .nav-link {
  background: #e9ecef;
  color: #000;
  border-radius: 20px;
  padding: 8px 18px;
  font-weight: 600;
}

#destinationTabs .nav-link.active {
  background: #3b9132 !important;
  color: #fff !important;
}
.room-card {
  display: none !important;
}
.room-card.show {
  display: flex !important;
}
#callButton {
  position: fixed;
  bottom: 160px;
  right: 20px;
  background: #28a745;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: .3s;
}

#callButton:hover {
  transform: scale(1.1);
}
.room-slider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.membership-hero {
  background: url('../img/maldives-islands-ocean-tropical-beach-600nw-1938868960.webp') center/cover no-repeat;
  height: 300px;
}

.membership-card {
  border-radius: 15px;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.benefits-list .icon {
  color: #0d6efd;
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Filter Buttons */
#photoGallery .filter-btn {
    background: #3b9132;
    color: #fff;
    margin: 3px;
    border-radius: 20px;
    padding: 6px 18px;
    transition: all 0.3s ease;
}
#photoGallery .filter-btn:hover,
#photoGallery .filter-btn.active {
    background: #2f7a28;
}

/* Gallery Grid */
.gallery-img {
    width: 100%;
    border-radius: 10px;
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.05);
}

/* Lightbox */
#lightboxOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
#lightboxOverlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}
#lightboxClose {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
