:root {
  --primary-color: #1a1a1a;
  --accent-color: #d4af37;
  --text-light: #f8f9fa;
}
:root {
    --primary-dark: #0d1b2a;
    --primary-medium: #1b263b;
    --primary-light: #415a77;
    --accent-primary: #e63946;
    --accent-secondary: #2a9d8f;
    --accent-light: #f4a261;
    --text-light: #f8f9fa;
    --text-gray: #6c757d;
    --text-dark: #212529;
    --section-bg: #f8f9fa;
    --section-white: #ffffff;
    --card-bg: #ffffff;
    --card-light: #f8f9fa;
    --gradient-dark: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    --gradient-accent: linear-gradient(135deg, #e63946 0%, #f4a261 100%);
    --gradient-subtle: linear-gradient(135deg, #415a77 0%, #778da9 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 20px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    
    /* Additional premium variables */
    --gradient-gold: linear-gradient(135deg, #f4a261 0%, #ffd166 100%);
    --gradient-silver: linear-gradient(135deg, #6c757d 0%, #adb5bd 50%, #dee2e6 100%);
    --shadow-premium: 0 25px 60px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --border-glow: rgba(244, 162, 97, 0.3);
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
  overflow-x: hidden;
}

html,
body {
  overflow-y: overlay;
}

/* Navbar Styles */
.navbar {
  /* background-color: rgba(0, 0, 0, 0.85); */
  background-color:rgb(255 255 255 / 85%);
  padding: 15px 0;
  transition: all 0.3s ease;
  position: fixed;
  width: calc(100% - 40px);
  top: 60px;
  left: 20px;
  right: 20px;
  z-index: 1030;
  border-radius: 30px;
}

.navbar.scrolled {
  /* background-color: rgba(0, 0, 0, 0.95); */
  background-color:rgb(255 255 255 / 85%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text-light) !important;
  letter-spacing: 1px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  /* color: var(--text-light) !important; */
   color: #444 !important;
  font-weight: 700;
  margin: 0 10px;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  /* background-color: rgba(0, 0, 0, 0.95); */
    background-color:rgb(255 255 255 / 100%);

  border: none;
  padding: 10px 0;
  margin-top: 10px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
  min-width: 220px;
}

/* Show dropdown on hover */
.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  /* color: var(--text-light); */
  color:#444;
  padding: 8px 20px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  border-radius: 0 !important;
}

.dropdown-item:hover {
  background-color: transparent;
  color: var(--accent-color);
  padding-left: 25px;
}

.dropdown-toggle::after {
  display: none;
}

/* Main nav dropdown chevrons */
.nav-item.dropdown .nav-link .chevron-down {
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-item.dropdown .nav-link .chevron-up {
  display: none;
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link .chevron-down {
  display: none;
}

.nav-item.dropdown:hover .nav-link .chevron-up {
  display: inline-block;
}

/* Submenu dropdown chevrons */
.dropdown-submenu > .dropdown-item::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.dropdown-submenu:hover > .dropdown-item::after {
  transform: translateY(-50%) rotate(0deg);
}

/* Smart submenu positioning */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -10px;
  margin-left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  border-radius: 0;
}

/* Default right-aligned submenu */
.dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Left-aligned submenu for when there's not enough space on the right */
.dropdown-submenu.left-aligned > .dropdown-menu {
  left: auto;
  right: 100%;
  transform: translateX(-10px);
}

.dropdown-submenu.left-aligned:hover > .dropdown-menu {
  transform: translateX(0);
}

/* Hero/Banner Section */
.banner-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .banner-slide {
    min-height: 800px;
  }
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
    color: #f8f9fa;
    z-index: 20;
    padding-top: 150px;
}
.banner h1 {
  font-family: "Kanit";
  color: RGBA(255, 255, 255, 0);
  font-size: 500%;
  text-shadow: 0px 1px 3px RGBA(0, 0, 0, 0);
  line-height: 0.8;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  text-align: inherit;
  letter-spacing: 10px;
  word-spacing: normal;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: #ffffff;
  stroke: #ffffff;
  margin-bottom: 30px;
}

.banner p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.btn-primary-custom {
  background-color: var(--accent-color);
  border: none;
  color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-custom:hover {
  background-color: #b8941f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* YOUR CUSTOM CAROUSEL CONTROL BUTTONS */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  bottom: 30px;
  top: auto;
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  opacity: 1;
  z-index: 20;
  transform: translateY(0);
}

.carousel-control-prev {
  right: 90px;
  left: auto;
}

.carousel-control-next {
  right: 30px;
  left: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background: none;
  width: 30px;
  height: 30px;
  position: relative;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 3px solid white;
  border-right: 3px solid white;
}

.carousel-control-prev-icon::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.carousel-control-next-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 0.8;
}

/* HIDE ANY BOOTSTRAP AUTO-GENERATED CONTROLS */
/* This prevents duplicates when there are exactly 2 slides */
.carousel-control-prev:not(.custom-control-prev),
.carousel-control-next:not(.custom-control-next) {
  display: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  .banner-slide {
    height: 65dvh;
  }
  .banner-content {
    top: 60%;
  }
  .banner h1 {
    font-size: 300%;
    letter-spacing: 5px;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
  }
  .banner p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}
/*Carousel end */

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align:center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
 /* background-color: var(--accent-color);*/
}

.about-section .about-content {
  /* Two columns */
  column-gap: 30px;
}

.about-section .about-content p {
  /* Prevent paragraph from breaking between columns */
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

/* Responsive: single column on smaller screens */
@media (max-width: 768px) {
  .about-section .about-content {
    column-count: 1;
  }
}

/* Why With Us Section */
.why-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
      no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-light);
  overflow: hidden;
}

.why-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.why-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.why-highlight {
  color: var(--accent-color);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.why-signature {
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 2rem;
  color: var(--accent-color);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.5rem;
  display: inline-block;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Nepal Section */
.nepal-section {
  padding: 100px 0;
  background-color: #fff;
}

.nepal-content {
  padding-right: 40px;
}

.nepal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.nepal-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #555;
}

.nepal-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.nepal-read-more:hover {
  color: #b8941f;
  transform: translateX(5px);
}

.nepal-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.nepal-read-more:hover i {
  transform: translateX(3px);
}

/* Nepal Slider */
.nepal-slider-container {
  position: relative;
}

.nepal-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.nepal-slider-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.nepal-slider-controls {
  display: flex;
  gap: 10px;
}

.nepal-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nepal-slider-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

.nepal-slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.nepal-slider-btn:disabled:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.nepal-slider {
  display: flex;
  overflow: hidden;
  gap: 20px;
}

.nepal-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.nepal-card {
  flex: 0 0 calc(33.333% - 14px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nepal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.nepal-card-image {
  height: 200px;
  overflow: hidden;
}

.nepal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nepal-card:hover .nepal-card-image img {
  transform: scale(1.05);
}

.nepal-card-content {
  padding: 20px;
}

.nepal-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.nepal-card-trips {
  color: var(--accent-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Trips Section */
.trips-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

/* Trip Cards Styling */
.trip-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.trip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.trip-image-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.trip-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trip-card:hover .trip-image {
  transform: scale(1.05);
}

.trip-badge-container {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
}

.trip-date-badge,
.trip-price-badge {
  /*background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 6px 12px;
            border-radius: 5px;
            font-size: 0.85rem;
            font-weight: 500;*/
  background-color: #f4f4f4;
  color: #6a6c6c;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
}

.trip-price-badge {
  /*background-color: var(--accent-color);
            color: var(--primary-color);*/
  background-color: #e0fcd7;
  color: #2e5f41;
}

.trip-status-container {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.trip-status-btn {
  border: none;
  /*border-radius: 20px;*/
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trip-status-confirmed {
  background-color: #28a745;
  color: white;
}

.trip-status-available {
  background-color: #17a2b8;
  color: white;
}

.trip-status-complete {
  background-color: #6c757d;
  color: white;
}

.trip-card-body {
  padding: 20px;
}

.trip-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  line-height: 1.3;
}

.trip-tagline {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.trip-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trip-read-more:hover {
  color: #b8941f;
  transform: translateX(5px);
}

.trip-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.trip-read-more:hover i {
  transform: translateX(3px);
}

/* Dynamic card sizing based on number of cards */
.trips-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.trip-col {
  padding: 0 15px;
  margin-bottom: 30px;
}

/* Default for 4 cards */
.trip-col {
  flex: 0 0 25%;
  max-width: 25%;
}

/* For 3 cards */
.trips-row.three-cards .trip-col {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

/* For 2 cards */
.trips-row.two-cards .trip-col {
  flex: 0 0 50%;
  max-width: 50%;
}

/* For 1 card */
.trips-row.one-card .trip-col {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Reviews Section Styles - Updated with 4-Card Slider */
.reviews-section {
  padding: 100px 0;
  background-color: #fff;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.reviews-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.reviews-slider-container {
  position: relative;
  margin-top: 30px;
}

.reviews-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.reviews-slider-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.reviews-slider-controls {
  display: flex;
  gap: 10px;
}

.reviews-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.reviews-slider-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

.reviews-slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.reviews-slider-btn:disabled:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.reviews-slider {
  overflow: hidden;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.review-card {
  flex: 0 0 calc(25% - 23px);
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  background-color: #fff;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 600;
  color: white;
  font-size: 1.2rem;
}

.reviewer-details {
  flex: 1;
}

.reviewer-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.review-date {
  color: #888;
  font-size: 0.9rem;
}

.review-rating {
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  margin-bottom: 5px;
}

.review-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.review-read-more:hover {
  color: #b8941f;
}

.review-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.review-read-more:hover i {
  transform: translateX(3px);
}

.reviews-verified {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
  color: #666;
  font-size: 0.9rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #e1f5fe;
  color: #0288d1;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 10px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: #1a1a1a;
  color: var(--text-light);
}

.contact-section .section-title::after {
  background-color: var(--text-light);
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 8px;
  margin-bottom: 30px;
  background: transparent;
  color: var(--text-light);
}

.form-control:focus {
  box-shadow: none;
  border-bottom: 1px solid var(--accent-color);
}

/* Hero Section Living the journey */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
}

/* Image on the right */
.hero img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  --overlay-opacity: 0.8;
}

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 40, 0.30);
  /*backdrop-filter: blur(1px);*/
  z-index: 2;
}

/* Text stays above overlay AND above image */
.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.9;
}

.hero p strong {
  font-weight: 800;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c8102e; /* red */
  color: #ffffff; /* white text */
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid #c8102e;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 15px;
}

.custom-btn i {
  font-size: 14px;
}

/* Hover effect */
.custom-btn:hover {
  background-color: #ffffff; /* white background */
  color: #c8102e; /* red text */
  border-color: #c8102e;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }

  .hero img {
    width: 100%;
    height: 100%;
    opacity: 0.4;
  }
}

/* Footer Section*/

/* FOOTER BASE */
.footer {
  background-color: #595552;
  color: #fff;
  padding: 30px 0 30px;
  font-family: "Lato", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.footer .container {
  padding: 10px 0;
}

/* FOOTER CONTENT */
.footer-content {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.align-top {
  align-self: flex-start;
}

.footer .technical-org p {
  font-size: 12px;
  width: 100%;
}

.footer h5,
.footer h6 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.25rem;
  width: 80%;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #82b8e4;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
}

.footer ul li a:hover {
  color: #fff;
}

.footer p {
  color: #fff;
  font-family: "Lato", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  width: 80%;
}

.footer .mt-3 p {
  margin-bottom: 0;
  font-size: 12px;
}

/* CONTACT + PHONE */
.phone-number {
  color: #82b8e4;
  text-decoration: none;
  font-size: 12px;
}
.phone-number:hover {
  cursor: pointer;
}

.contact-number p {
  font-size: 12px;
  margin-bottom: 0;
  font-family: "Lato", Sans-serif;
  font-weight: 400;
}

/* RATING SECTION */
.rating-content {
  color: #000;
  font-family: "Lato", Sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.verified {
  font-size: 11px;
}

.trustpilot-rating {
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
  margin-top: 20px;
  max-width: 220px;
}

.trustpilot-icon {
  width: 50px;
  height: 50px;
  vertical-align: middle;
}

.rating-stars {
  margin-bottom: 5px;
}

.star {
  color: #ffc107;
  font-size: 14px;
}

.rating-value,
.top-rated {
  font-weight: bold;
}

.top-rated {
  margin-bottom: 5px;
}

/* SOCIAL ICONS */
.social-links a {
  margin: 0 10px;
  font-size: 1.2rem;
  display: inline-block;
  width: 28px;
  height: 26px;
  background-color: #595552;
  border: 3px solid #fff;
  border-radius: 4px;
  text-align: center;
  line-height: 22px;

  transition: all 0.3s;
  color: #fff;
}

.social-links a:hover {
  background-color: #fff;
  color: #595552;
  transform: translateY(-3px);
}

/* CONTACT INFO BOX */
.contact-info {
  background-color: #444;
  padding: 30px;
  border-radius: 10px;
  margin-top: 20px;
}

/* COPYRIGHT */
.copyright {
  background-color: #333;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

/* LOGO */
.logo {
  max-width: 200px;
  margin-bottom: 20px;
  /* filter: brightness(0) invert(1); */
}

/* NEWSLETTER */
.newsletter-form .form-control {
  background-color: #fff;
  border: 1px solid #666;
  color: #000;
  border-radius: 4px;
  max-width: 70%;
  height: calc(2.25rem + 2px);
}

.signup-btn {
  background-color: #82b8e4;
  border: 1px solid #82b8e4;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  padding: 8px 20px;
  height: calc(2.25rem + 2px);
  width: 70%;
  margin-top: 5px;
}

.signup-btn:hover {
  background-color: #6da5d9;
  border-color: #6da5d9;
}

.form-check-label {
  font-size: 16px;
  color: #fff;
}

.form-check-input {
  background-color: #fff;
  border: 1px solid #666;
}

.form-check-input:checked {
  background-color: #fff;
  border-color: #666;
  position: relative;
}

.form-check-input:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8b4513;
  font-size: 12px;
  font-weight: bold;
}

.form-check-input:focus {
  box-shadow: none;
}

/* MOBILE RESPONSIVE FOOTER */
@media (max-width: 767px) {
  .footer-content {
    padding-left: 15px;
  }
  footer {
    overflow-x: hidden;
    width: 100%;
  }

  .footer .container {
    padding-left: 15px;
    padding-right: 10px;
  }

  .mt-4 {
    margin-left: 10px;
  }

  .footer-content .mt-4:first-child {
    margin-left: 0;
  }
}

/*Footer Section Ends */

/* Fixed Side Buttons */

.fixed-side-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  width: auto;
}

/* Make each button independent  */
.fixed-side-buttons .side-btn {
  position: relative;
  background-color: #e63946;
  color: #fff;
  padding: 12px 15px;
  width: 50px;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.3s ease, z-index 0s;
  z-index: 1;
}

/* Icon inside button */
.fixed-side-buttons .side-btn i {
  font-size: 20px;
  min-width: 24px;
  text-align: center;
}

/* Phone button different color */
.fixed-side-buttons .phone-call {
  background-color: #2a9d8f;
}

.fixed-side-buttons .book-trip {
  background-color: #6cac5a;
}

.side-wrap {
  width: 180px;
  display: block;
  position: relative;
  overflow: visible;
}

.side-wrap .side-btn {
  width: 50px;
  margin-left: auto;
  transition: width 0.6s ease;
  overflow: hidden;
  white-space: nowrap;
}

.side-wrap:hover .side-btn,
.side-wrap:focus-within .side-btn {
  width: 180px;
  z-index: 10;
}

/* Hide text by default */
.side-wrap .side-btn span {
  opacity: 0;
  transition: opacity 0.2s ease 0.05s;
  pointer-events: none;
}

/* Show text only when that button is hovered or focused */
.side-wrap:hover .side-btn span,
.side-wrap:focus-within .side-btn span {
  opacity: 1;
}

/* Accessibility: allow keyboard users to see the labels */
.side-wrap .side-btn:focus,
.side-wrap .side-btn:focus-within {
  outline: none;
}

/* Hide buttons on mobile */
@media (max-width: 768px) {
  .fixed-side-buttons {
    display: none;
  }
}

/*Fixed side buttons end*/

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    margin: 0 8px;
    font-size: 0.9rem;
  }

  .banner h1 {
    font-size: 500%;
  }

  .why-title {
    font-size: 3rem;
  }

  .nepal-title {
    font-size: 2.2rem;
  }

  /* Adjust card layout for medium screens */
  .trip-col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .trips-row.two-cards .trip-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .trips-row.one-card .trip-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nepal-card {
    flex: 0 0 calc(50% - 10px);
  }

  .review-card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 991px) {
  .navbar-nav .nav-link {
    margin: 0 5px;
    font-size: 0.85rem;
  }

  .banner h1 {
    font-size: 400%;
    letter-spacing: 8px;
  }

  .banner p {
    font-size: 1.3rem;
  }

  .why-title {
    font-size: 2.5rem;
  }

  .why-text {
    font-size: 1.1rem;
  }

  .nepal-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .nepal-title {
    font-size: 2rem;
  }

  .trip-title {
    font-size: 1.3rem;
  }

  .reviews-title {
    font-size: 2.2rem;
  }

  /* Adjust card layout for tablets */
  .trip-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .trips-row.three-cards .trip-col,
  .trips-row.two-cards .trip-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .trips-row.one-card .trip-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .nepal-card {
    flex: 0 0 calc(50% - 10px);
  }

  .review-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .banner h1 {
    font-size: 300%;
    letter-spacing: 5px;
  }

  .banner p {
    font-size: 1.2rem;
  }

  .why-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .why-title {
    font-size: 2.2rem;
  }

  .why-text {
    font-size: 1rem;
  }

  .nepal-title {
    font-size: 1.8rem;
  }

  .nepal-text {
    font-size: 1rem;
  }

  .navbar-nav {
    text-align: start;
    padding-top: 15px;
  }

  .navbar {
    width: calc(100% - 15px);
    left: 5px;
    right: 15px;
  }

  /* Mobile dropdown behavior */
  .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: start;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .dropdown.show > .dropdown-menu {
    display: block;
  }

  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-top: 5px;
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }

  .dropdown-submenu.show > .dropdown-menu {
    display: block;
  }

  .nav-item.dropdown .nav-link .chevron-down,
  .nav-item.dropdown .nav-link .chevron-up {
    display: none !important;
  }

  .dropdown-submenu > .dropdown-item::after {
    display: none;
  }

  .trip-card {
    margin-bottom: 25px;
  }

  /* Adjust card layout for mobile */
  .trip-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .trips-row.three-cards .trip-col,
  .trips-row.two-cards .trip-col,
  .trips-row.one-card .trip-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .trip-status-container {
    flex-direction: row;
    gap: 8px;
  }

  .nepal-card {
    flex: 0 0 100%;
  }

  .nepal-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nepal-slider-controls {
    align-self: flex-end;
  }

  .reviews-title {
    font-size: 2rem;
  }

  .reviews-subtitle {
    font-size: 1.1rem;
  }

  .reviews-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .reviews-slider-controls {
    align-self: flex-end;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .reviews-slider-track {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .banner h1 {
    font-size: 200%;
    letter-spacing: 5px;
  }

  .banner p {
    font-size: 1.1rem;
  }

  .why-title {
    font-size: 1.8rem;
  }

  .why-text {
    font-size: 0.95rem;
  }

  .nepal-title {
    font-size: 1.6rem;
  }

  .navbar-brand {
    font-size: 1.3rem;
    margin-left: 10px;
  }

  .section-title {
    font-size: 2rem;
  }

  .nepal-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nepal-slider-controls {
    align-self: flex-end;
  }

  .reviews-title {
    font-size: 1.8rem;
  }

  .review-card {
    padding: 20px;
    min-height: 350px;
  }
}

@media (max-width: 400px) {
  .banner h1 {
    font-size: 180%;
    margin-bottom: 10px;
  }

  .banner p {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .why-title {
    font-size: 1.6rem;
  }

  .nepal-title {
    font-size: 1.4rem;
  }

  .btn-primary-custom {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .nepal-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nepal-slider-controls {
    align-self: flex-end;
  }

  .reviewer-info {
    flex-direction: column;
    text-align: center;
  }

  .reviewer-avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/* Light Theme Premium Why With Us Section */
.why-premium-light {
    /* background: var(--section-white); */
    background:#6c757d;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.why-premium-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(244, 162, 97, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(42, 157, 143, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(230, 57, 70, 0.02) 0%, transparent 60%);
    z-index: 1;
}

.why-premium-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5a5552;
    opacity: 0.3;
    z-index: 1;
}

/* Light Theme Premium Section Header */
.premium-header-light {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.premium-header-light .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: block;
}

.premium-header-light h2 {
    font-size: 3.8rem;
    margin-bottom: 30px;
    /* background: var(--gradient-accent); */
    background: #f8f9fa;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.premium-header-light h2::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background: var(--gradient-accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.premium-header-light p {
    font-size: 1.2rem;
    line-height: 1.8;
    /* color: var(--text-gray); */
    color: #f8f9fa;
    max-width: 800px;
    margin: 40px auto 0;
    font-weight: 400;
}

/* Light Theme Premium Feature Cards */
.premium-card-light {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 50px 35px;
    height: 100%;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.premium-card-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.premium-card-light:hover {
    transform: translateY(-20px);
    border-color: var(--accent-light);
    box-shadow: var(--shadow-premium);
}

.premium-card-light:hover::before {
    opacity: 1;
}

/* Light Theme Icon Container */
.premium-icon-container-light {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.premium-icon-container-light::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-light);
    opacity: 1;
    transition: var(--transition-smooth);
}

.premium-card-light:hover .premium-icon-container-light {
    transform: translateY(-10px);
}

.premium-card-light:hover .premium-icon-container-light::before {
    background: var(--gradient-accent);
    opacity: 0.1;
    transform: scale(1.1);
}

.premium-icon-container-light::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid transparent;
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-smooth);
}

.premium-card-light:hover .premium-icon-container-light::after {
    opacity: 1;
    transform: scale(1.1);
    border-color: var(--accent-light);
}

/* Light Theme Icons - Updated for PHP compatibility */
.premium-icon-light {
    font-size: 2.8rem;
    color: var(--accent-primary);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

/* Image icon styles */
.premium-icon-container-light img.premium-icon-light {
    width: 50px;
    height: 50px;
    object-fit: contain;
    font-size: 0;
    color: transparent;
}

/* Icon font styles */
.premium-icon-container-light i.premium-icon-light {
    font-size: 2.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon hover effects */
.premium-card-light:hover .premium-icon-light {
    color: var(--accent-light);
    transform: scale(1.1);
}

.premium-card-light:hover .premium-icon-container-light img.premium-icon-light {
    filter: brightness(1.2);
    transform: scale(1.1);
}

/* Light Card Content */
.premium-card-light h5 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

.premium-card-light h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    bottom: 0;
    left: 0;
    transition: var(--transition-smooth);
}

.premium-card-light:hover h5::after {
    width: 60px;
}

.premium-card-light p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 0;
}

/* Light Purpose Section */
.premium-purpose-light {
    background: var(--section-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(244, 162, 97, 0.1);
}

.premium-purpose-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 40c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm140 20c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm-100 0c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm40 80c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10zm-80 0c5.523 0 10-4.477 10-10s-4.477-10-10-10-10 4.477-10 10 4.477 10 10 10z' fill='%23f4a261' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.purpose-content-premium-light {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.purpose-content-premium-light .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-secondary);
    margin-bottom: 30px;
    display: block;
}

.purpose-content-premium-light h3 {
    font-size: 3.2rem;
    margin-bottom: 40px;
    line-height: 1.2;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    padding-bottom: 30px;
}

.purpose-content-premium-light h3::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.purpose-content-premium-light p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 60px;
    font-weight: 400;
}

/* Light Stats */
.premium-stats-light {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 80px;
}

.premium-stat-light {
    text-align: center;
    padding: 30px;
    min-width: 180px;
    position: relative;
}

.premium-stat-light::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(244, 162, 97, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
}

.premium-stat-light:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: rgba(244, 162, 97, 0.4);
}

.stat-number-premium-light {
    font-size: 3.2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.stat-label-premium-light {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-secondary);
    font-weight: 500;
}

/* Decorative Elements */
.decorative-line-light {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
    z-index: 1;
    opacity: 0.3;
}

.decorative-line-light.top {
    top: 100px;
    left: 5%;
    width: 90%;
}

.decorative-line-light.bottom {
    bottom: 100px;
    left: 5%;
    width: 90%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .premium-header-light h2 {
        font-size: 3.2rem;
    }
    
    .purpose-content-premium-light h3 {
        font-size: 2.8rem;
    }
    
    .premium-stats-light {
        gap: 40px;
    }
    
    .premium-icon-light {
        font-size: 2.5rem;
    }
    
    .premium-icon-container-light img.premium-icon-light {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 992px) {
    .why-premium-light {
        padding: 100px 0 80px;
    }
    
    .premium-header-light {
        margin-bottom: 80px;
    }
    
    .premium-header-light h2 {
        font-size: 2.8rem;
    }
    
    .premium-card-light {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .premium-icon-container-light {
        width: 90px;
        height: 90px;
        margin-bottom: 30px;
    }
    
    .premium-icon-light {
        font-size: 2.5rem;
    }
    
    .premium-icon-container-light img.premium-icon-light {
        width: 45px;
        height: 45px;
    }
    
    .premium-purpose-light {
        padding: 100px 0;
    }
    
    .purpose-content-premium-light h3 {
        font-size: 2.4rem;
    }
    
    .stat-number-premium-light {
        font-size: 2.8rem;
    }
    
    .premium-stat-light {
        min-width: 160px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .why-premium-light {
        padding: 80px 0 60px;
    }
    
    .premium-header-light {
        margin-bottom: 60px;
    }
    
    .premium-header-light h2 {
        font-size: 2.4rem;
    }
    
    .premium-header-light p {
        font-size: 1.1rem;
    }
    
    .premium-card-light {
        padding: 35px 25px;
    }
    
    .premium-card-light h5 {
        font-size: 1.3rem;
    }
    
    .premium-card-light p {
        font-size: 1rem;
    }
    
    .premium-icon-container-light {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .premium-icon-light {
        font-size: 2.2rem;
    }
    
    .premium-icon-container-light img.premium-icon-light {
        width: 40px;
        height: 40px;
    }
    
    .premium-purpose-light {
        padding: 80px 0;
    }
    
    .purpose-content-premium-light h3 {
        font-size: 2rem;
    }
    
    .purpose-content-premium-light p {
        font-size: 1.1rem;
    }
    
    .premium-stats-light {
        gap: 30px;
        margin-top: 60px;
    }
    
    .premium-stat-light {
        min-width: 140px;
        padding: 20px;
    }
    
    .stat-number-premium-light {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .premium-header-light h2 {
        font-size: 2rem;
    }
    
    .premium-header-light p {
        font-size: 1rem;
    }
    
    .purpose-content-premium-light h3 {
        font-size: 1.8rem;
    }
    
    .purpose-content-premium-light p {
        font-size: 1rem;
    }
    
    .premium-stats-light {
        gap: 20px;
    }
    
    .premium-stat-light {
        min-width: 120px;
        padding: 15px;
        flex: 0 0 calc(50% - 20px);
    }
    
    .stat-number-premium-light {
        font-size: 2rem;
    }
    
    .premium-icon-container-light {
        width: 70px;
        height: 70px;
    }
    
    .premium-icon-light {
        font-size: 1.8rem;
    }
    
    .premium-icon-container-light img.premium-icon-light {
        width: 35px;
        height: 35px;
    }
}
.custom-logo-link img.custom-logo {
    max-width: 230px !important;
    height: auto !important;
}

/* Light Theme Animations */
@keyframes float-premium-light {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* .premium-header-light h2 {
    animation: float-premium-light 6s ease-in-out infinite;
} */

.premium-card-light:hover .premium-icon-light {
    animation: float-premium-light 2s ease-in-out infinite;
}

/* Scroll Animation */
.fade-in-premium-light {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-premium-light.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ============================================
   MOBILE NAVIGATION STYLES
   ============================================ */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-container.active {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .custom-logo-link img {
    max-width: 180px;
    height: auto;
}

.mobile-logo-text {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

/* Mobile Menu Content */
.mobile-menu-content {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

/* Mobile Navigation List */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-list li a {
    display: block;
    padding: 18px 25px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav-list li a:hover {
    background: rgba(var(--primary-light-rgb), 0.1);
    color: var(--accent-primary);
}

/* Mobile Dropdown Toggle Button */
.mobile-dropdown-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

/* Mobile Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(var(--primary-light-rgb), 0.05);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mobile-submenu.active {
    max-height: 1000px;
}

.mobile-submenu li a {
    padding-left: 40px;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-submenu .mobile-submenu li a {
    padding-left: 55px;
}

/* Mobile Menu Toggler Styles */
.navbar-toggler {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: 2px solid rgba(68, 68, 68, 0.3); /* Light gray border */
    border-radius: 10px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background layer for hover effect */
.navbar-toggler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

/* Hamburger icon (three lines) - Black color */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.8em;
    height: 1.8em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* "Menu" text next to hamburger */
.mobile-menu-text {
    color: #000; /* Black text */
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Underline effect for text */
.mobile-menu-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HOVER EFFECTS */
.navbar-toggler:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.navbar-toggler:hover::before {
    opacity: 1;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e63946' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transform: scale(1.1);
}

.navbar-toggler:hover .mobile-menu-text {
    color: var(--accent-primary);
    letter-spacing: 1.2px;
}

.navbar-toggler:hover .mobile-menu-text::after {
    width: 100%;
}

/* ACTIVE STATE (when menu is open) */
.navbar-toggler.active {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.navbar-toggler.active .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23e63946' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e");
    transform: rotate(90deg);
}

.navbar-toggler.active .mobile-menu-text {
    color: var(--accent-primary);
}

.navbar-toggler.active .mobile-menu-text::after {
    width: 100%;
}

/* FOCUS STATE (for accessibility) */
.navbar-toggler:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 576px) {
    .navbar-toggler {
        padding: 8px 14px;
        gap: 10px;
    }
    
    .navbar-toggler-icon {
        width: 1.6em;
        height: 1.6em;
    }
    
    .mobile-menu-text {
        font-size: 0.9rem;
    }
}

/* Ensure button is visible on white navbar background */
.navbar {
    background-color: rgb(255 255 255 / 85%);
}

/* Scrolled state adjustments */
.navbar.scrolled .navbar-toggler {
    border-color: rgba(68, 68, 68, 0.4);
}

.navbar.scrolled .navbar-toggler:hover {
    border-color: var(--accent-primary);
}

/* Smooth transitions only for hamburger button components */
.navbar-toggler,
.navbar-toggler-icon,
.mobile-menu-text,
.navbar-toggler::before,
.mobile-menu-text::after {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}


/* Enhanced mobile styles for better touch experience */
@media (max-width: 991px) {
    .mobile-nav-list li a {
        padding: 20px 25px;
        font-size: 1.15rem;
    }
    
    .mobile-submenu li a {
        padding: 18px 25px 18px 40px;
    }
    
    .mobile-submenu .mobile-submenu li a {
        padding-left: 55px;
    }
    
    .mobile-dropdown-toggle {
        width: 50px;
        height: 50px;
    }
    
    /* Ensure proper spacing for nested dropdowns */
    .mobile-nav-list > li > .mobile-dropdown-toggle {
        right: 10px;
    }
    
    .mobile-submenu li .mobile-dropdown-toggle {
        right: 10px;
    }
}

/* Mobile menu animation states */
.mobile-menu-container {
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu-content::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-menu-content::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

/* Active state for current menu item */
.mobile-nav-list li.current-menu-item > a {
    color: var(--accent-primary);
    background: rgba(var(--accent-primary-rgb), 0.1);
    border-left: 4px solid var(--accent-primary);
}

/* Dropdown arrow animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-submenu.active {
    animation: slideDown 0.3s ease forwards;
}

/* Menu item hover effect enhancement */
.mobile-nav-list li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(var(--accent-primary-rgb), 0.1), transparent);
    transition: width 0.3s ease;
}

.mobile-nav-list li a:hover::before {
    width: 100%;
}
