:root {
  --primary-color: #a45fa1;
  --secondary-color: #e8f0e5;
  --dark-color: #2a2a2a;
  --light-color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-color);
  overflow-x: hidden;
  background-color: var(--light-color);
}

:target {
  animation: highlight 1.5s ease;
}

@keyframes highlight {
  0% {
    background-color: rgba(var(--primary-color), 0.1);
  }

  100% {
    background-color: transparent;
  }
}


section {
  scroll-margin-top: 100px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  height: 145px;
  transition: all 0.3s ease-in-out;
}

.logo {
  height: 125px;
  transition: all 0.3s ease-in-out;
}

.scrolled {
  padding: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.scrolled .logo {
  height: 90px;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  margin: 0 12px;
  color: var(--dark-color);
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--primary-color) !important;
}

/* Navbar Dropdown Styles */
.navbar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  max-height: 400px;
  overflow-y: auto;
  /* Changed from scroll to auto to only show when needed */
  overflow-x: hidden;
  margin-top: 8px;
  background-color: rgb(164, 95, 160);

  /* Custom scrollbar for WebKit browsers (Chrome, Safari, Edge) */
  scrollbar-width: thin;
  /* For Firefox */
  scrollbar-color: rgba(255, 255, 255, 0.5) rgba(0, 0, 0, 0.1);
  /* For Firefox */
}

/* Custom scrollbar for WebKit browsers */
.navbar .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.navbar .dropdown-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.navbar .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.navbar .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.navbar .dropdown-item {
  padding: 8px 20px;
  color: var(--light-color);
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: rgba(var(--primary-color), 0.1);
  color: var(--secondary-color);
}

.navbar .dropdown-header {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  padding: 5px 20px;
  margin-top: 10px;
}

.navbar .dropdown-divider {
  margin: 5px 0;
  border-color: rgba(0, 0, 0, 0.15);
}

.navbar .dropdown-toggle::after {
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.navbar .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* .whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
} */


/* Button Styles */
.booking-btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.btn-primary {
  background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(110, 72, 170, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(110, 72, 170, 0.4);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 7px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-btn-group {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}



/* Improved Dropdown Hover Behavior */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown {
    position: relative;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
    /* Remove gap between button and menu */
    top: 100%;
    /* Position directly below the nav item */
    left: 0;
    /* Add these to ensure smooth transition */
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    /* Prevent interaction when hidden */
  }

  .navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* Allow interaction when visible */
    transform: translateY(0);
  }

  /* Create a gap-less connection between button and menu */
  .navbar .dropdown-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    height: 8px;
    width: 2px;
  }

  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Mobile styles */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    box-shadow: none;
    padding-left: 15px;
    text-align: center;
  }

  .navbar .dropdown-item {
    padding: 8px 15px;
  }
}

.hero-section {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 101, 132, 0.1) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, rgba(108, 99, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 50px;
}

.btn-primary:hover {
  background-color: #5a52e0;
  border-color: #5a52e0;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 50px;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about-section {
  padding: 100px 0;
}

.about-img {
  border-radius: 20px;
  position: sticky;
  top: 90px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.about-img:hover {
  transform: translateY(-10px);
}

.feature-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  border-top: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary-color);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.services-section {
  padding: 100px 0;
  background-color: #F9F9FF;
}

.service-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 101, 132, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
}


/* Services Section Styles */
.services-category-title {
  font-size: 1.8rem;
  margin: 2rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
  color: var(--primary-color);
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eaeaea;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #c8e6c9;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #616161;
  margin-bottom: 0;
}


.service-features {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #616161;
  font-size: 0.9rem;
}

.service-features li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .services-category-title {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
  }

  .service-card {
    padding: 20px;
  }

  .navbar {
    height: auto;
  }

  .navbar-nav {
    text-align: center;
    padding-bottom: 15px;
  }
}

.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(255, 101, 132, 0.03) 100%);
}

.testimonial-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: rgba(108, 99, 255, 0.1);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.gallery-section {
  padding: 100px 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}

.gallery-item img {
  transition: transform 0.5s;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(108, 99, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

.contact-section {
  padding: 100px 0;
  background-color: #F9F9FF;
}

.contact-info-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  height: 100%;
  text-align: center;
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 101, 132, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.form-control {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  /* margin-bottom: 20px; */
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.btn-yoga {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 12px 28px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-yoga:hover {
  background-color: #2d4a33;
  border-color: #2d4a33;
  color: white;
  transform: translateY(-2px);
}

.btn-outline-yoga {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 28px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-yoga:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h5 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 15px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-yoga {
  background-color: var(--light-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
  width: 100%;
}

.newsletter-form .btn-yoga:hover {
  background-color: #da6ad6;
  border-color: #da6ad6;
  color: white;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.form-check-input {
  margin-top: 0.3rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #ed88e9;
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.copyright a:hover {
  color: white;
  text-decoration: underline;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.carousel-item.active .fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Itinerary Section */
.itinerary-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.itinerary-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1820&q=80') center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 60px;
}

.section-header .subtitle {
  color: var(--primary-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Timeline Layout */
.timeline-day {
  margin-bottom: 60px;
  position: relative;
}

.day-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(90, 143, 123, 0.2);
}

.day-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(90, 143, 123, 0.1);
  margin-right: 25px;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  min-width: 60px;
}

.day-title h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.day-title p {
  color: var(--primary-color);
  font-style: italic;
  margin: 0;
  font-size: 1rem;
}

/* Timeline Items */
.timeline-items {
  position: relative;
  padding-left: 100px;
}

.timeline-items:before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-time {
  position: absolute;
  left: -100px;
  top: 0;
  width: 80px;
  text-align: right;
  padding-right: 20px;
}

.timeline-time span {
  display: inline-block;
  padding: 5px 10px;
  background: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(90, 143, 123, 0.2);
}

.timeline-content {
  display: flex;
  position: relative;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-box {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  flex: 1;
  border-top: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-box h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.content-box p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.activity-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #777;
  flex-wrap: wrap;
}

.activity-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.activity-meta i {
  font-size: 0.9rem;
}

.activity-note {
  margin-top: 10px;
  padding: 8px 12px;
  background: #f0f7f4;
  border-radius: 5px;
  font-size: 0.85rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Video Testimonials */
.video-testimonials-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.video-testimonial-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.video-testimonial-card iframe {
  border-radius: 8px;
}

.testimonial-info {
  padding: 15px;
}

.testimonial-info h5 {
  color: #333;
  margin-bottom: 10px;
}

.testimonial-info p {
  color: #666;
  font-style: italic;
}

/* For single video testimonial */
.video-testimonial-section {
  padding: 80px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .itinerary-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .timeline-items {
    padding-left: 70px;
  }

  .timeline-items:before {
    left: 30px;
  }

  .timeline-time {
    left: -70px;
    width: 60px;
  }

  .day-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .day-number {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .content-box {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .timeline-content {
    flex-direction: column;
  }

  .timeline-icon {
    margin-bottom: 15px;
    margin-right: 0;
    align-self: flex-start;
  }

  .timeline-time span {
    font-size: 0.8rem;
    padding: 3px 8px;
  }

  .content-box h4 {
    font-size: 1.1rem;
  }

  .content-box p {
    font-size: 0.9rem;
  }
}






/* Retreat Info Modal */
#retreatInfoModal .modal-content {
  border-radius: 15px;
  overflow: hidden;
  border: none;
}

#retreatInfoModal .modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
  padding: 20px 25px;
}

#retreatInfoModal .modal-title {
  font-weight: 600;
  font-size: 1.5rem;
}

#retreatInfoModal .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.retreat-info-container {
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.info-item h6 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.info-item p {
  margin: 0;
  color: #555;
}

.retreat-description {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-top: 20px;
}

.retreat-description p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

#retreatInfoModal .modal-footer {
  border-top: none;
  padding: 20px 25px;
  justify-content: space-between;
}

#retreatInfoModal .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

#retreatInfoModal .btn-primary:hover {
  background-color: #4a7f6b;
  border-color: #4a7f6b;
}

#retreatInfoModal .btn-outline-secondary {
  padding: 10px 20px;
}

/* Animation */
.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: none;
}

/* Instagram Section */
.instagram-section {
  border-bottom: 2px solid #eee;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.instagram-profile {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.instagram-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #f5f5f5;
}

.instagram-link {
  display: flex;
  align-items: center;
  color: #E1306C;
  text-decoration: none;
  font-size: 0.95rem;
}

.instagram-link i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.instagram-link:hover {
  color: #C13584;
  text-decoration: underline;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .scrolled .logo {
    height: 75px;
  }

  .btn-primary {
    padding: 12px 20px;
  }

  #retreatInfoModal .modal-footer {
    padding: 20px 15px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .footer {
    text-align: center;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .social-icons {
    justify-content: center;
  }
}

.retreatModalButton {
  position: fixed;
  right: -4%;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 155;
  border-radius: 4px;
  margin-right: -30px;
  /* Adjust this to control how much of the button is visible */
  transition: bottom 0.3s ease;
  /* Smooth transition when moving up */
}

#retreatModal .modal-lg {
  max-width: 800px;
}

#retreatModal .form-section {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

#retreatModal .form-section h5 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

#retreatModal .form-check-label {
  color: #000000;
  margin-bottom: 15px;
}

#retreatModal .modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
  padding: 20px 25px;
}

#retreatModal .modal-header.bg-gradient-primary {
  background: linear-gradient(135deg, #4a6baf 0%, #3a56a0 100%);
}

#retreatModal .section-title {
  color: #4a6baf;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

#retreatModal .form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

#retreatModal .form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#retreatModal .form-check-label {
  cursor: pointer;
}

#retreatModal #phone,
#retreatModal #emergencyNumber {
  direction: ltr;
  text-align: left;
}

#retreatModal .required-field::after {
  content: " *";
  color: #dc3545;
}

.vision-mission-section {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 101, 132, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 1rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 150px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #81c784;
  border-radius: 50%;
}

.line {
  width: 100px;
  height: 1px;
  background-color: #c8e6c9;
  margin: 0 10px;
}

.principle-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.principle-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

.principle-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.principle-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.principle-content p {
  color: #616161;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.objectives-list {
  list-style-type: none;
  padding-left: 0;
}

.objectives-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #616161;
  line-height: 1.7;
}

.objectives-list li::before {
  content: '•';
  color: var(--primary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

.vision-icon {
  color: #4a6f5e;
}

.mission-icon {
  color: #e65100;
}

.objectives-icon {
  color: #689f38;
}

@media (max-width: 991px) {
  .principle-card {
    padding: 20px;
  }

  .principle-icon {
    font-size: 2.5rem;
  }
}

.navbar-light .navbar-nav .active-permanent {
  color: #4e73df !important;
  /* Your highlight color */
  font-weight: 600;
  position: relative;
}

.navbar-light .navbar-nav .active-permanent::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4e73df;
  /* Same as text color */
  border-radius: 2px;
}

#google_translate_element {
  position: fixed;
  right: 0;
  z-index: 1100;
}


.upcoming-events {
  background-color: #f5f7f6;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-card {
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.event-card.workshop {
  background: linear-gradient(135deg, #4a6f5e 0%, #2e7d32 100%);
  color: white;
}

.event-card.massage {
  background: linear-gradient(135deg, #5d4037 0%, #3e2723 100%);
  color: white;
}

.event-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.event-title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.event-subtitle {
  opacity: 0.9;
  font-size: 0.95rem;
}

.event-datetime {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.date-badge {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  min-width: 60px;
  margin-right: 20px;
}

.date-badge .day {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.date-badge .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.event-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.event-content p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.price-tag {
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.spots-remaining {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-block;
  font-size: 0.9rem;
}

.event-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.location,
.contact-info {
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-info div {
  margin-bottom: 5px;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: #4a6f5e;
}

@media (max-width: 767px) {
  .event-card {
    padding: 20px;
  }

  .event-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-outline-light {
    margin-top: 15px;
  }
}