/* Base Styles */
:root {
  --sage-green: #9dc09d;
  --sand-beige: #DDD0C8;
  --warm-clay: #937c6b;
  --soft-white: #F7F5F2;
  --deep-brown: #28221e;
}

/* Custom Vertical Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;

}

::-webkit-scrollbar-track {
  background: #f7f5f2; /* Soft White (matches your palette) */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #c2a28a; /* Warm Clay */
  border-radius: 10px;
  border: 2px solid #f7f5f2; /* Creates inner padding effect */
}

::-webkit-scrollbar-thumb:hover {
  background: #a88c78; /* Slightly darker on hover */
}

body.intro-active {
  overflow: hidden;
}







#video-intro {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#video-intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide main content initially */
#main-site {
  display: none;
  opacity: 0;
  transition: opacity 1s ease;
}

#main-site.visible {
  display: block;
  opacity: 1;
}


/* Firefox Scrollbar (limited styling) */
* {
  scrollbar-width: thin;
  scrollbar-color: #c2a28a #f7f5f2;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Carme", sans-serif;
}

html, body {
  height: auto;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  background-color: var(--soft-white);
}


body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Container */
.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;        /* ✅ Avoids scrollbar conflict */
  z-index: 1000;
}


/* Free Trial Banner */
.free-trial-banner {
  background-color: rgba(168, 187, 168, 0.0);
  color: var(--deep-brown);
  padding: 12px 0;
  text-align: center;
  position: relative;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(0.25px);
  border-bottom: 1px solid rgba(93, 74, 61, 0.0);
  transition: all 0.3s ease;
  width: 100%;
}

.free-trial-banner:hover {
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(93, 74, 61, 0.1);
}

.trial-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.trial-content span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.trial-link {
  color: var(--deep-brown);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  background-color: rgba(245, 245, 245, 0.7);
  transition: all 0.3s ease;
}

.trial-link:hover {
  background-color: var(--deep-brown);
  color: var(--soft-white);
}

.close-trial {
  background: transparent;
  border: none;
  color: var(--deep-brown);
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 0 5px;
  margin-left: auto;
}

.close-trial:hover {
  transform: scale(1.2);
  color: var(--warm-clay);
}

/* Main Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px; /* Reduced padding to accommodate larger logo */
  max-width: 1200px;
  margin: 0 auto;
  height: 80px; /* Fixed height for navbar */
  background-color: rgba(247, 245, 242, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(93, 74, 61, 0.1);
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px; /* Increased logo size */
  width: auto; /* Maintain aspect ratio */
  max-height: 100%; /* Ensure it doesn't exceed navbar height */
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links li a {
  color: var(--deep-brown);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links li a:hover {
  color: var(--sage-green);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background-color: var(--sage-green);
  bottom: 0px; /* Adjusted position to account for navbar height */
  left: 0;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links .btn {
  padding: 10px 25px;
  background-color: var(--sage-green);
  color: var(--soft-white);
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-left: 15px;
  height: auto; /* Reset height for button */
}

.nav-links .btn:hover {
  background-color: var(--deep-brown);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(93, 74, 61, 0.2);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--soft-white);
  box-shadow: 0 10px 30px rgba(93, 74, 61, 0.1);
  border-radius: 8px;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  list-style: none;
  padding: 10px 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(93, 74, 61, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--deep-brown);
  font-size: 14px;
  transition: all 0.3s ease;
  height: auto; /* Reset height for dropdown items */
}

.dropdown-menu li a:hover {
  background-color: rgba(168, 187, 168, 0.2);
  padding-left: 25px;
  color: var(--sage-green);
}

/* Social Icons in Nav */
.social-nav-item {
  margin-left: 10px;
}

.social-nav-item a {
  color: var(--deep-brown);
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px;
  display: flex;
  align-items: center;
}

.social-nav-item a:hover {
  color: var(--sage-green);
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--deep-brown);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .navbar {
    padding: 10px 20px;
    height: 70px;
  }
  
  .logo img {
    height: 60px;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--soft-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    transition: all 0.5s ease;
    box-shadow: 2px 0 15px rgba(93, 74, 61, 0.1);
    z-index: 999;
    gap: 20px;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    height: auto;
    width: 100%;
  }
  
  .nav-links li a {
    height: auto;
    padding: 10px 0;
  }
  
  .nav-links li a::after {
    bottom: 5px;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 60px;
  }
  
  .logo img {
    height: 55px;
  }
  
  .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  margin-top: 0;
}
.hero-heading {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  font-family: 'Great Vibes', cursive; /* Or a calligraphy-style font */
  color: var(--accent); /* Or use #d4af37 or gold for a luxury feel */
  margin-bottom: 20px;
  animation: fadeInUp 1.5s ease-in-out both;
}

/* Animation if not already defined */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--soft-white);
  width: 100%;
  padding: 0 20px;
  z-index: 5;
}

/* SVG handwriting title */
.handwriting {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto 20px;
}

.svg-text {
  font-family: "Luxurious Script", cursive;
  font-size: 7rem;
  fill: none;
  stroke: var(--soft-white);
  stroke-width: 1.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawText 3s ease-out forwards, fillText 0.5s ease forwards;
  animation-delay: 0s, 3s;
  text-shadow: 2px 2px 8px rgba(93, 74, 61, 0.5);
  font-weight: 400;
  letter-spacing: 2px;
}

/* Stroke-drawing animation */
@keyframes drawText {
  to {
    stroke-dashoffset: 0;
  }
}

/* Fill the text after stroke completes */
@keyframes fillText {
  to {
    fill: var(--soft-white);
  }
}
.hero-paragraph {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f4f4f4;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 30px;
  animation: fadeIn 2s ease-in-out both;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(93, 74, 61, 0.5);
  letter-spacing: 1px;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInZoom 1s ease forwards;
  animation-delay: 1.5s; /* Start after heading animation finishes */
}

@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.svg-text.no-animation {
  fill: var(--soft-white);
  stroke: none;
  stroke-dasharray: none;
  stroke-dashoffset: none;
  animation: none !important;
}




.hero .btn {
  display: inline-block;
  background-color: var(--sage-green);
  color: var(--soft-white);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
}

.hero .btn:hover {
  background-color: var(--deep-brown);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(93, 74, 61, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero .btn {
    padding: 12px 25px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}


/* Luxury Courses Section */
.luxury-courses {
  padding: 60px 0;
  background-color: var(--soft-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-intro {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  color: var(--deep-brown);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--warm-clay);
  font-size: 1.1rem;
  font-weight: 300;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 20px 0;
}

.divider-line {
  width: 60px;
  height: 1px;
  background-color: var(--sage-green);
  opacity: 0.3;
}

.divider i {
  color: var(--sage-green);
  margin: 0 15px;
  font-size: 1.1rem;
}

/* Course Cards */
.course-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.course-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(93, 74, 61, 0.05);
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(93, 74, 61, 0.1);
}

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

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

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

.card-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--sage-green);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: var(--deep-brown);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.card-content p {
  color: var(--deep-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefits-list li {
  color: var(--deep-brown);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefits-list i {
  color: var(--sage-green);
}

.cta-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--sage-green);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cta-button:hover {
  background-color: var(--deep-brown);
}

/* Sacred Mantra */
.sacred-mantra {
  margin-top: 50px;
  text-align: center;
}

.mantra-container {
  display: inline-flex;
  align-items: center;
  background: rgba(168, 187, 168, 0.1);
  padding: 30px 50px;
  border-radius: 8px;
  border: 1px solid rgba(168, 187, 168, 0.3);
  gap: 30px;
}

.mantra-container i {
  color: var(--sage-green);
  font-size: 3rem;
}

.mantra-text {
  text-align: left;
}

.sanskrit {
  color: var(--deep-brown);
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 5px;
  line-height: 1.3;
}

.translation {
  color: var(--warm-clay);
  font-size: 1.1rem;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .course-cards {
    grid-template-columns: 1fr;
  }
  
  .mantra-container {
    flex-direction: column;
    padding: 25px;
    text-align: center;
  }
  
  .mantra-text {
    text-align: center;
  }
  
  .sanskrit {
    font-size: 1.5rem;
  }
}

/* Yoga Styles Section */
.yoga-styles {
  padding: 100px 0;
  background-color: #F7F5F2;
  position: relative;
  overflow: hidden;
}

.yoga-styles::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/texture-light.jpg') center/cover;
  opacity: 0.05;
  pointer-events: none;
}

.styles-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.style-card {
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(93, 74, 61, 0.1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.style-card:hover {
  transform: translateY(-10px);
}

.style-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease, filter 0.5s ease;
  z-index: 1;
}

.style-card:hover .style-bg {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.style-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
  background: linear-gradient(transparent 10%, rgba(93, 74, 61, 0.8) 80%);
  color: white;
}

.style-icon {
  width: 60px;
  height: 60px;
  background-color: #F7F5F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.style-icon img {
  width: 30px;
  height: 30px;
}

.style-content h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: white;
}

.style-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.style-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.style-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.style-meta i {
  color: #A8BBA8;
}

.style-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: #A8BBA8;
  color: #5D4A3D;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  width: fit-content;
}

.style-btn:hover {
  background-color: #F7F5F2;
  transform: translateX(5px);
}

.style-btn i {
  transition: transform 0.3s ease;
}

.style-btn:hover i {
  transform: translateX(3px);
}

.view-all {
  text-align: center;
  margin-top: 60px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5D4A3D;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 0;
  border-bottom: 1px solid #A8BBA8;
}

.view-all-btn:hover {
  color: #A8BBA8;
  gap: 15px;
}

.view-all-btn i {
  transition: all 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .styles-carousel {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .style-card {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .yoga-styles {
    padding: 80px 0;
  }
  
  .style-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .styles-carousel {
    grid-template-columns: 1fr;
  }
  
  .style-card {
    height: 400px;
  }
  
  .style-content {
    padding: 25px;
  }
  
  .style-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .style-icon img {
    width: 25px;
    height: 25px;
  }
}



/* Sacred Guides Section */
.sacred-guides {
  padding: 80px 0;
  background-color: var(--soft-white);
  position: relative;
}

.section-intro {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  color: var(--deep-brown);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--warm-clay);
  font-size: 1.1rem;
  font-weight: 300;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.divider-line {
  width: 60px;
  height: 1px;
  background-color: var(--sage-green);
  opacity: 0.3;
}

.divider i {
  color: var(--sage-green);
  margin: 0 15px;
  font-size: 1.1rem;
}

.teacher-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.teacher-description p {
  color: var(--deep-brown);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.teacher-note {
  color: var(--sage-green);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.teacher-note i {
  font-size: 1.2rem;
}

/* Guides Grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(93, 74, 61, 0.05);
  transition: all 0.4s ease;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(93, 74, 61, 0.1);
}

.guide-portrait {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.guide-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.guide-card:hover .guide-portrait img {
  transform: scale(1.05);
}

.guide-specialty {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--sage-green);
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}

.guide-details {
  padding: 25px;
  text-align: center;
}

.guide-details h3 {
  color: var(--deep-brown);
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 400;
}

.guide-exp {
  color: var(--warm-clay);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 300;
}

.guide-bio {
  color: var(--deep-brown);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.guide-signature {
  height: 60px;
  margin-top: 15px;
}

.guide-signature img {
  height: 100%;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .sacred-guides {
    padding: 60px 0;
  }
  
  .guides-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .guide-portrait {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .teacher-description p {
    font-size: 1rem;
  }
}

/* Testimonial Carousel */
.testimonial-carousel {
  padding: 80px 0;
  background-color: #F7F5F2;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: #5D4A3D;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #C2A28A;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
}

.divider-line {
  width: 80px;
  height: 1px;
  background-color: #A8BBA8;
  opacity: 0.5;
}

.divider i {
  color: #A8BBA8;
  margin: 0 20px;
  font-size: 1.3rem;
}

/* Testimonial Track */
.testimonial-track {
  position: relative;
  height: 400px;
  margin: 0 auto;
  max-width: 900px;
}

.testimonial-card {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(93, 74, 61, 0.08);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.quote-icon {
  color: #A8BBA8;
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 20px;
}

.review-text {
  color: #5D4A3D;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.student-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #DDD0C8;
}

.student-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-details h3 {
  color: #5D4A3D;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.rating {
  color: #C2A28A;
  font-size: 0.9rem;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  margin: 40px 0;
}

.carousel-dots {
  display: flex;
  gap: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #DDD0C8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #A8BBA8;
  transform: scale(1.3);
}

.carousel-prev, .carousel-next {
  background: none;
  border: none;
  color: #5D4A3D;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
}

.carousel-prev:hover, .carousel-next:hover {
  color: #A8BBA8;
  transform: scale(1.2);
}

/* Google Reviews Button */
.google-reviews-wrapper {
  text-align: center;
  margin-top: 30px;
}

.google-reviews-btn {
  background-color: #5D4A3D;
  color: #F7F5F2;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.google-reviews-btn:hover {
  background-color: #A8BBA8;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(168, 187, 168, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .testimonial-carousel {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonial-track {
    height: 450px;
  }
  
  .testimonial-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .testimonial-track {
    height: 500px;
  }
  
  .review-text {
    font-size: 1rem;
  }
  
  .student-info {
    flex-direction: column;
    text-align: center;
  }
  
  .carousel-controls {
    gap: 20px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: #F7F5F2;
}

.faq-accordion {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid #DDD0C8;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.faq-header {
  display: flex;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
}

.faq-icon {
  margin-right: 15px;
  color: #A8BBA8;
  font-size: 1.2rem;
}

.faq-header h3 {
  flex: 1;
  color: #5D4A3D;
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0;
  transition: all 0.3s ease;
}

.faq-toggle {
  color: #A8BBA8;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 35px;
}

.faq-content p {
  color: #5D4A3D;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item.active .faq-header h3 {
  color: #A8BBA8;
}

/* Visit Us Section */
.visit-section {
  padding: 100px 0;
  background-color: white;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.visit-content {
  padding-right: 30px;
}

.visit-details p {
  color: #5D4A3D;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-points li {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #F7F5F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #A8BBA8;
  font-size: 1.1rem;
}

.contact-text h4 {
  color: #5D4A3D;
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-text p {
  color: #C2A28A;
  margin: 0;
  font-size: 0.95rem;
}

.visit-map {
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(93, 74, 61, 0.08);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .visit-content {
    padding-right: 0;
    text-align: center;
  }

  .contact-points li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .contact-text h4 {
    font-size: 1rem;
  }

  .contact-text p {
    font-size: 0.9rem;
  }

  .visit-map {
    height: 300px;
  }
}


/* Contact Section */
.contact-us {
  padding: 100px 0;
  background-color: #F7F5F2;
  text-align: center;
}

.contact-us h2 {
  color: #5D4A3D;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 15px;
}

.contact-us p {
  color: #5D4A3D;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  gap: 15px;
}

.divider-line {
  width: 80px;
  height: 1px;
  background-color: #A8BBA8;
}

.divider i {
  color: #A8BBA8;
  font-size: 1.2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.flex-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.flex-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #DDD0C8;
  border-radius: 4px;
  font-size: 1rem;
  background: white;
  color: #5D4A3D;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #A8BBA8;
  box-shadow: 0 0 0 2px rgba(168, 187, 168, 0.2);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-form {
  background-color: #5D4A3D;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-form:hover {
  background-color: #A8BBA8;
  transform: translateY(-3px);
}

/* Thank You Popup */
.thank-you-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.thank-you-popup.show {
  display: flex;
}

.thank-you-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-content img {
  width: 80px;
  margin-bottom: 20px;
}

.thank-you-content p {
  color: #5D4A3D;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.thank-you-content button {
  background-color: #A8BBA8;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thank-you-content button:hover {
  background-color: #5D4A3D;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-us {
    padding: 70px 0;
  }
  
  .flex-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .contact-us h2 {
    font-size: 2rem;
  }
  
  .thank-you-content {
    padding: 30px 20px;
    margin: 0 20px;
  }
}
/* Footer Styles */
.site-footer {
  background-color: #5D4A3D; /* Deep Brown */
  color: #F7F5F2; /* Soft White */
  font-family: 'Tinos', serif;
  overflow: hidden;
}

.footer-top {
  padding: 80px 0 60px;
  background: linear-gradient(rgba(93, 74, 61, 0.9), rgba(93, 74, 61, 0.95)), 
              url('images/texture-light.jpg') center/cover;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-about {
  padding-right: 20px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: #DDD0C8; /* Sand Beige */
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #A8BBA8; /* Sage Green */
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #A8BBA8;
  color: #5D4A3D;
  transform: translateY(-3px);
}

.footer-heading {
  color: #F7F5F2;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #A8BBA8;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #DDD0C8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  padding-left: 20px;
}

.footer-links a::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #A8BBA8;
}

.footer-links a:hover {
  color: #F7F5F2;
  transform: translateX(5px);
}

.contact-info {
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #DDD0C8;
  font-size: 15px;
  line-height: 1.6;
}

.contact-item i {
  color: #A8BBA8;
  margin-top: 3px;
}

.contact-item a {
  color: #DDD0C8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #F7F5F2;
}

.footer-bottom {
  background-color: #3A2D24;
  padding: 30px 0;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.tag-btn {
  background-color: rgba(168, 187, 168, 0.1);
  color: #A8BBA8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 187, 168, 0.3);
}

.tag-btn:hover {
  background-color: #A8BBA8;
  color: #5D4A3D;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.copyright {
  color: #C2A28A; /* Warm Clay */
  font-size: 14px;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #DDD0C8;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #F7F5F2;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-about {
    grid-column: span 2;
    text-align: center;
    padding-right: 0;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .footer-tags {
    flex-direction: column;
    align-items: center;
  }
}



.why-vinyasa{
    padding: 100px;
}

.why-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;

}

.why-text {
  flex: 1;
  min-width: 300px;
}

.why-image {
  flex: 1;
  min-width: 300px;
  z-index: 1;
}

.why-image img {
  width: 100%;
  border: 2px solid #d18aaa;
  border-radius: 10px;
}

.timeline-section {
  padding: 100px;
  background-color: transparent;
  position: relative; /* Required for z-index to work */
  z-index: 1;
}

.timeline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.course-benefits{
    padding: 100px;
}
.timeline-box {
  background-color: #fbeaec;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.benefit-box {
  margin-top: 40px;
}


.contact-us {
  padding: 100px 20px;
  position: relative;
  text-align: center;
}

.contact-us h2 {
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.contact-us p {
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flex-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.flex-row input {
  flex: 1;
  min-width: 250px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.thank-you-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.thank-you-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: popUp 0.3s ease-out;
  max-width: 90%;
}

.thank-you-content img {
  max-width: 150px;
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

#close-thank-you {
  background: #444;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

@keyframes popUp {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ig-embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;

  blockquote.instagram-media {
    max-width: 100%;
    margin: auto;
  }
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.posts-grid .post-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.posts-grid .post-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.posts-grid .post-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.posts-grid .post-card .overlay i {
  font-size: 2rem;
  color: white;
}

.posts-grid .post-card:hover {
  transform: scale(1.03);
}

.posts-grid .post-card:hover img {
  filter: blur(1px);
}

.posts-grid .post-card:hover .overlay {
  opacity: 1;
}


.community-showcase {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .community-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/yoga-pattern.png');
    background-size: 300px;
    opacity: 0.03;
    pointer-events: none;
  }
  
  /* Member Slider Styles */
  .member-slider-wrapper {
    position: relative;
    padding: 0 50px;
    margin-bottom: 80px;
  }
  
  .member-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 20px 0;
  }
  
  .member-slider::-webkit-scrollbar {
    display: none;
  }
  
  .member-card {
    min-width: 220px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.03);
  }
  
  .member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .member-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
  }
  
  .member-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
  }
  
  .member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .member-card:hover img {
    transform: scale(1.05);
  }
  
  .member-card h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .member-role {
    font-size: 0.9rem;
    color: #57bc90;
    font-weight: 500;
    margin: 0;
  }
  
  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    color: #57bc90;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .scroll-btn:hover {
    background: #57bc90;
    color: white;
    transform: translateY(-50%) scale(1.1);
  }
  
  .scroll-btn.left {
    left: 0;
  }
  
  .scroll-btn.right {
    right: 0;
  }
  
  /* Social Media Section */
  .social-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .social-heading {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .social-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
  }
  
  .ig-embed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .ig-embed {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .ig-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .ig-follow-btn svg {
    width: 18px;
    height: 18px;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .section-title {
      font-size: 2.25rem;
    }
    
    .member-card {
      min-width: 200px;
    }
    
    .member-image {
      height: 180px;
    }
  }
  
  @media (max-width: 768px) {
    .community-showcase {
      padding: 70px 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .member-slider-wrapper {
      padding: 0 30px;
    }
    
    .scroll-btn {
      width: 40px;
      height: 40px;
    }
    
    .member-card {
      min-width: 180px;
      padding: 20px;
    }
    
    .member-image {
      height: 160px;
    }
    
    .ig-embed-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .section-title {
      font-size: 1.75rem;
    }
    
    .section-subtitle {
      font-size: 1rem;
      margin-bottom: 40px;
    }
    
    .member-card {
      min-width: 160px;
    }
    
    .member-image {
      height: 140px;
    }
  }



/* Timeline Section Styles */
.timeline-section {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 100px;
  margin-top: 50px;
  border: 1px solid #000;
  padding: 20px;
  overflow-x: hidden; /* Ensure no overflow */
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  overflow-x: hidden; /* Prevent overflow from children */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.timeline-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  width: 100%; /* Ensure title takes full width */
}

.timeline-box {
  width: 48%; /* Slightly less than 50% to account for borders and padding */
  border: 1px solid #000;
  padding: 5px;
  position: relative;
  box-sizing: border-box; /* Include padding and border in width calculation */
  overflow-x: hidden; /* Prevent overflow within box */
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #000;
  transform: translateX(-50%);
}

.timeline-entry {
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
  overflow-x: hidden; /* Prevent overflow from content */
}

.timeline-dot {
  width: 8px;
  height: 8px;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  left: 48.5%;
  top: 100px;
  transform: translateX(-50%);
}

.timeline-dot1 {
  position: absolute;
  left: 48.5%;
  top: 130px; /* Adjusted based on content spacing */
  transform: translateX(-50%);
}

.timeline-dot2 {
  position: absolute;
  left: 48.5%;
  top: 124px; /* Adjusted based on content spacing */
  transform: translateX(-50%);
}

.timeline-dot3 {
  position: absolute;
  left: 48.5%;
  top: 115px; /* Adjusted based on content spacing */
  transform: translateX(-50%);
}

.timeline-content {
  margin-left: 10px;
  font-size: 12px;
  color: #000;
  padding: 5px 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-left: 2px solid #000;
  display: inline-block;
  box-sizing: border-box;
  max-width: 90%; /* Prevent text from overflowing */
}

.timeline-entry.right .timeline-content {
  border-left: none;
  border-right: 2px solid #000;
  margin-left: 0;
  margin-right: 10px;
  text-align: right;
  max-width: 90%; /* Prevent text from overflowing */
}

.timeline-image {
  width: 48%; /* Slightly less than 50% to account for borders and padding */
  padding: 10px;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent image overflow */
}

.timeline-image img {
  width: 100%;
  height: auto; /* Removed fixed height to prevent overflow */
  border-radius: 9%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: block;
}

.timeline-image:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
  }
  .timeline-box, .timeline-image {
    width: 100%;
  }
  .timeline-line {
    left: 220px; /* Move line to left edge on mobile */
    transform: translateX(0);
    height: 520px;
  }
  .timeline-dot, .timeline-dot1, .timeline-dot2, .timeline-dot3 {
    left: 209px; /* Align dots with line */
    transform: translateX(0);
    display: none;
  }
  .timeline-entry.right .timeline-content {
    text-align: left;
    border-left: 2px solid #000;
    border-right: none;
    margin-left: 20px;
    margin-right: 0;
  }
}

/* === HORIZONTAL SCROLL FIXES === */


.timeline-box,
.timeline-image,
.timeline-entry,
.timeline-content {
  max-width: 100%;
  overflow-x: hidden;
}

.timeline-image {
  position: relative !important;
  margin-left: auto;
  margin-right: auto;
}

.timeline-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 992px) {
  .timeline-image {
    max-width: 45%;
  }
}

.footer-icon {

  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

.list-icon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Why Prghalba Section */
.why-prghalba{
  padding: 100px;
}
.why-prghalba .unique-offerings {
  margin-top: 40px;
  text-align: center;
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.offering-item {
  padding: 25px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.offering-item:hover {
  transform: translateY(-5px);
}

.offering-item img {
  width: 40px;
  margin-bottom: 15px;
}

 .founder-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
  }
  
  .section-heading {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.3;
  }
  
  /* Divider Styles */
  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
    max-width: 600px;
  }
  
  .divider-line {
    height: 2px;
    background: linear-gradient(90deg, rgba(87,188,144,0.1) 0%, rgba(87,188,144,0.8) 50%, rgba(87,188,144,0.1) 100%);
    flex: 1;
  }
  
  .divider-icon {
    margin: 0 20px;
    color: #57bc90;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  
  .divider-icon svg {
    width: 30px;
    height: 30px;
    animation: spin 8s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
.founder-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Founder Content Layout */
  .founder-content {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
  }
  
  .founder-image-col {
    flex: 1;
    position: relative;
  }
  
  .founder-text-col {
    flex: 1;
  }
  
  /* Image Styling */
  .image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(93, 74, 61, 0.1);
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
  }
  
  .deco-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    top: 10%;
    left: -40px;
    opacity: 0.3;
  }
  
  .deco-line {
    width: 80px;
    height: 4px;
    position: absolute;
    bottom: -20px;
    right: -40px;
    transform: rotate(45deg);
  }
  
  /* Quote Card */
  .founder-quote-card {
    padding: 30px;
    border-radius: 8px;
    margin-top: -40px;
    margin-left: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 10px 10px 0px rgba(93, 74, 61, 0.05);
  }
  
  .founder-quote-card svg {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
  
  .founder-quote-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }
  
  .founder-quote-card cite {
    display: block;
    font-style: normal;
    font-weight: 500;
    text-align: right;
  }
  
  /* Text Column Styling */
  .section-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 500;
  }
  
  .founder-text-col h2 {
  color: #5D4A3D;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  }
  
  
.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  /* Timeline Styling */
  .journey-timeline {
    margin: 40px 0;
    position: relative;
    padding-left: 30px;
  }
  
  .journey-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #DDD0C8;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 30px;
  }
  
  .timeline-marker {
    position: absolute;
    left: -30px;
    top: 35px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #F7F5F2;
  }
  
  .timeline-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .timeline-content p {
    margin: 0;
    line-height: 1.6;
  }
  
  /* Philosophy Section */
  .philosophy-section {
    margin-top: 100px;
  }
  
  .philosophy-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .philosophy-header h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .philosophy-header p {
    color: #C2A28A;
  }
  
  .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .philosophy-card {
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 10px 10px 0px rgba(93, 74, 61, 0.05);
  }
  
  .card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(93, 74, 61, 0.1);
    line-height: 1;
  }
  
  .philosophy-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }
  
  .philosophy-card p {
    position: relative;
    z-index: 1;
  }
  
  .card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .founder-content {
      flex-direction: column;
    }
    
    .founder-image-col {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .founder-quote-card {
      margin-left: 0;
      margin-top: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .founder-section {
      padding: 80px 0;
    }
    
    .founder-text-col h2 {
      font-size: 2.2rem;
    }
    
    .philosophy-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .founder-text-col h2 {
      font-size: 1.8rem;
    }
    
    .philosophy-card {
      padding: 30px 20px;
    }
  }


  .group-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.plan-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 2rem;
  max-width: 320px;
  text-align: center;
}
.plan-title {
  font-size: 1.5rem;
  color: #6e3cbc;
}
.plan-sub {
  color: #666;
  margin-bottom: 0.5rem;
}
.plan-days {
  font-weight: 500;
  color: #333;
}
.plan-pricing li,
.pay-amount {
  font-size: 1rem;
  margin-top: 0.5rem;
}
.highlight {
  border: 2px solid #6e3cbc;
}
.reg-fee {
  text-align: center;
  margin: 2rem 0;
  font-size: 1rem;
}
.timing-section {
  margin-top: 3rem;
}
.timing-grid {
  display: flex;
  gap: 3rem;
  justify-content: center;
}
.timing-block ul {
  list-style: none;
  padding: 0;
}

.cert-banner {
  background-color: #faf7f2;
  border-radius: 20px;
  padding: 40px 30px;
  margin: 40px auto 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 700px;
  position: relative;
  display: block; /* Ensure it's a block element */
  overflow: hidden; /* Contain any overflowing content */
}

.cert-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cert-banner img {
  display: block; /* Ensure image is block-level */
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  margin: 0 auto 25px; /* Center the image */
  transition: transform 0.3s ease;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  object-fit: contain; /* Ensure proper image scaling */
}

.cert-banner:hover img {
  transform: scale(1.05);
}

.cert-banner p {
  font-size: 1.15rem;
  color: #444;
  font-family: 'Cormorant Garamond', serif, Georgia, 'Times New Roman', serif; /* Fallback fonts */
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
}

.whatsapp-fixed {
  position: fixed;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 999;
}

.whatsapp-fixed a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  touch-action: manipulation;
}

.whatsapp-label {
  background-color: var(--warm-clay); /* fallback: #D2691E or similar */
  color: white;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
  text-align: center;
}

.whatsapp-icon {
  background-color: var(--sage-green); /* fallback: #4CAF50 or similar */
  color: white;
  font-size: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  touch-action: manipulation;
}

.whatsapp-fixed a:hover .whatsapp-icon {
  transform: scale(1.05);
}

.whatsapp-fixed a:hover .whatsapp-label {
  background-color: var(--deep-brown); /* fallback: #5D4A3D or similar */
}

/* On tap (mobile active state) */
.whatsapp-fixed a:active .whatsapp-icon {
  transform: scale(0.97);
}

.whatsapp-fixed a:active .whatsapp-label {
  background-color: var(--deep-brown);
}

/* Responsive: better scaling for Android and small screens */
@media (max-width: 480px) {
  .whatsapp-fixed {
    right: 10px;
  }

  .whatsapp-label {
    font-size: 12px;
    max-width: 110px;
    padding: 5px 10px;
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
.group-timetable {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.group-timetable:hover {
  transform: scale(1.01);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

.responsive-timetable img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 10px;
}

.cta-center {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #A8BBA8;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cta-button:hover {
  background-color: #5D4A3D;
}
.corporate-cards-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 30px;
}

.corporate-card {
  background-color: #F7F5F2;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.corporate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.corporate-card i {
  font-size: 36px;
  color: #A8BBA8;
  margin-bottom: 15px;
}

.corporate-card h4 {
  font-size: 18px;
  color: #5D4A3D;
  margin-bottom: 10px;
}

.corporate-card p {
  color: #5D4A3D;
  font-size: 15px;
  line-height: 1.6;
}

.coming-soon-section {
  margin: 100px 0;
  text-align: center;
}

.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.coming-soon-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop shows only above 768px */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

.cta-center {
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #A8BBA8;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #8aa28a;
}





