/* START: Fully preserved and mobile-optimized CSS - Chunk 1 */

/* ==== GENERAL RESET ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding-top: 90px;
    background-color: #ffffff;
}

/* ==== NAVBAR ==== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgb(238, 238, 204);
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 10px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==== LOGO ==== */
.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

/* ==== NAV LINKS ==== */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

/* ==== LOGIN BUTTON ==== */
.login-btn {
    background-color: #d4af37;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #1b1811;
}

/* ==== MENU TOGGLE BUTTON ==== */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    margin-left: auto;
    z-index: 1001;
    background-color: transparent;
    border: none;
}

/* ==== BANNER SECTION ==== */
.banner {
    position: relative;
    background-image: url('banner img1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 10px;
}

.typing-text {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cursor {
    display: inline-block;
    color: white;
    font-weight: bold;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.banner-desc {
    font-size: 18px;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 30px;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.banner-btn {
    display: inline-block;
    background-color: #d4af37;
    color: white;
    padding: 14px 32px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.explore-btn {
    background-color: #d4af37;
    color: white;
    font-weight: bold;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: white;
    color: #191710;
    border-color: #28251b;
}

.banner-btn:hover {
    background-color: #d4af37;
}

.banner-btn.dark {
    background-color: white;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.banner-btn.dark:hover {
    background-color: #222;
    color: white;
    border-color: #fff;
}

#typed-text {
    color: #d4af37;
}

/* START: Fully preserved and mobile-optimized CSS - Chunk 2 */

/* === INLINE STATS SECTION INSIDE BANNER === */
.stats-inline {
    margin-top: 40px;
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    padding: 30px 50px;
    border-radius: 20px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box {
    text-align: center;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-box h2 {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 16px;
    color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-inline {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-box h2 {
        font-size: 24px;
    }

    .stat-box p {
        font-size: 14px;
    }
}

/* ===== Our Courses Section ===== */
.our-courses {
    padding: 60px 20px 100px;
    background-color: #eae6d8;
    text-align: center;
}

.our-courses .section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #191710;
}

.our-courses .section-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.swiper {
    width: 100%;
    padding-bottom: 40px;
}

.swiper-slide.course-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s ease;
    height: auto;
}

.course-card h3 {
    padding: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: gold;
    color: black;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #ffcc00;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.course-card {
    background: #1b1a19;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.course-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.course-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
    border-bottom: 1px solid #eee;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px 0;
    margin-top: 10px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.buy-btn {
    background-color: #d4af37;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #bfa034;
}

/* START: Fully preserved and mobile-optimized CSS - Chunk 3 */

/* === VASTU SECTION === */
.vastu-section {
    background-color: #fdfaf3;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    padding-top: 60px;
    padding-left: 5%;
    padding-right: 5%;
}

.vastu-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.vastu-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.vastuSwiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    height: auto;
}

.vastuSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vastuSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.vastu-content {
    flex: 1;
    min-width: 280px;
    color: #1c1b18;
    text-align: center;
}

.vastu-content .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #191710;
}

.vastu-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.vastu-btn {
    display: inline-block;
    background-color: #d4af37;
    color: white;
    padding: 12px 24px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 20px auto 0;
    text-align: center;
}

.vastu-btn:hover {
    background-color: #b99625;
}

/* === Fix for Vastu Swiper fade effect === */
.vastuSwiper .swiper-wrapper {
    display: flex;
}

.vastuSwiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vastuSwiper .swiper-slide-active {
    opacity: 1;
    z-index: 2;
}


/* START: Fully preserved and mobile-optimized CSS - Chunk 4 */

/* ===== Mobile Responsiveness Fixes ===== */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 15px;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    z-index: 1100;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgb(238, 238, 204);
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 15px 20px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 18px;
  }

  .login-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .banner-content {
    padding: 20px;
  }

  .main-heading {
    font-size: 28px;
    text-align: center;
  }

  .typing-text {
    font-size: 20px;
  }

  .banner-desc {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .banner-btn {
    width: 100%;
  }

  .stats-inline {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .swiper-slide.course-card {
    padding: 15px;
  }

  .course-footer {
    flex-direction: column;
    gap: 10px;
  }

  .vastu-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .vastu-content {
    padding: 0 15px;
    text-align: center;
  }

  .vastu-content p {
    font-size: 16px;
  }

  .vastu-btn {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .vastuSwiper .swiper-wrapper {
    width: 100% !important;
    transform: none !important;
  }

  .vastuSwiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}

.mySwiper {
  height: auto;
}

.swiper-slide {
  height: auto !important;
}

.choose-us-section {
 background-color: #f8f5ec;/* Matches light theme */
  padding: 60px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  
}

.choose-us-heading {
  font-size: 42px;
  color: #1f2c4c; /* Navy Blue */
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* REMOVE gradient if present: */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.choose-us-heading .underline {
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d4af37; /* Soft gold */
  border-radius: 2px;
  margin: 16px auto 0;
}

.choose-us-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

.choose-card {
  background-color: #fff;
  color: #222;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 16px 24px;
  width: 90%;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
}

.choose-card:hover {
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6); /* soft golden glow */
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.choose-icon {
  background-color:#FAF8F0;;
  color: #C6A144;
  font-size: 24px;
  padding: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.choose-card p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
@media (min-width: 768px) {
  .choose-us-cards {
    flex-direction: row;       /* Horizontal layout */
    justify-content: center;
    gap: 30px;
  }

  .choose-card {
    width: 100%;
    max-width: 320px;
    height: 100%;
  }
}
.choose-subtitle {
  color: #555;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 40px;
}
.curve-divider {
  line-height: 0;
  overflow: hidden;
}

.curve-divider svg {
  display: block;
  width: 100%;
  height: 5px; /* ↓ reduce from 80px to 40px */
}
@media (max-width: 768px) {
  /* Hide nav links initially on mobile */
  .nav-links {
    position: fixed;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 20px;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
    z-index: 999;
  }

  /* When menu is active */
  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  .login-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  /* Show hamburger toggle button */
  .menu-toggle {
    display: block;
  }
    .mySwiper .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }

  .mySwiper .swiper-slide {
    flex-shrink: 0;
    width: auto;
  }

}
/* ==== NAV OVERLAY ==== */
/* Overlay that dims background */
/* === BASE NAV-LINKS STYLE === */
/* === OVERLAY === */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
  display: none;
}

.nav-overlay.active {
  display: block;
}

/* === BASE NAV LINKS === */
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

/* === TOGGLE BUTTON === */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  background-color: transparent;
}

/* === MOBILE MENU === */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -60%;
    height: 100vh;
    width: 60%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 18px;
    transition: left 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }
}
.consultation-section {
  background-color: #fdfaf3;
  padding: 80px 20px;
}

.consultation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.consultation-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.consultation-heading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #000;
}

.consultation-heading .highlight {
  color: #d4af37;
}

.line-break {
  display: none;
}

@media (max-width: 768px) {
  .consultation-heading {
    font-size: 24px;
    padding: 0 10px;
  }

  .line-break {
    display: block;
  }
}

.consultation-heading .highlight {
  color: #d4af37;
}


.consultation-description {
  font-size: 18px;
  color: #444;
  margin: 25px 0;
  line-height: 1.6;
}

.consultation-btn {
  background-color: #c6a144;
  color: white;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.consultation-btn:hover {
  background-color: #a78b2a;
}

.consultation-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.consultation-image img {
  max-width: 100%;
  height: auto;
  width: 80%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
}


/* Responsive */
@media (max-width: 768px) {
  .consultation-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .consultation-heading {
    font-size: 28px;
  }

  .consultation-description {
    font-size: 16px;
  }

  .consultation-btn {
    font-size: 16px;
  }
}

.consult-section {
  padding: 50px 20px;
  background-color: #fdfaf3;
  text-align: center;
}

.consult-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1b1a19;
  line-height: 1.4;
}

.consult-heading .gold {
  color: #d4af37;
}

@media (max-width: 768px) {
  .consult-heading {
    font-size: 24px;
    padding: 0 10px;
  }
}
.highlight-underline {
  position: relative;
  color: #d4af37;
  display: inline-block;
  text-decoration: none;
  border-bottom: none;
  box-shadow: none;
}

.highlight-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;        /* ✅ Full underline — adjust to 45% if needed */
  height: 2px;        /* ✅ Only one clean line */
  background-color: #d4af37;
  border-radius: 1px;
}

.consultation-heading span {
  text-decoration: none !important;
}
.highlight-underline {
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .choose-us-cards {
    align-items: center;
  }

  .choose-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.testimonial-section {
 background: linear-gradient(to bottom, #f2ead9 0%, #fdfaf3 100%);
  padding: 80px 20px 80px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.testimonial-badge {
  background-color: #d4af37;
  color: white;
  padding: 12px 28px; /* was 8px 20px */
  font-weight: bold;
  font-size: 16px;     /* was 14px */
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 30px; /* added a little extra breathing space */
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
  letter-spacing: 0.5px;
}


.testimonial-title {
  font-size: 32px;
  font-weight: 800;
  color: #1f2c4c;
  margin-bottom: 8px;
  position: relative;
}

.testimonial-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  margin: 16px auto 0;
  border-radius: 2px;
}

.highlight-number {
  color: #d4af37;
}

.testimonial-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Force 2 per row */
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}


.testimonial-card {
  background-color: #fff;
  /* Removed max-width to allow full grid flexibility */
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.25);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
  border: 2px solid #d4af37;
}

.testimonial-header h3 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.testimonial-header span {
  font-size: 14px;
  color: #888;
}

.testimonial-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Video testimonial style */

/* Responsive */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 24px;
  }

  .testimonial-subtitle {
    font-size: 16px;
    margin-bottom: 30px; /* Reduce vertical gap too */
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    /* Remove max-width */
    width: 100%; /* Stretch full width on mobile */
    margin: 0 auto;
  }
}
.testimonial-cta {
  display: inline-block;
  margin-top: 40px;
  background-color: #d4af37;
  color: white;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.testimonial-cta:hover {
  background-color: #c19f2f;
}

.testimonial-divider svg {
  display: block;
  width: 100%;
  height: 100px;
  margin-top: -1px;
}
.testimonial-stars {
  font-size: 16px;
  color: #f6c744;
  margin-top: 4px;
}
.section-divider-line {
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  margin: 60px auto 10px;
  border-radius: 2px;
}

.section-intro-heading {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  color: #888;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Arial', sans-serif;
}
/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdf8f1;
  color: #1b1811;
  line-height: 1.6;
}
img:not(.hero-image):not(.no-shadow) {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* About Section */
/* === ABOUT PAGE HERO BANNER === */
.about-hero-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  margin-bottom: 70px;
  position: relative;
}

.about-intro {
  padding: 20px;
  background: linear-gradient(to bottom right, #fffaf0, #f9eee0);
     margin-top: 0 !important;
}

.about-intro .container {
  max-width: 1200px;
  margin: auto;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* 🔧 change from center to flex-start */
  gap: 57px;
}


.intro-image {
  flex: 1 1 35%;
    flex: 1 1 35%;
  margin-top: -20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.intro-image img {
  width: auto;
  max-width: 100%;
  border-radius: 50%;
  border: 6px solid #fff;
  background: radial-gradient(circle at center, #c9ab79, #ba9a67);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
  padding: 0;
  transform: scaleX(-1); /* keep this if you're flipping */
  filter: brightness(0.95); /* 🔥 darkens image just slightly */
  max-height: 480px;
}

.intro-text {
  flex: 1 1 60%;
  padding-left: 20px;
  border-left: 4px solid #a47c2b;
}

.intro-text h2 {
  font-size: 36px;
  color: #3c2f0f;
  margin-bottom: 20px;
  font-weight: 600;
   line-height: 1.8;
}

.intro-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }

  .intro-text {
    text-align: center;
    border-left: none;
    padding-left: 0;
  }

  .section-subtitle {
    font-size: 16px;
    color: #a47c2b;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
    height: 250px;
    object-fit: cover;
  }

  .intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .intro-image img {
    transform: scaleX(-1) rotate(1deg);
    filter: brightness(0.95);
    margin: 0 auto;
  }
}

.about-hero-banner img {
 width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}
/* Default: show desktop banner only */
.desktop-banner {
  display: block;
}


/* Base banner styling */
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}


.mobile-banner {
  display: none;
}
/* Hide mobile banner by default */

/* On small screens, show mobile banner and hide desktop */
@media (max-width: 768px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
    height: 250px;         /* ✅ Force mobile banner to take space */
    object-fit: cover;
  }
}


/* ✅ Default (Desktop): Show desktop, hide mobile */
.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

.hero-image {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ✅ Mobile: Hide desktop, show mobile */
@media (max-width: 768px) {
  .desktop-banner {
    display: none !important;
  }

  .mobile-banner {
    display: block !important;
    height: 250px;
    object-fit: cover;
  }
}
/* === Banner image rules === */
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.desktop-banner {
  display: block !important;
}

.mobile-banner {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-banner {
    display: none !important;
  }

  .mobile-banner {
    display: block !important;
  width: 100%;
  height: auto;
  object-fit: contain;      /* ✅ Show full image without cropping */
  object-position: top;
  padding: 0;
  margin: 0 auto;
  }
}
.mySwiper .swiper-wrapper {
  display: flex;
}

.mySwiper .swiper-slide {
  width: 80%;
  box-sizing: border-box;
}
/* Journey Section */
.journey-section {
  background: linear-gradient(to bottom, #fdf8ef 0%, #fbeedc 100%);
  padding: 80px 20px;
}

.journey-title {
  text-align: center;
  font-size: 2.6rem;
  color: #1b1811;
  font-weight: 700;
  margin-bottom: 60px;
}

.journey-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline {
  position: relative;
  border-left: 3px solid #d1b07c;
  padding-left: 40px;
}

.timeline-item {
  position: relative;
  margin-bottom: 70px;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.timeline-dot {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #d1b07c;
  border-radius: 50%;
  position: absolute;
  left: -26px;
  top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px #fdf8ef;
  z-index: 3;
    font-size: 20px;
}

.dot-icon {
  font-size: 22px;
  line-height: 1;
  color: #d1b07c;
}

.timeline-date {
  font-size: 0.95rem;
  color: #a58b61;
  margin-bottom: 10px;
  font-weight: 600;
   padding-left: 4px;
}

.timeline-content {
  background: #ffffff;
  padding: 24px 26px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1e8d9;
  transition: all 0.3s ease;
}

.timeline-content h3 {
  font-size: 1.35rem;
  color: #1b1811;
  margin-bottom: 10px;
  font-weight: 600;
}

.timeline-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 25px;
  }
  .timeline-dot {
    width: 36px;
    height: 36px;
    left: -18px;
  }
  .dot-icon {
    font-size: 18px;
  }
  .timeline-content {
    padding: 20px 22px;
  }
}

.stats-section {
  background: #fff6e9;
  padding: 60px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1e8d9;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #d1b07c;
}

.stat-label {
  font-size: 1rem;
  color: #1b1811;
  margin-top: 8px;
}
/* WHY I TEACH SECTION */
.why-teach-section {
  background-color: #fdf8ef;
  padding: 80px 20px;
  text-align: center;
}

.why-teach-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1b1811;
  margin-bottom: 20px;
}

.mission-statement {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-item {
  background: #fff;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid #f1e8d9;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  text-align: center;
}

.value-item:hover {
  transform: translateY(-4px);
}

.value-icon {
  font-size: 28px;
  color: #d1b07c;
  margin-bottom: 12px;
  display: inline-block;
}

.value-item h3 {
  font-size: 1.2rem;
  color: #1b1811;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 1rem;
  color: #555;
}
.stats-section {
  background: #fff6e9;
  padding: 60px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1e8d9;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #d1b07c;
}

.stat-label {
  font-size: 1rem;
  color: #1b1811;
  margin-top: 8px;
}
.what-i-teach-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.teach-container {
  max-width: 1100px;
  margin: 0 auto;
}

.teach-intro {
  font-size: 1.1rem;
  color: #444;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.teach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.teach-card {
  background: #fdf8ef;
  border: 1px solid #f1e8d9;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.teach-card:hover {
  transform: translateY(-4px);
}

.teach-icon {
  font-size: 32px;
  color: #d1b07c;
  margin-bottom: 15px;
  display: inline-block;
}

.teach-card h3 {
  font-size: 1.2rem;
  color: #1b1811;
  margin-bottom: 10px;
  font-weight: 600;
}

.teach-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.teach-cta {
  margin-top: 50px;
  text-align: center;
}

.teach-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #d1b07c;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.teach-button:hover {
  background-color: #b69566;
  transform: translateY(-2px);
}
.signature-section {
  background: #fdf8ef;
  padding: 60px 20px;
  text-align: center;
}

.signature-container {
  max-width: 800px;
  margin: 0 auto;
}

.signature-tagline {
  font-size: 1.4rem;
  font-style: italic;
  color: #1b1811;
  margin-bottom: 20px;
  line-height: 1.6;
}

.signature-name {
  font-size: 1rem;
  color: #a58b61;
  font-weight: 600;
}
