* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            /* overflow: hidden; */   /* Remove or comment out this line */
            overflow-x: hidden;      /* Optional: only hide horizontal scroll */
            font-family: Arial, sans-serif;
        }

        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .text-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            text-align: center;
            z-index: 2;
        }

        .text-overlay h1 {
            font-size: 3rem;
            text-shadow: 0 0 10px black;
        }

        .text-overlay p {
            font-size: 1.5rem;
            text-shadow: 0 0 5px black;
        }

        .man {
            position: absolute;
            bottom: 0;
            width: 400px;
            height: 400px;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0;
            transform: translateY(100px);
            z-index: 3;
        }

        .man1 {
            width: 500px;
            height: 600px;
        }

        #man2 {
            right: 0;
        }

        #man3 {
            right: 0;
        }

        .card-img-top {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }

        .card.border-0.shadow-sm {
            transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
            cursor: pointer;
        }
        .card.border-0.shadow-sm:hover {
            transform: translateY(-10px) scale(1.04);
            box-shadow: 0 8px 32px rgba(39, 174, 96, 0.18), 0 1.5px 8px rgba(0,0,0,0.08);
            z-index: 2;
        }
        .card.border-0.shadow-sm:hover .card-img-overlay h5 {
            background: rgba(39, 174, 96, 0.7);
            transition: background 0.3s;
        }

        .mySwiper {
    padding-bottom: 40px;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}
.map-container {
    position: relative;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}
.map-marker {
    position: absolute;
    width: 13px;
    height: 15px;
    transform: translate(-50%, -100%); /* Center horizontally, bottom at point */
    z-index: 2;
    pointer-events: auto;
    transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
}

.marker-point {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s cubic-bezier(.4,2,.6,1);
}

.marker-point:hover {
    transform: scale(1.2);
}

.map-marker:hover {
    transform: translate(-50%, -110%) scale(1.2);
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
    z-index: 3;
}
.marker-popup {
    display: none;
    position: fixed;
    background: #fff;
    color: #222;
    padding: 6px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-size: 1rem;
    white-space: nowrap;
    pointer-events: none;
    z-index: 9999;
    border: 1px solid #ddd;
    transition: opacity 0.15s;
}
#loader-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100vw;
            height: 100vh;
            background: #fff;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: opacity 0.5s;
        }

        #loader-overlay .loader-text {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            color: #27ae60;
            margin-top: 20px;
            letter-spacing: 1px;
            animation: fadeInUp 1.2s;
        }

        .lds-dual-ring {
            display: inline-block;
            width: 64px;
            height: 64px;
        }

        .lds-dual-ring:after {
            content: " ";
            display: block;
            width: 46px;
            height: 46px;
            margin: 1px;
            border-radius: 50%;
            border: 6px solid #27ae60;
            border-color: #27ae60 transparent #27ae60 transparent;
            animation: lds-dual-ring 1.2s linear infinite;
        }

        @keyframes lds-dual-ring {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.hero-text {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 70px !important;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.highlight-hero {
    background: #43c463;
    color: #fff;
    border-radius: 12px;
    padding: 2px 18px;
    margin-left: 8px;
    font-family: inherit;
    font-size: 1em;
    font-weight: bold;
    display: inline-block;
}
.profile-card {
      max-width: 350px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      margin: 20px auto;
      background: #fff;
    }
    .profile-card img {
      width: 100%;
      height: auto;
    }
    .profile-details {
      padding: 20px;
      text-align: center;
    }
    .star-rating i {
      color: gold;
      margin: 2px;
    }
    .profile-card {
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}
.profile-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 2;
}
.navbar {
    background: rgba(255, 255, 255, 0.75) !important; /* semi-transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* for Safari */
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: background 0.3s;
}

.navbar .nav-link {
    position: relative;
    display: inline-block;
    transition: color 0.2s;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    border-radius: 10px  !important;
    height: 5px;
    background: #198754; /* Bootstrap success color */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
    border-radius: 2px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}
.navbar .navbar-brand {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    gap: 10px;
    color: #198754; /* Bootstrap success color */
}

/* Login and Sign Up Button Styles */
.btn-login {
    background: transparent;
    color: #198754;
    border: 2px solid #198754;
    border-radius: 50px;
    font-weight: 500;
    padding: 0.35rem 1.2rem;
    transition: background 0.2s, color 0.2s;
}

.btn-login:hover {
    background: #198754;
    color: #fff;
}

.btn-signup {
    background: #198754;
    color: #fff;
    border: 2px solid #12653e;
    border-radius: 50px;
    font-weight: 700;
    padding: 0.35rem 1.2rem;
    transition: background 0.2s, color 0.2s;
}

.btn-signup:hover {
    background: #12653e;
    color: #fff;
}
.dropdown-menu {
    background: rgba(255,255,255,0.7) !important; /* semi-transparent white */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: none;
}
.dropdown-item {
    
    color: #198754 !important; /* Bootstrap success color */
    transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover {
    background: rgba(39, 174, 96, 0.1) !important; /* Light green */
    color: #198754 !important; /* Bootstrap success color */
}
.dropdown-item.active {
    background: rgba(39, 174, 96, 0.2) !important; /* Light green */
    color: #198754 !important; /* Bootstrap success color */
}
.dropdown-item.disabled {
    color: #6c757d !important; /* Bootstrap gray */
    background: transparent !important;
}
.whatsnew-card {
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}
.whatsnew-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.whatsnew-card .card-img-top {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 100%;
    object-fit: cover;
}
.whatsnew-link {
    color: #1976d2;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.whatsnew-link:hover {
    color: #125399;
    text-decoration: underline;
}
.whatsNewSwiper {
    padding-bottom: 40px;
}
.whatsNewSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}
.plan-trip-section {
    background: url('assets/Images/map-background.jpg') center/cover no-repeat;
    position: relative;
    z-index: 1;
}
.plan-trip-icon {
    background: rgba(255,255,255,0.7);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    transition: transform 0.20s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari support */
}

.plan-trip-icon:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 8px 32px rgba(39, 174, 96, 0.18);
}

.plan-trip-icon img {
    width: 150px !important;
    height: 150px !important;
    transition: transform 0.25s;
}

.plan-trip-icon:hover img {
    transform: scale(1.12) rotate(-6deg);
}
.plan-trip-desc {
    left: 50%;
    transform: translate(-50%, -50%);
    top: 60%;
}
@media (max-width: 767px) {
    .plan-trip-desc {
        position: static !important;
        transform: none !important;
        margin-top: 1.5rem;
    }
}
.plan-trip-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}
.plan-trip-section .text-center.position-relative {
    margin-top: -100px !important; 
}
.planTripSwiper {
    padding-bottom: 40px;
}
.planTripSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}
.tooltip-inner {
        background-color: #fff !important;
        color: #222 !important;
        border: 2px solid #43c463;
        box-shadow: 0 2px 8px rgba(67,196,99,0.12);
        font-family: 'Comic Sans MS', cursive, sans-serif;
    }
    .tooltip-arrow::before {
        border-top-color: #fff !important;
    }
.custom-dest-card {
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.custom-dest-card:hover {
    box-shadow: 0 8px 32px rgba(67,196,99,0.18), 0 2px 8px rgba(0,0,0,0.07);
    border-color: #43c463;
    transform: translateY(-8px) scale(1.03);
    z-index: 2;
}
.custom-dest-card .custom-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    margin-top: -36px;
    transition: background 0.2s, border-color 0.2s, transform 0.25s cubic-bezier(.4,2,.6,1);
    /* Added transform to transition for smooth scaling */
}
.custom-dest-card:hover .custom-icon {
    transform: scale(1.1);
    /* Use transform instead of scale property for better browser support */
}
.custom-dest-card .btn-success {
    background: #43c463;
    border: none;
    transition: background 0.18s;
}
.custom-dest-card .btn-success:hover {
    background: #2fa94d;
}
.dest-grid {
  display: grid;
  grid-template-areas:
    "large medium1"
    "large medium2"
    "small1 small2";
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr 0.7fr;
  gap: 18px;
}

.dest-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 4px 24px rgba(67,196,99,0.13);
  transition: 
    transform 0.35s cubic-bezier(.4,2,.6,1),
    box-shadow 0.35s cubic-bezier(.4,2,.6,1);
}

.dest-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 36px rgba(67,196,99,0.22), 0 2px 8px rgba(0,0,0,0.10);
  z-index: 2;
}

.dest-card:hover .dest-overlay {
  background: rgba(39, 174, 96, 0.55);
  transition: background 0.3s;
}

.dest-card-large { grid-area: large; min-height: 270px !; height: 100%; }
.dest-card-medium:first-of-type { grid-area: medium1; min-height: 130px; height: 100%; }
.dest-card-medium:last-of-type { grid-area: medium2; min-height: 130px; height: 100%; }
.dest-card-small:first-of-type { grid-area: small1; min-height: 100px !important; height: 100% !important; }
.dest-card-small:last-of-type { grid-area: small2; min-height: 100px !important; height: 100% !important; }

.dest-overlay {
  background: rgba(0,0,0,0.38);
  color: #fff;
  padding: 28px 22px 18px 22px;
  width: 100%;
  text-align: left;
}

.dest-overlay h3 {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.dest-overlay p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.dest-overlay .btn {
  background: #43c463;
  border: none;
  font-weight: bold;
  border-radius: 24px;
  padding: 0.4em 1.2em;
}

@media (max-width: 991px) {
  .dest-grid {
    grid-template-areas:
      "large"
      "medium1"
      "medium2"
      "small1"
      "small2";
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }
}

/* Make section-6 fill the viewport */
.section-6 {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
}
.section-6 .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Make the grid fill the section and cards fit perfectly */
.dest-grid {
  height: 100%;
  align-items: stretch;
}

/* Reduce card heights to fit 100vh layout */
.dest-card-large { grid-area: large; min-height: 270px; height: 100%; }
.dest-card-medium:first-of-type { grid-area: medium1; min-height: 130px; height: 100%; }
.dest-card-medium:last-of-type { grid-area: medium2; min-height: 130px; height: 100%; }
.dest-card-small:first-of-type { grid-area: small1; min-height: 90px; height: 100%; }
.dest-card-small:last-of-type { grid-area: small2; min-height: 90px; height: 100%; }

/* Make all cards stretch to fill their grid area */
.dest-card {
  height: 100%;
  min-height: unset;
}

/* Footer Styles */
footer {
  font-family: 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.01em;
}

footer h4 {
  font-size: 1.3rem;
  margin-bottom: 0.7em;
}

footer ul li {
  margin-bottom: 0.5em;
  cursor: pointer;
  transition: color 0.2s;
}

footer ul li:hover {
  color: #bbf7d0;
  text-decoration: underline;
}

footer .form-control:focus {
  box-shadow: 0 0 0 0.15rem #16a34a44;
  border-color: #16a34a;
}

footer .btn-success:hover,
footer .btn-success:focus {
  background: #15803d !important;
}

footer .bi {
  transition: color 0.2s, transform 0.2s;
}

footer a:hover .bi {
  color: #bbf7d0 !important;
  transform: scale(1.15);
}

/* Footer curve overlays */
.footer-curve-top {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #16a34a;
  border-bottom-left-radius: 200px 80px;
  border-bottom-right-radius: 200px 80px;
  z-index: 0;
}
.footer-curve-bottom {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #22c55e;
  border-top-left-radius: 200px 80px;
  border-top-right-radius: 200px 80px;
  z-index: 0;
}

/* Copyright Section */
.footer-copyright {
  background: #1b6d45;
  color: #e6fbe9;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.7em 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 767px) {
  .footer-copyright {
    font-size: 0.92rem;
    padding: 0.9em 0;
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  footer .container {
    padding-top: 30px !important;
    padding-bottom: 20px !important;
  }
  footer h4 {
    font-size: 1.1rem;
  }
  footer .row > div {
    margin-bottom: 1.5rem;
  }
}
.marker-anuradhapura .map-marker {
    width: 30px;  
    height: 30px; 
}
.sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: rgba(255,255,255,0.55); 
    box-shadow: -2px 0 16px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(.77,0,.18,1);
    padding: 24px 18px 18px 24px;
    overflow-y: auto;
    backdrop-filter: blur(18px);         
    -webkit-backdrop-filter: blur(18px);
}
.sidebar.open {
    right: 0;
}
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.sidebar-footer{
   position: absolute;
    left: 0;
    bottom: 0;
    padding: 12px 18px;
    text-align: center;
    width: 100%;
    
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #16a34a;
    cursor: pointer;
    line-height: 1;
}
/* Sidebar List Styling */
.sidebar-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.sidebar-list li {
    margin-bottom: 18px;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
}
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.65);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(67,196,99,0.07);
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.sidebar-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(67,196,99,0.10);
    transition: transform 0.18s;
}
.sidebar-item span {
    font-weight: 600;
    font-size: 1.08rem;
    color: #198754;
    display: block;
}
.sidebar-item .map-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.98rem;
    color: #0a6847;
    margin-top: 2px;
    text-decoration: none;
    transition: color 0.18s;
}
.sidebar-item .map-link i {
    margin-right: 4px;
    font-size: 1.1em;
}
.sidebar-list li:hover .sidebar-item {
    background: rgba(67,196,99,0.13);
    box-shadow: 0 4px 16px rgba(67,196,99,0.18);
    transform: scale(1.03) translateX(6px);
}
.sidebar-list li:hover .sidebar-item img {
    transform: scale(1.08) rotate(-3deg);
}
.sidebar-list li:hover .sidebar-item .map-link {
    color: #16a34a;
    text-decoration: underline;
}
.map-container.sidebar-open {
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
    transform: translateX(-180px); /* Adjust as needed for your layout */
    z-index: 1;
}
@media (max-width: 991px) {
    .map-container.sidebar-open {
        transform: none; /* Don't shift on mobile */
    }
}
.video-section .ratio {
    height: 500px;
    width: 100%;
    max-width: 100%;
}
.video-section video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* Contact Us Section */
.contact-us-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.contact-us-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 163, 74, 0.10) url('../assets/Images/background.png') center/cover no-repeat; /* Adjusted path */
  filter: blur(12px);
  z-index: 0;
}

.contact-us-container {
  z-index: 1;
}

.contact-us-title {
  font-size: 2.3rem;
}

.contact-us-subtitle {
  font-size: 1.15rem;
}

.contact-us-submit {
  background: #16a34a;
  font-size: 1.1rem;
}

.contact-info-row {
  background: #e6fbe9;
  border-radius: 18px;
  padding: 32px 0;
}

.contact-info-icon-bg {
  background: #16a34a;
  width: 64px;
  height: 64px;
}

.contact-info-icon {
  color: #fff;
  font-size: 2rem;
}

.contact-info-text {
  color: #222;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  padding: 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer-wave-top {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #16a34a; /* Ensure this matches the start of the gradient */
  border-bottom-left-radius: 80px 40px;
  border-bottom-right-radius: 80px 40px;
  z-index: 0;
}

.footer-container {
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-about-text {
  max-width: 300px;
}

.footer-newsletter-form {
  max-width: 340px;
}

.footer-newsletter-input {
  background: #e6fbe9;
  color: #16a34a;
}

.footer-newsletter-button {
  background: #16a34a;
  border: none;
}

.footer-social-icons a {
  color: #fff;
  font-size: 2rem;
}

.footer-wave-bottom {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 120px;
  /* background: #22c55e; */ /* This was missing, assuming it should match the end of the gradient or be transparent if the main footer bg covers it */
  border-top-left-radius: 80px 40px;
  border-top-right-radius: 80px 40px;
  z-index: 0;
}

.footer-copyright {
  position: relative;
  z-index: 2;
  color: #e6fbe9;
  font-size: 1rem;
}

.footer-poweredby {
  position: relative;
  z-index: 2;
  background: #feffff;
  color: #090909;
  font-size: 1rem;
}

.Sri-Lankan-info-dropdown {
  background-color: #198754 !important; /* Ensure this overrides Bootstrap */
  color: #fff !important; /* Set text color to white for contrast */
   /* Optional: match border to a darker shade or the main color */
}

.Sri-Lankan-info-dropdown:hover,
.Sri-Lankan-info-dropdown:focus {
  background-color: #0d4a1f !important; /* Darker shade for hover/focus */
  color: #fff !important;
  border-color: #0a3b18 !important;
  box-shadow: none !important; /* Optional: remove Bootstrap's focus shadow if not desired */
}

/* Styles for when the dropdown is open (active state) */
.Sri-Lankan-info-dropdown[aria-expanded="true"],
.Sri-Lankan-info-dropdown.active, /* Bootstrap 4 might use .active */
.Sri-Lankan-info-dropdown:active { /* General active state */
  background-color: #105B26 !important; /* Keep the desired background color */
  color: #fff !important;
  border-color: #0d4a1f !important;
  box-shadow: none !important; /* Optional: remove Bootstrap's active shadow */
}
.plan-your-trip{
  font-weight: bold;
}
.swiper-pagination-bullet {
    background: #238c5c !important;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}
.swiper-pagination-bullet-active {
    background: #238c5c !important;
    opacity: 1;
    transform: scale(1.2);
}
.hotelSwiper .card {
    border-radius: 22px;
    box-shadow: 0 6px 32px 0 rgba(60, 72, 88, 0.10), 0 1.5px 6px 0 rgba(60, 72, 88, 0.08);
    border: none;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    background: #fff;
    overflow: hidden;
    position: relative;
}
.hotelSwiper .btn-outline-dark{

  color: #0a6847 !important;
    border-color: #0a6847 !important;
    background: transparent !important;
    font-weight: 600;
    padding: 0.4em 1.2em;
    border-radius: 24px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hotelSwiper .btn-outline-dark:hover,
.hotelSwiper .btn-outline-dark:focus {
    background: #16a34a !important;
    color: #fff !important;
    border-color: #16a34a !important;
    box-shadow: 0 4px 16px 0 rgba(22,163,74,0.12);
}

/* Swiper navigation button color */
.swiper-button-next,
.swiper-button-prev {
    color: #157347 !important;
    /* Optional: add a subtle shadow for better visibility */
    text-shadow: 0 2px 8px rgba(21,115,71,0.08);
}

/* Responsive: Center and stack dropdown and login button on mobile */
@media (max-width: 575.98px) {
    .navbar .d-flex.gap-2.align-items-center {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        gap: 0.75rem !important;
        margin-top: 0.5rem;
    }
    .navbar .d-flex.gap-2.align-items-center .dropdown,
    .navbar .d-flex.gap-2.align-items-center .btn-login {
        width: 100% !important;
        text-align: center;
    }
    .navbar .d-flex.gap-2.align-items-center .dropdown-menu {
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: 200px;
    }
}

 @media (max-width: 767.98px) {
            .hero .man {
                display: none !important;
            }
        }

        /* Hide original hero text on mobile, show mobile version */
        /* Hide desktop overlay and show mobile overlay only on mobile */
        @media (max-width: 767.98px) {
            .text-overlay {
                display: none !important;
            }

            .mobile-hero-text-overlay {
                display: flex !important;
                position: absolute;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100%;
                z-index: 2;
                background: rgba(0, 0, 0, 0.22);
                color: #fff;
                align-items: center;
                justify-content: center;
                text-align: center;
            }

            .hero {
                position: relative;
            }

            .hero-text-slide-mobile {
                width: 95%;
                max-width: 370px;
                margin: 0 auto;
                background: rgba(255, 255, 255, 0.18);
                border-radius: 18px;
                padding: 28px 12px 22px 12px;
                box-shadow: 0 8px 32px 0 rgba(60, 60, 60, 0.18);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                border: 1.5px solid rgba(67, 196, 99, 0.13);
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-text-slide-mobile h2 {
                font-size: 1.25rem;
                font-weight: 800;
                margin-bottom: 12px;
                letter-spacing: 1px;
                color: #1a7f4c;
                text-shadow: 0 2px 12px #fff, 0 1px 0 #43c463;
            }

            .highlight-mobile {
                background: linear-gradient(90deg, #43c463 0%, #105B26 100%);
                color: #fff;
                border-radius: 8px;
                padding: 0.15em 0.5em;
                font-weight: 700;
                box-shadow: 0 2px 8pxrgba(77, 185, 104, 0.2);
            }

            .hero-text-slide-mobile .subtitle {
                font-size: 1.05rem;
                margin-bottom: 8px;
                color: #105B26;
                font-weight: 600;
                text-shadow: 0 1px 6px #fff;
            }

            .hero-text-slide-mobile .desc {
                font-size: 0.98rem;
                color: #222;
                font-weight: 500;
                line-height: 1.6;
                background: rgba(255, 255, 255, 0.12);
                border-radius: 8px;
                padding: 8px 6px 4px 6px;
                box-shadow: 0 1px 6px #fff2;
            }
        }

        /* Hide mobile overlay on desktop */
        @media (min-width: 768px) {
            .mobile-hero-text-overlay {
                display: none !important;
            }
        }