    /* =====================================================
   CSS VARIABLES & ROOT STYLES
   ===================================================== */
:root {
  /* Color Palette */
  --cream: #FFF0D4;
  --golden-yellow: #EE9B00;
  --deep-saffron: #CA6702;
  --classical-red: #AE2012;
  --maroon: #6D191D;
  --white: #FFFFFF;
  --text-dark: #2D2D2D;
  --black: #000000;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-heading: 'Albert Sans', sans-serif;
  --font-body: 'Baloo 2', cursive;
}


/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: transparent;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}


/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}


/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.btn-white {
  background: var(--cream);
  color: var(--classical-red);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: var(--white);
  color: var(--maroon);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--classical-red), var(--maroon));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--maroon), var(--classical-red));
}

.btn-secondary {
  background: var(--golden-yellow);
  color: var(--maroon);
}

.btn-secondary:hover {
  background: var(--deep-saffron);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--golden-yellow);
  color: var(--golden-yellow);
}

.btn-outline:hover {
  background: var(--golden-yellow);
  color: var(--maroon);
}


/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
    padding-top: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: var(--black);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title p {
  color: var(--black);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--golden-yellow);
  padding: 15px 0;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--classical-red);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--maroon);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-no-border,
.nav-no-border:hover,
.nav-no-border:focus,
.nav-no-border:active {
  text-decoration: none !important;
}

.nav-no-border::after {
  display: none !important;
  content: none !important;
}
/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--golden-yellow);
  padding: 20px;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-links a {
  display: block;
  padding: 12px 20px;
  color: var(--maroon);
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  background: rgba(109, 25, 29, 0.1);
}

/* =====================================================
   DESKTOP DROPDOWN
   ===================================================== */
.nav-links {
  align-items: center;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  list-style: none;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--maroon);
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(109, 25, 29, 0.08);
}

/* =====================================================
   MOBILE DROPDOWN
   ===================================================== */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  width: 100%;
  border: none;
  background: none;
  padding: 12px 20px;
  text-align: left;
  color: var(--maroon);
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.mobile-dropdown-toggle:hover {
  background: rgba(109, 25, 29, 0.1);
}

.dropdown-icon {
  font-size: 18px;
  line-height: 1;
}

.mobile-submenu {
  list-style: none;
  display: none;
  flex-direction: column;
  margin-top: 8px;
  margin-left: 15px;
  gap: 8px;
}

.mobile-dropdown.open .mobile-submenu {
  display: flex;
}

.mobile-submenu a {
  padding: 10px 20px;
  background: rgba(109, 25, 29, 0.06);
  border-radius: 8px;
}
/* =====================================================
   HERO SECTION - CAROUSEL
   ===================================================== */
   .hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4)
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 120px 90px 0;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
}

#heroHeading {
  color: var(--white);
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 50px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-white {
  background-color: var(--cream);
  color: var(--classical-red);
  font-size: 25px;
  padding: 14px 30px;
  border-radius: 30px;
}


/* ========== Tablet ========== */
@media (max-width: 992px) {
  .hero-slide .hero-content {
    max-width: 700px;
    padding: 100px 60px 0;
  }

  #heroHeading {
    font-size: 40px;
  }

  .hero-buttons .btn-white {
    font-size: 20px;
    padding: 12px 26px;
  }
}


/* ========== Mobile ========== */
@media (max-width: 768px) {
  .hero-slide .hero-content {
    max-width: 100%;
    padding: 90px 24px 0;
    align-items: flex-start;
  }

  #heroHeading {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .hero-buttons .btn-white {
    font-size: 18px;
    padding: 12px 22px;
    border-radius: 24px;
  }
}


/* ========== Small Mobile ========== */
@media (max-width: 480px) {
  .hero-slide .hero-content {
    padding: 80px 18px 0;
  }

  #heroHeading {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-buttons .btn-white {
    font-size: 16px;
    padding: 10px 18px;
    width: auto;
  }
}
/* about banner page*/
/* ABOUT PAGE BANNER FIX */

.about-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;

  width: 100%;        /* ✅ ensure full width */
}



.about-banner .absolute.inset-0 {
  position: absolute;
  inset: 0;
}

/* OLD IMAGE STYLING (kept for reference)
.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/

/* UPDATED IMAGE STYLING */
.about-banner img {
  position: absolute;
  inset: 0;
  margin-top:70px;
  width: 100%;
  height: 100%;
  

  object-fit: cover;

  /* OLD POSITION (caused cutting issue)
  object-position: center right;
  */

  object-position: 100% 65%; /* improved positioning */
  
}

.about-banner .relative {
  position: relative;
  z-index: 2;

  /* OLD SPACING (kept)
  padding: 0 90px;
  */

  padding: 0 90px;
}

/* GALLERY BANNER */

.gallery-banner {
  position: relative;
  min-height: 500px; /* slightly smaller than about */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* background container */
.gallery-banner .absolute.inset-0 {
  position: absolute;
  inset: 0;
}

/* OLD (Tailwind handled)
.gallery-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/

/* UPDATED IMAGE CONTROL */
.gallery-banner img {
  position: absolute;
  inset: 0;
  margin-top:60px;
  width: 100%;
  height: 100%;

  object-fit: cover;

  /* adjust based on image */
  object-position: center 60%;
}

/* content */
.gallery-banner .relative {
  position: relative;
  z-index: 2;
  padding: 0 90px;
}

/* CONTACT PAGE BANNER */

.contact-banner {
  position: relative;
  min-height: 500px; /* 🔧 change height here */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* background layer */
.contact-banner .absolute.inset-0 {
  position: absolute;
  inset: 0;
}

/* OLD IMAGE STYLE (reference)
.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/

/* UPDATED IMAGE CONTROL */
.contact-banner img {
  position: absolute;
  inset: 0;
  margin-top:60px;
  width: 100%;
  height: 100%;

  object-fit: cover;

  /* 🔧 CONTROL IMAGE POSITION HERE */
 object-position: 85% 60%;
}

/* content */
.contact-banner .relative {
  position: relative;
  z-index: 2;
  padding: 0 90px;
}

/* SAMVAAD PAGE BANNER */

.samvaad-banner {
  position: relative;
  min-height: 500px; /* 🔧 adjust height here */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* background layer */
.samvaad-banner .absolute.inset-0 {
  position: absolute;
  inset: 0;
}

/* OLD IMAGE STYLE (reference)
.samvaad-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/

/* UPDATED IMAGE CONTROL */
.samvaad-banner img {
  position: absolute;
  inset: 0;
  margin-top:70px;
  width: 100%;
  height: 100%;

  object-fit: cover;

  /* 🔧 adjust image position here */
  object-position: 85% 60%;

  /* OLD (avoid using margin for alignment)
  margin-top: 60px;
  */
}

/* content */
.samvaad-banner .relative {
  position: relative;
  z-index: 2;
  padding: 0 90px;
}

/* Carousel Navigation Dots */
.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--golden-yellow);
  border-color: var(--white);
  transform: scale(1.2);
}

/* Carousel Arrow Buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-10%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
  background: var(--golden-yellow);
  border-color: var(--golden-yellow);
  color: var(--maroon);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-prev {
  left: 20px;
}

.carousel-arrow-next {
  right: 20px;
}



/* =====================================================
   HERO SECTION (Original)
   ===================================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 40px 0;
}

.hero-subtitle {
  display: inline-block;
  background: var(--golden-yellow);
  color: var(--maroon);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dancer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dancer-silhouette {
  width: 100%;
  max-width: 400px;
  height: 80%;
  position: relative;
}

.dancer-silhouette svg {
  width: 100%;
  height: 100%;
  fill: var(--golden-yellow);
  opacity: 0.15;
}

/* Decorative Elements */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  background: var(--golden-yellow);
  opacity: 0.1;
}

.hero-decor-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: 20%;
}

.hero-decor-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 10%;
}


/* =====================================================
   STATS SECTION
   ===================================================== */
.stats {
  background: var(--white);
  padding: 60px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-card {
  padding: 20px 30px;
  text-align: center;
  transition: var(--transition);
}

.stat-image {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--golden-yellow), var(--deep-saffron));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--maroon);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-dark);
  opacity: 0.7;
  font-weight: 500;
}

/* ==================================================
    Video cover section 
    ====================================================*/
.kathak-video-banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.kathak-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.kathak-banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
}

/* PLAY BUTTON */
.kathak-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 80px;
  height: 80px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}

.kathak-play-btn:hover {
  background: #d4a017;
  color: #000;
  transform: translate(-50%, -50%) scale(1.1);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
  background: var(--white);
  /*padding-bottom: 40px;*/
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.about-second{
    padding-top: 60px;
    padding-left: 40px;
    justify-content: center;
}

.about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.founder-placeholder {
  font-size: 8rem;
  opacity: 0.3;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--golden-yellow);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.85rem;
  color: var(--maroon);
  font-weight: 600;
}

.about-content h2 {
  font-family: var(--font-body);
  font-size: 30px;
  color: var(--maroon);
  margin-bottom: 24px;
}

.about-content h3 {
  color: var(--deep-saffron);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--black);
}

.founder-title-span {
  color: var(--maroon);
  font-weight: 500;
}

.subtitle{
  margin-bottom: 40px;
}

.laasya-section {
  margin-top: 60px;
  align-items: center; /* ensures vertical alignment */
}

/* control spacing only here */
.laasya-section .about-content {
  padding-right: 20px;
}

/* image control only for this section */
.laasya-section .about-image img {
  max-width: 28.2rem;   /* rem as you wanted */
  width: 100%;
  height: auto;
}

/* =====================================================
   ONLINE & OFFLINE CLASSES SECTION
   ===================================================== */
/* ========================= */

.kathak-offer-section {
  background: #f4e7d8;
  padding: 40px 60px;
}
.kathak-offer-internalsection{
  padding: 00px 40px;
}

.kathak-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.kathak-text-block {
  width: 50%;
  text-align: left;
}

.kathak-heading {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 10px;
}

.kathak-description {
  text-align: left;
  font-size: 20px;
  line-height: 1.6;
}

.kathak-swiper {
  width: 50%;
}

.kathak-card {
  height: fit-content;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.kathak-video {
  width: 100%;
  border-radius: 10px;
}

.kathak-title {
  margin-top: 10px;
  font-size: 16px;
}

.kathak-btn {
  background: #7b1e1e;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  margin-top: 10px;
  cursor: pointer;
}

/* Custom arrows */
.kathak-next,
.kathak-prev {
  color: #7b1e1e;
}
.kathak-video-wrapper {
  position: relative;
  width: 100%;
}

.kathak-video {
  width: 100%;
  border-radius: 10px;
  
}

/* PLAY BUTTON OVERLAY */
.kathak-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 24px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER EFFECT */
.kathak-video-wrapper:hover .kathak-play-overlay {
  background: rgba(123, 30, 30, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}


/* =====================================================
   WHY CHOOSE US SECTION (Grid)
   ===================================================== */
.why-section {
  padding: 80px 8%;
  background-color: #FFFBF4;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.text-card {
  background: #ead9c3;
  padding: 40px 30px;
}

.text-card h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: var(--maroon);
  font-weight: 600;
  font-family: var(--font-body);
}

.text-card p {
  margin: 0;
  font-size: 16px;
  color: var(--maroon);
  line-height: 1.6;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card {
  height: auto;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(150, 0, 0, 0.85), rgba(0, 0, 0, 0.1));
  color: white;
}

.feature-overlay h3 {
  margin: 0;
  font-size: 22px;
}

.feature-overlay p {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.small-image {
  height: auto;
}

.small-image img {
  height: 100%;
}

.right-text {
  background: #e7d8cf;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: 450px;
  }
}


/* =====================================================
  Examination SECTION
   ===================================================== */ 

   .kathak-exam-section {
  background: #b91c1c;
  color: #fff;
  padding: 60px;
  text-align: center;
}

.kathak-exam-title {
  font-size: 35px;
  margin-bottom: 10px;
  font-weight: 700;
}

.kathak-exam-subtitle {
  margin-bottom: 40px;
}

.kathak-exam-container {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  padding: 0 40px;
}

.kathak-exam-left {
  flex: 60%;
}

.kathak-exam-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.kathak-exam-item h4{
  font-size : 24px;
  margin-bottom: 20px;
}

.kathak-exam-item p {
  font-size: 18px;
  line-height: 1.6;
}

.kathak-icon {
  font-size: 28px;
  color: #fff;
  min-width: 30px;
  margin-top: 5px;
}

.kathak-exam-right {
  flex: 40%;
  text-align: center;
}

.kathak-exam-right img {
  width: auto;
  border-radius: 10px;
}

.exam-offer-section{
  background: transparent !important;
  padding: 0px 60px;
}


/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonial-section {
  padding: 80px 8%;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 700;
}

.testimonial-section p {
  color: #777;
  font-size: 18px;
  margin-bottom: 30px;
}

.filter-buttons {
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  margin: 0 8px;
  font-size: 16px;
  background: #e8e0d6;
  transition: 0.3s;
}

.filter-btn.active {
  background: #7b1d1d;
  color: #fff;
}

.testimonialsmySwiper .swiper {
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.testimonial-card {
  width: 320px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-card{
  overflow:hidden;
}

.video-box{
  background:#000;
  line-height:0;
}

.testimonial-info {
  padding: 20px;
  background: #f0e2d3;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 14px;
}

.testimonial-info span {
  font-size: 12px;
  color: #777;
}

.swiper-pagination-bullet {
  background: #d4b06a;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #7b1d1d;
  opacity: 1;
}

.hidden {
  display: none ;
}

.videoSwiper{
    padding-bottom: 40px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 30px;
  }

  .filter-btn {
    width: 90%;
    max-width: 320px;
    margin: 0;
    font-size: 15px;
    padding: 12px 20px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .filter-buttons {
    gap: 10px;
    margin-bottom: 25px;
  }

  .filter-btn {
    width: 100%;
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 20px;
  }
}
/* =====================================================
   CONTACT INFO SECTION
   ===================================================== */
.contact-info-section {
  background: var(--white);
  padding: 80px 0;
  position: relative;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--maroon);
}

.contact-details h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 12px;
}

.contact-details p {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-info-section{
        padding: 20px;
    }
  .contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}


/* =====================================================
   CONTACT FORM SECTION
   ===================================================== */
.contact-form-section {
  background: var(--white);
  padding: 20px 0;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.contact-form-section .section-title h2 {
  color: var(--black);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.contact-form-section .section-title p {
  color: var(--text-dark);
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background-color: #F7E5DD;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  border: 2px solid transparent;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(109, 25, 29, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236D191D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

.form-group select option {
  background: var(--white);
  color: var(--maroon);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 10px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px 50px;
  font-size: 18px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-form-section .section-title h2 {
    font-size: 28px;
  }

  .contact-form-section .section-title p {
    font-size: 16px;
  }
}




/* =====================================================
   MAP SECTION
   ===================================================== */
.contact-map-section {
  background: var(--white);
  padding: 0 0 80px 0;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-wrapper iframe {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}


/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  position: relative;
  background: url('./images/CTA-banner.jpg') center center no-repeat; 
  background-size: cover;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.cta-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--cream);
}

.cta-content p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 40px;
}

.cta-btn {
  background: #f3e3c9;
  color: #b71c1c;
  border: none;
  padding: 18px 50px;
  font-size: 18px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 30px;
  }

  .cta-btn {
    padding: 14px 35px;
    font-size: 16px;
  }

  .cta-section {
    padding: 100px 20px;
  }
}


/* =====================================================
   FOOTER
   ===================================================== */
.laasya-footer {
  background: var(--golden-yellow);
  padding: 70px 8% 30px;
  color: #fff;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 18px;
  line-height: 1.6;
  font-family: var(--font-body);
  max-width: 280px;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 18px;
  transition: 0.7s ease;
}

.footer-column a:hover {
  color: var(--maroon);
  text-decoration: underline;
  transform: translateX(5px);
  transition: var(--transition);
}

.footer-column p {
  margin-bottom: 10px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
  background: #f4e4c7;
  border-radius: 30px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--maroon);
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--maroon);
}

.newsletter-form button {
  background: #d07c00;
  border: none;
  padding: 0 20px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #b96f00;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 40px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-left: 12px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #e39a00;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}


/* =====================================================
   ABOUT PAGE BANNER
   ===================================================== */
/* ===== SECTION ===== */
/* ===== ABOUT SECTION ===== */
.about {
  width: 100%;
  padding: 20px 8%;
}

/* ===== GRID ===== */
.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

/* FIRST BLOCK (Image LEFT, Text RIGHT) */
.about-grid .about-image {
  order: 1;
}

.about-grid .about-content {
  order: 2;
}

/* SECOND BLOCK (Text LEFT, Image RIGHT) */
.about-grid.reverse .about-content {
  order: 1;
}

.about-grid.reverse .about-image {
  order: 2;
}

/* ===== COMMON ===== */
.about-content,
.about-image {
  flex: 1;
}

.about-content {
  max-width: 550px;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #6D191D;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 15px;
}

/* ===== IMAGE ===== */
.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 385px;
  height: auto;
  display: block;
  margin-top: 1.8rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .about {
    padding: 60px 20px;
  }

  .about-grid,
  .about-grid.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }
  .testimonial-section{
      padding: 10%;
  }
}


/* =====================================================
   FOUNDER PERFORMANCE VIDEO GALLERY
   ===================================================== */
.founder-performance {
  background: #efe1c7;
  padding: 80px 0;
  text-align: center;
}


.founderSwiper {
  width: 100%;
  padding-bottom: 40px;
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--golden-yellow);
  background: rgba(109, 25, 29, 0.5);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--golden-yellow);
  color: var(--maroon);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
}


/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
  padding: 80px 10%;
  background: var(--white);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.faq-left h2 {
  font-size: 50px;
  font-weight: 800;
  font-family: var(--font-body);
  margin: 15px 0;
  color: var(--black);
}

.faq-left p {
  color: #555;
  line-height: 1.6;
  font-size: 18px;
  color: var(--black);
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #F7E5DD;
  border-radius: 20px;
  font-size: 20px;
  color: var(--maroon);
  font-weight: 600;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #F7E5DD;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 20px;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--maroon);
}

.faq-answer {
  padding: 0 20px 18px 20px;
  display: none;
  font-size: 16px;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active span {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-left h2 {
    font-size: 32px;
  }
}

/* =================================================
    SAWAAND SECTION 
    ================================== */
    
    
/* =====================================================
   DISCOVER SECTION
   ===================================================== */
.discover-section {
  background: var(--white);
  width: 100%;
  padding: 40px;
  align-items: center;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.header-left h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
  font-family: var(--font-heading);
}

.header-right {
  max-width: 420px;
}

.header-right p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 18px;
}

.top-unlock-btn {
  background: #7b1d1d;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.top-unlock-btn:hover {
  background: #5e1414;
}

.course-section {
  display: flex;
  gap: 35px;
  align-items: flex-start;
}

.left-content {
  flex: 3;
}

.left-content h2 {
  margin-top: 25px;
  font-size: 24px;
  font-weight: 600;
}

.left-content p {
  margin-top: 8px;
  color: var(--text-dark);
  font-size: 15px;
}

.right-sidebar {
  flex: 1;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.right-sidebar::-webkit-scrollbar {
  width: 7px;
}

.right-sidebar::-webkit-scrollbar-thumb {
  background: var(--cream);
  border-radius: 10px;
}

.right-sidebar::-webkit-scrollbar-track {
  background: rgb(255, 240, 212, 0.5);
}

.video-item {
  position: relative;
  margin-bottom: 18px;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.video-item img {
  width: 100%;
  display: block;
  filter: brightness(65%);
  transition: 0.3s;
}

.video-item:hover img {
  transform: scale(1.05);
  filter: brightness(50%);
}

.lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.65);
  padding: 10px;
  border-radius: 50%;
}

/* =====================================================
   VIDEO POPUP MODAL
   ===================================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 35px 30px;
  border-radius: 14px;
  text-align: center;
  width: 340px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.unlock-btn {
  background: #7b1d1d;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.unlock-btn:hover {
  background: #5e1414;
}

.close-btn {
  margin-top: 15px;
  cursor: pointer;
  color: #888;
  font-size: 14px;
}
/* =====================================================
   COMPLETE RESPONSIVE DESIGN SYSTEM
   KEEP DESKTOP AS IT IS
   ===================================================== */


/* =====================================================
   1400px
   ===================================================== */
@media (max-width: 1400px) {

  .container {
    max-width: 1140px;
  }

  .hero-slide .hero-content {
    padding: 120px 70px 0;
  }

  #heroHeading {
    font-size: 46px;
  }
}


/* =====================================================
   1200px
   ===================================================== */
@media (max-width: 1200px) {

  .container {
    max-width: 100%;
    padding: 0 24px;
  }

  .hero-slide .hero-content {
    max-width: 700px;
    padding: 110px 50px 0;
  }

  #heroHeading {
    font-size: 42px;
  }

  .about-grid {
    gap: 40px;
  }

  .why-grid {
    gap: 20px;
  }

  .footer-container {
    gap: 30px;
  }
}


/* =====================================================
   1024px
   ===================================================== */
@media (max-width: 1024px) {

  /* HEADER */
  .nav {
    gap: 24px;
  }

  .nav-links {
    gap: 20px;
  }

  /* HERO */
  .hero {
    min-height: 80vh;
  }

  .hero-slide .hero-content {
    padding: 100px 40px 0;
  }

  #heroHeading {
    font-size: 38px;
  }

  /* ABOUT */
  .about-grid {
    gap: 40px;
    align-items: center;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-content p {
    font-size: 16px;
  }

  /* WHY */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* OFFER */
  .kathak-container {
    flex-direction: column;
  }

  .kathak-text-block,
  .kathak-swiper {
    width: 100%;
  }

  /* EXAM */
  .kathak-exam-container {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .kathak-exam-left,
  .kathak-exam-right {
    width: 100%;
  }

  .kathak-exam-item {
    text-align: left;
  }

  /* CONTACT */
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}


/* =====================================================
   768px
   ===================================================== */
@media (max-width: 768px) {

  /* HEADER */
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header {
    padding: 12px 0;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  /* MOBILE NAV */
  .mobile-nav {
    top: 72px;
  }

  /* HERO */
  .hero {
    min-height: 50vh;
    margin-top: 70px;
  }

  .hero-slide .hero-content {
    padding: 90px 24px 0;
    max-width: 100%;
  }

  #heroHeading {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-buttons {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-buttons .btn-white {
    font-size: 17px;
    padding: 12px 20px;
  }

  /* CAROUSEL */
  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .carousel-arrow-prev {
    display: none;
  }

  .carousel-arrow-next {
    display: none;
  }

  /* SECTION */
  .section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  /* ABOUT */
  .about {
    padding: 50px 20px;
  }

  .about-grid,
  .about-grid.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 20px;
    padding: 0;
  }

  .about-content {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-image img {
    max-width: 320px;
  }

  /* STATS */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 20px;
  }

  /* WHY SECTION */
  .feature-card {
    height: auto;
  }

  /* TESTIMONIAL */
  .testimonial-section h2 {
    font-size: 32px;
  }

  /* DISCOVER */
  .top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .course-section {
    flex-direction: column;
  }

  .left-content,
  .right-sidebar {
    width: 100%;
  }

  .right-sidebar {
    max-height: unset;
    overflow-y: visible;
  }

  /* FAQ */
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left h2 {
    font-size: 34px;
  }

  /* CONTACT */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-card {
    padding: 20px;
  }

  /* FORM */
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 32px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .footer-social {
    margin-top: 10px;
  }
}

.swiper-wrapper{
    justify-content: space-evenly;
}
/* =====================================================
   576px
   ===================================================== */
@media (max-width: 576px) {

  .container {
    padding: 0 18px;
  }

  /* HERO */
  .hero-slide .hero-content {
    padding: 20px 20px 0;
  }

  #heroHeading {
    font-size: 28px;
  }
  #heroSubtext{
      font-size:16px;
      line-height: 1.4;
  }

  .hero-buttons {
    flex-direction: column;
    width: fit-content;
  }

  .hero-buttons .btn {
    width: 100%;
  }
  
  .stats{
      padding: 20px;
  }
  /* BUTTONS */
  .btn {
    padding: 12px 22px;
    font-size: 15px;
  }

  /* TITLES */
  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 15px;
  }

  /* ABOUT */
  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* BANNERS */
  .about-banner,
  .gallery-banner,
  .contact-banner,
  .samvaad-banner {
    min-height: 320px;
  }

  .about-banner .relative,
  .gallery-banner .relative,
  .contact-banner .relative,
  .samvaad-banner .relative {
    padding: 0 20px;
  }

  /* EXAM */
  .kathak-exam-section {
    padding: 50px 20px;
  }

  .kathak-exam-title {
    font-size: 28px;
  }

  .kathak-exam-item h4 {
    font-size: 20px;
  }

  .kathak-exam-item p {
    font-size: 15px;
  }

  /* CONTACT */
  .contact-details h3 {
    font-size: 24px;
  }

  .contact-details p {
    font-size: 16px;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-btn {
    width: auto;
  }

  /* FOOTER */
  .newsletter-form {
    flex-direction: column;
    border-radius: 16px;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
    padding: 14px;
  }
}


/* =====================================================
   400px
   ===================================================== */
@media (max-width: 400px) {

  #heroHeading {
    font-size: 24px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .faq-left h2 {
    font-size: 28px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 18px;
  }

  .hero-buttons .btn-white {
    font-size: 15px;
  }
}
/* =====================================================
   TABLET RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {

  .kathak-offer-section {
    padding: 50px 30px;
  }

  .kathak-offer-internalsection {
    padding: 0;
  }

  .kathak-container {
    flex-direction: column;
    gap: 40px;
  }

  .kathak-text-block,
  .kathak-swiper {
    width: 100%;
  }

  .kathak-text-block {
    text-align: center;
  }

  .kathak-heading {
    font-size: 32px;
  }

  .kathak-description {
    font-size: 18px;
    text-align: center;
  }
}


/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {

  .kathak-offer-section {
    padding: 40px 20px;
  }

  .kathak-container {
    gap: 30px;
  }

  .kathak-heading {
    font-size: 28px;
  }

  .kathak-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .kathak-card {
    padding: 12px;
  }

  .kathak-title {
    font-size: 15px;
  }

  .kathak-btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
  }

  .kathak-play-overlay {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */
@media (max-width: 480px) {

  .kathak-offer-section {
    padding: 35px 16px;
  }

  .kathak-heading {
    font-size: 24px;
  }

  .kathak-description {
    font-size: 15px;
  }

  .kathak-card {
    border-radius: 10px;
    padding: 10px;
  }

  .kathak-title {
    font-size: 14px;
  }

  .kathak-play-overlay {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
/* ============================= */
/* MOBILE RESPONSIVE STYLING */
/* ============================= */

@media (max-width: 768px) {

  .founder-performance {
    padding: 40px 20px;
  }

  .founder-performance h2 {
    font-size: 34px !important;
    line-height: 1.2;
    text-align: center;
  }

  .founder-performance .subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .founder-performance div[style*="gap:120px"] {
    gap: 40px !important;
  }

  .founder-performance div[style*="gap:60px"] {
    gap: 30px !important;
    width: 100%;
  }

  .founder-performance div[style*="width:420px"] {
    width: 100% !important;
    max-width: 100%;
  }

  .founder-performance img {
    border-radius: 14px;
  }

  .founder-performance button {
    width: 100%;
    max-width: 220px;
    font-size: 15px;
    padding: 12px 20px !important;
  }
  .gallery-item img, .gallery-item video{
      height: auto;
  }

}

/* EXTRA SMALL DEVICES */

@media (max-width: 480px) {

  .founder-performance h2 {
    font-size: 28px !important;
  }

  .founder-performance .subtitle {
    font-size: 14px;
  }

  .founder-performance button {
    font-size: 14px;
    padding: 10px 18px !important;
  }
}

/* ============================= */
/* MOBILE RESPONSIVE STYLING */
/* ============================= */

@media (max-width: 768px) {

  .discover-section {
    padding: 30px 20px;
  }

  .top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
  }

  .header-left h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .header-right {
    max-width: 100%;
  }

  .header-right p {
    font-size: 14px;
    line-height: 1.7;
  }

  .top-unlock-btn {
    width: 100%;
    max-width: 240px;
    text-align: center;
  }

  .course-section {
    flex-direction: column;
    gap: 30px;
  }

  .left-content,
  .right-sidebar {
    width: 100%;
  }

  .left-content h2 {
    font-size: 22px;
    margin-top: 20px;
  }

  .left-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .right-sidebar {
    max-height: unset;
    overflow-y: visible;
    padding-right: 0;
  }

  .video-item {
    margin-bottom: 16px;
  }

  .lock-icon {
    font-size: 18px;
    padding: 9px;
  }

}

/* EXTRA SMALL DEVICES */

@media (max-width: 480px) {

  .discover-section {
    padding: 25px 15px;
  }

  .header-left h1 {
    font-size: 26px;
  }

  .header-right p {
    font-size: 13px;
  }

  .top-unlock-btn {
    font-size: 13px;
    padding: 10px 18px;
  }

  .left-content h2 {
    font-size: 20px;
  }

  .left-content p {
    font-size: 13px;
  }

  .lock-icon {
    font-size: 16px;
    padding: 8px;
  }

}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* MAIN WRAPPER */
.dance-video-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

/* CARD */
.dance-video-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
}


/* VIDEO */
.dance-video-player {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* TITLE */
.dance-video-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 16px 0 12px;
}

/* BUTTON */
.dance-watch-btn {
  background:  #7b1e1e;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dance-watch-btn:hover {
  background: #fff;
  color: #7b1e1e;
  border: 2px solid #7b1e1e;
}

/* TABLET RESPONSIVE */
@media (max-width: 768px) {
  .dance-video-wrapper {
    grid-template-columns: 1fr;
  }
  .mobiletestimonial-video-wrapper{
      display: grid;
      gap: 20px;
  padding: 20px;
      grid-template-columns: repeat(2, 1fr);
  }

  .dance-video-player {
    height: 240px;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 480px) {
  .dance-video-wrapper {
    padding: 10px;
    gap: 16px;
  }

  .dance-video-player {
    height: 210px;
  }

  .dance-video-title {
    font-size: 18px;
  }

  .dance-watch-btn {
    width: 85%;
    padding: 12px;
    font-size: 14px;
  }
}
