/* -------- Root + Reset -------- */
:root{
  --bg: #F1EBE5;         /* warm beige like reference */
  --ink: #1c1b1a;        /* near-black text */
  --muted: #6e6a67;      /* warm gray body text */
  --brand: #a77a50;      /* earthy accent */
  --chip: #e7ded6;
  --btn-bg: #111; 
  --btn-ink: #fff;
}/* ========== GLOBAL SECTION BALANCE & SEPARATION ========== */

/* Equal section height with consistent rhythm */
section {
  min-height: 100vh; /* ensures all sections take up at least full viewport height */
  display: flex;
  align-items: center;
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  position: relative;
}

/* Add gentle section dividers */
section:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 50%,
    transparent 100%
  );
}

/* Alternate subtle backgrounds for distinction */
section:nth-of-type(even) {
  background: #f3ede8; /* slightly lighter beige */
}

section:nth-of-type(odd) {
  background: #f1ebe5; /* your main beige tone */
}

/* Make sure parallax sections still work properly */
.workshop-for-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

/* Glass card refinement for proportional layout */
.glass-card {
  width: 100%;
  max-width: 900px;
  min-height: 60vh; /* consistent vertical space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem 2.5rem;
}

/* Section headings consistency */
.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1rem + 2.5vw, 3rem);
  margin-bottom: 2rem;
  color: var(--ink);
}

/* For smooth section transitions */
section {
  scroll-margin-top: 80px; /* nice scroll snap feeling for nav links */
  transition: background 0.5s ease, color 0.3s ease;
}

/* Add a soft shadow line to separate each section visually */
section:nth-of-type(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), transparent);
  opacity: 0.5;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* -------- Navbar -------- */
.navbar { background: transparent; }
.brand-text{
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 0.8rem + 1vw, 1.5rem);
  letter-spacing: .2px;
}
.nav-link{
  color: #5a5653;
  font-weight: 500;
  transition: color .2s ease;
}
.nav-link:hover, .nav-link.active{ color: var(--ink); }
.btn-book{
  background: transparent;
  border: 1px solid #ccc5bf;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  display: inline-flex; align-items: center; gap: .25rem;
  transition: border-color .2s ease, transform .2s ease;
  will-change: transform;
}
.btn-book:hover{ border-color: var(--ink); transform: translateY(-1px); }

/* -------- Hero -------- */
.hero{
  padding: clamp(3rem, 5vw, 6rem) 0 clamp(2rem, 4vw, 4rem);
  position: relative;
  isolation: isolate; /* keep motif behind */
}

/* Subtle background motif (inline SVG as bg-image) */
.hero-motif{
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 900'><g fill='none' stroke='%23b7b0aa' stroke-opacity='.18' stroke-width='1.2'><path d='M450 80c120 110 170 230 120 300-60 85-230 85-290 0-50-70 0-190 120-300z'/><circle cx='450' cy='480' r='280'/><path d='M200 520c80 120 220 200 250 200s170-80 250-200'/></g></svg>");
  background-repeat: no-repeat;
  background-size: min(1200px, 95vw) auto;
  background-position: right -10% top 10%;
  opacity: .6;
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0); /* GPU compositing */
}

/* Type scale */
.eyebrow{
  color: var(--brand);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .85rem;
}
.display-h1{
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.2px;
  font-size: clamp(2rem, 1.1rem + 3vw, 3.75rem);
}
.lead{ color: var(--muted); font-size: clamp(1rem, .95rem + .4vw, 1.125rem); }

/* CTA */
.btn-cta{
  background: var(--btn-bg);
  color: var(--btn-ink);
  border-radius: 999px;
  padding: .9rem 1.35rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  will-change: transform, opacity;
}
.btn-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(0,0,0,.12);
}

/* Hero image */
.hero-image{
  max-width: min(100%, 860px);
  height: auto;
  transform: translateZ(0);
  will-change: transform, opacity;
  animation: floatIn .7s cubic-bezier(.2,.7,.2,1) both .05s;
}
@keyframes floatIn{
  from{ transform: translate3d(0,10px,0) scale(.98); opacity: 0; }
  to{ transform: translate3d(0,0,0) scale(1); opacity: 1; }
}

/* floor mat shadow as a pill */
.mat-shadow{
  width: min(520px, 80%);
  height: 20px;
  margin-inline: auto;
  background: radial-gradient(50% 100% at 50% 50%, rgba(0,0,0,.22), rgba(0,0,0,0) 70%);
  border-radius: 999px;
  filter: blur(6px);
  translate: 0 -6px;
}

/* Right-side pager (ornamental) */
.pager{
  position: absolute;
  right: clamp(10px, 2vw, 30px);
  top: 50%;
  transform: translateY(-50%);
  gap: 6px;
  color: #8f8984;
  font-weight: 600;
}

/* Entrance animation trigger for left column */
[data-animate="in"]{
  opacity: 0; transform: translate3d(0, 12px, 0);
  will-change: transform, opacity;
}
.animate-in{
  opacity: 1; transform: translate3d(0, 0, 0);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .6s ease;
}

/* -------- Responsiveness tweaks -------- */
@media (max-width: 991.98px){
  .hero{ padding-top: 2.25rem; }
  .hero-motif{
    background-size: 110vw auto;
    background-position: right -20vw top 12vh;
    opacity: .45;
  }
  .mat-shadow{ width: 70%; }
}
@media (min-width: 1200px){
  .hero{ padding-top: 5.5rem; }
}

.yoga-shape-section {
  background: #f9f6f3;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  isolation: isolate;
}

/* Typography */
.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(2rem, 1.1rem + 2.5vw, 3rem);
  color: #1e1c1a;
}
.lead { font-family: 'Montserrat', sans-serif; color: #6c6763; }

/* Button */
.btn-outline-cta {
  border: 1.5px solid #bdb2a8;
  border-radius: 50px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  color: #1c1b1a;
  transition: all 0.25s ease;
  will-change: transform;
}
.btn-outline-cta:hover {
  transform: translateY(-3px);
  border-color: #1c1b1a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Stats */
.stat .num {
  font-family: 'Sinzel', serif;
  font-size: clamp(1.8rem, 1rem + 2vw, 2.5rem);
  color: #1e1c1a;
}
.stat .label {
  font-family: 'Montserrat', sans-serif;
  color: #7a726c;
}

/* Figure & Decorative Elements */
.figure-stack { position: relative; min-height: 480px; }
.figure-pill {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 300px;
  height: 280px;
  background: #d7cfc7;
  border-radius: 25px;
  z-index: 0;
}
.halftone {
  position: absolute;
  top: -20px;
  left: 70px;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(rgba(169,157,144,0.4) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  border-radius: 50%;
  opacity: 0.7;
  z-index: 0;
}
.pose-img { position: relative; z-index: 1; transform: translateZ(0); }
.mat-shadow {
  position: absolute;
  bottom: 15px;
  left: 8%;
  width: 75%;
  height: 20px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(0,0,0,.22), rgba(0,0,0,0) 70%);
  border-radius: 999px;
  filter: blur(6px);
}

/* Circular Photo */
.circle-photo {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  transform: translateZ(0);
}
.circle-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.squiggle {
  position: absolute;
  right: -6%; top: 20%;
  width: 45%;
}

/* Badge */
.oval-badge {
  position: absolute;
  right: 0; bottom: -40px;
  width: 180px; height: 230px;
  background: #c9ab8c;
  color: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: 'Sinzel', serif;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.badge-text {
  font-size: 1.1rem;
  line-height: 1.3;
}
.badge-icon {
  position: absolute; top: 20px; left: 20px;
  width: 26px; height: 26px;
  color: #2f2a27;
}

/* Sunburst */
.sunburst {
  position: absolute;
  right: 22%;
  top: 15%;
  width: 160px;
  opacity: 0.8;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991.98px) {
  .oval-badge { right: auto; left: 50%; transform: translateX(-50%); bottom: -20px; }
  .sunburst { right: 10%; top: 10%; width: 120px; }
}

/* ========== Course Learn Cards ========== */
.learn-section-wrapper {
  background: #f9f6f3;
  font-family: 'Montserrat', sans-serif;
  color: #1c1b1a;
  padding-top: clamp(3rem, 5vw, 6rem);
  padding-bottom: clamp(3rem, 5vw, 6rem);
  isolation: isolate;
}

.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1rem + 2.5vw, 3rem);
  color: #1f1d1b;
}

/* Learn Cards */
.learn-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.learn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.learn-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  color: #1f1d1b;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.learn-desc {
  font-family: 'Montserrat', sans-serif;
  color: #6c6662;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767.98px) {
  .learn-card {
    padding: 1.5rem 1rem;
  }
}

/* ========== Workshop For Section ========== */
/* ========== Workshop For Section ========== */
.workshop-for-section {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  color: #1c1b1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

/* Parallax Background with smooth movement */
.parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/9100913.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  transform: scale(1.1);
  z-index: 0;
  opacity: 0.75;
  animation: parallaxMove 20s ease-in-out infinite alternate;
  filter: brightness(0.7) saturate(120%);
}

/* Subtle floating gradient overlay to soften the top/bottom edges */
.workshop-for-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.1) 0%, transparent 70%),
              radial-gradient(ellipse at bottom, rgba(0,0,0,0.3) 0%, transparent 70%);
  z-index: 1;
}

/* Smooth floating parallax animation */
@keyframes parallaxMove {
  0% { background-position: center top; transform: scale(1.08); }
  50% { background-position: center center; transform: scale(1.1); }
  100% { background-position: center bottom; transform: scale(1.12); }
}

/* Glass Effect Card */

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* Heading */
.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  color: #373434;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

/* List */
.workshop-list {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  color: #222020;
  z-index: 3;
}
.workshop-list li {
  background: rgba(255,255,255,0.12);
  border-left: 3px solid rgba(255,255,255,0.6);
  border-radius: 0.5rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  transition: background 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(8px);
}
.workshop-list li:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 767.98px) {
  .glass-card { padding: 2rem 1.5rem; }
  .display-title { font-size: 1.8rem; }
  .workshop-list { font-size: 0.98rem; }
}
/* ========== Learn Master Section ========== */
.learn-master-section {
  position: relative;
  background: linear-gradient(180deg, #f9f6f3 0%, #f3ece6 100%);
  padding-top: clamp(5rem, 7vw, 8rem);
  padding-bottom: clamp(5rem, 7vw, 8rem);
  font-family: 'Montserrat', sans-serif;
  color: #1c1b1a;
  isolation: isolate;
  overflow: hidden;
}

/* Decorative background animation */
.learn-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(167, 122, 80, 0.25), transparent 60%),
              radial-gradient(circle at 75% 70%, rgba(205, 180, 155, 0.25), transparent 60%);
  animation: floatGradient 16s ease-in-out infinite alternate;
  z-index: 0;
  transform: translateZ(0);
}
@keyframes floatGradient {
  0% { background-position: 25% 30%, 75% 70%; }
  50% { background-position: 30% 35%, 70% 65%; }
  100% { background-position: 25% 30%, 75% 70%; }
}

/* Title */
.learn-master-section .display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  color: #1c1b1a;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

/* Learn Item Cards */
.learn-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.75rem;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  will-change: transform, box-shadow;
  backdrop-filter: blur(10px);
}
.learn-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

/* Headings */
.learn-item h4 {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1c1b1a;
}

/* Paragraphs */
.learn-item p {
  color: #6e6a67;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 767.98px) {
  .learn-item {
    padding: 1.5rem 1.25rem;
  }
  .learn-item h4 {
    font-size: 1.15rem;
  }
}

/* ========== Bonus Section ========== */
.bonus-section {
  position: relative;
  background: linear-gradient(180deg, #f8f5f1 0%, #f3ede7 100%);
  padding-top: clamp(5rem, 6vw, 7rem);
  padding-bottom: clamp(5rem, 6vw, 7rem);
  font-family: 'Montserrat', sans-serif;
  color: #1c1b1a;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative animated background */
.bonus-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(167,122,80,0.25), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(203,180,150,0.25), transparent 60%);
  animation: floatBonusBg 18s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes floatBonusBg {
  0% { background-position: 20% 30%, 80% 70%; }
  50% { background-position: 25% 40%, 75% 60%; }
  100% { background-position: 20% 30%, 80% 70%; }
}

/* Heading */
.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  color: #1a1817;
}

/* Bonus Cards */
.bonus-card {
  position: relative;
  background: #ffffffcc;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  backdrop-filter: blur(8px);
  height: 100%;
  z-index: 1;
}
.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  background: #fff;
}

/* Bonus Titles */
.bonus-card h4 {
  font-family: 'Sinzel', serif;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: #1c1b1a;
}
.bonus-card p {
  color: #6e6a67;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Bonus Number Badge */
.bonus-number {
  display: inline-block;
  background: #a77a50;
  color: #fff;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 15px rgba(167, 122, 80, 0.4);
}

/* Bonus Value */
.bonus-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #a77a50;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Register CTA */
.register-cta {
  position: relative;
  z-index: 2;
}
.old-price {
  font-size: 1rem;
  color: #7a726c;
}
.new-price {
  font-family: 'Sinzel', serif;
  font-weight: 700;
  color: #1a1817;
  font-size: clamp(2rem, 1.4rem + 1vw, 2.5rem);
}
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #a77a50, #c8a578);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(167,122,80,0.3);
}
.btn-register:hover {
  background: linear-gradient(135deg, #b18458, #d6b685);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(167,122,80,0.35);
}
.btn-register i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.btn-register:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 767.98px) {
  .bonus-card { padding: 1.5rem 1rem; }
  .bonus-card h4 { font-size: 1.1rem; }
  .btn-register { padding: 0.85rem 1.6rem; font-size: 0.95rem; }
}

/* ========== Still Wondering Section ========== */
.wonder-section {
  background: linear-gradient(180deg, #f9f6f3 0%, #f3ece6 100%);
  font-family: 'Montserrat', sans-serif;
  color: #1c1b1a;
  padding-top: clamp(5rem, 6vw, 7rem);
  padding-bottom: clamp(5rem, 6vw, 7rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Soft gradient background animation */
.wonder-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(167,122,80,0.25), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(203,180,150,0.25), transparent 60%);
  animation: floatWonder 18s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes floatWonder {
  0% { background-position: 30% 20%, 80% 80%; }
  50% { background-position: 35% 25%, 75% 75%; }
  100% { background-position: 30% 20%, 80% 80%; }
}

/* Main Card */
.wonder-card {
  background: #ffffffd9;
  border-radius: 1.5rem;
  padding: clamp(2rem, 3vw, 3.5rem);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  max-width: 950px;
  position: relative;
  z-index: 2;
}

/* Heading */
.wonder-card .display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  color: #1e1c1a;
  letter-spacing: 0.3px;
}

/* List */
.wonder-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1rem;
  color: #4f4a45;
  font-size: 1.05rem;
  line-height: 1.6;
}
.wonder-list li::before {
  content: "★";
  color: #a77a50;
  font-size: 0.9rem;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

/* Highlight line */
.highlight-text {
  font-weight: 600;
  color: #1e1c1a;
  background: #f1e8de;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-top: 2rem;
  font-size: 1.1rem;
}
.highlight {
  color: #a77a50;
  font-weight: 700;
}

/* Paragraphs */
.lead-text {
  color: #5a5653;
  line-height: 1.7;
  font-size: 1rem;
  margin-top: 1.25rem;
}

/* Video box */
.video-box {
  background: #f7f4f0;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: inset 0 0 25px rgba(0,0,0,0.05);
}
.subheading {
  font-family: 'Sinzel', serif;
  color: #1c1b1a;
  font-weight: 600;
}
.video-desc {
  color: #6e6a67;
  font-size: 0.98rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .wonder-card { padding: 1.75rem 1.25rem; }
  .wonder-list li { font-size: 0.98rem; }
  .lead-text { font-size: 0.95rem; }
}

/* ========== Modern Curriculum Section ========== */
.curriculum-modern {
  position: relative;
  background: #f9f6f3;
  padding: clamp(4rem, 6vw, 6rem) 0;
  color: #1c1b1a;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  isolation: isolate;
}

/* Background */
.curriculum-bg {
  position: absolute;
  inset: 0;
  background-image: url('A_digital_illustration_on_a_beige_background_featu.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.25;
  filter: brightness(1) blur(1px);
  z-index: 0;
}

/* Section Title */
.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  color: #1c1b1a;
  margin-bottom: 0.75rem;
}
.lead-text {
  color: #5e5955;
  font-size: 1rem;
  max-width: 600px;
  margin-inline: auto;
}

/* Timeline Layout */
.curriculum-timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(167,122,80,0.25);
}
.curriculum-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(167,122,80,0.3), rgba(203,180,150,0.15));
}

/* Individual Item */
.curriculum-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.curriculum-badge {
  background: linear-gradient(135deg, #a77a50, #c6a57e);
  color: #fff;
  font-family: 'Sinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(167,122,80,0.3);
  transition: transform 0.3s ease;
}
.curriculum-item:hover .curriculum-badge {
  transform: scale(1.1);
}

/* Content */
.curriculum-content {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  flex: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.curriculum-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* Content Typography */
.curriculum-content h4 {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #1a1817;
}
.curriculum-content p {
  color: #5c5651;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
  .curriculum-timeline { padding-left: 0.5rem; }
  .curriculum-content { padding: 0.9rem 1rem; }
  .curriculum-badge { width: 30px; height: 30px; font-size: 0.9rem; }
  .curriculum-content h4 { font-size: 1rem; }
  .curriculum-content p { font-size: 0.9rem; }
}

/* ========== Mentor Section ========== */
/* ========== Mentor Section (Modern UX) ========== */
.mentor-section {
  background: linear-gradient(180deg, #f9f6f3 0%, #f1ebe5 100%);
  font-family: 'Montserrat', sans-serif;
  color: #1c1b1a;
  position: relative;
  overflow: hidden;
}

.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2vw, 2.8rem);
  color: #1e1b1a;
  letter-spacing: 0.3px;
  line-height: 1.2;
  position: relative;
}
.display-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #a77a50;
  display: block;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Mentor Card */
.mentor-card {
  background: linear-gradient(135deg, #222224 0%, #2d2b2a 100%);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  max-width: 1100px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease;
}
.mentor-card:hover {
  transform: translateY(-5px);
}

/* Glow shadow under image */
.shadow-glow {
  box-shadow: 0 10px 25px rgba(167, 122, 80, 0.3);
}

/* Subtle overlay gradient on photo */
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25));
  border-radius: 0.75rem;
  pointer-events: none;
}

/* Decorative Leaves */
.leaf {
  position: absolute;
  width: 120px;
  opacity: 0.25;
  filter: invert(0.8) sepia(0.2) hue-rotate(10deg) saturate(0.5);
  z-index: 1;
  transition: transform 1s ease;
}
.leaf-left { top: 10%; left: 4%; transform: rotate(-15deg); }
.leaf-right { bottom: 10%; right: 4%; transform: rotate(15deg); }
.mentor-card:hover .leaf-left { transform: rotate(-30deg) scale(1.05); }
.mentor-card:hover .leaf-right { transform: rotate(30deg) scale(1.05); }

/* Text */
.mentor-name {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 1.1rem + 1.2vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.4rem;
}
.mentor-role {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #c7b79d;
  margin-bottom: 1.2rem;
}
.mentor-desc {
  color: #d8d5d1;
  font-size: 0.96rem;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 0.5rem;
}

/* Socials */
.social-icons a {
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: #c9a87c;
  transform: translateY(-2px);
}

/* Button */
.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.btn-chat:hover {
  background: #fff;
  color: #222224;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.9s ease both;
}
.fade-up {
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991.98px) {
  .mentor-card { padding: 1.5rem; text-align: center; }
  .mentor-name { margin-top: 1rem; }
  .mentor-desc { text-align: left; }
  .leaf { width: 80px; opacity: 0.2; }
}

/* ========== Certification Section ========== */
.certification-section {
  position: relative;
  background: linear-gradient(180deg, #f8f7f5 0%, #efe9e2 100%);
  color: #1c1b1a;
  font-family: 'Montserrat', sans-serif;
  isolation: isolate;
}

/* Background Glow */
.certification-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(198, 168, 121, 0.15), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(167, 122, 80, 0.12), transparent 65%);
  z-index: 0;
}

/* Title */
.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.3rem + 2vw, 2.8rem);
  color: #1a1817;
  text-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Certificate Card */
.certificate-card {
  position: relative;
  display: inline-block;
  border-radius: 1rem;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}
.certificate-card:hover {
  transform: scale(1.03);
}

/* Content Area */
.certification-content {
  z-index: 2;
}
.certification-content p {
  color: #5e5955;
  line-height: 1.7;
}

/* Each Point */
.cert-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease both;
}
.cert-point:nth-child(2) { animation-delay: 0.15s; }
.cert-point:nth-child(3) { animation-delay: 0.3s; }

.icon-wrap {
  background: linear-gradient(135deg, #a77a50, #c6a57e);
  color: #fff;
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(167,122,80,0.25);
}

/* Headings */
.cert-point h5 {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #1b1b1a;
}
.cert-point p {
  margin: 0;
  font-size: 0.95rem;
  color: #615e5b;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991.98px) {
  .certificate-card {
    margin-bottom: 2rem;
  }
  .cert-point {
    gap: 0.8rem;
  }
}
/* ========== FAQ Section ========== */
.faq-section {
  background: #f8f7f5;
  font-family: 'Montserrat', sans-serif;
  color: #1a1817;
  background-image: url('https://img.freepik.com/free-vector/hand-drawn-mandala-background_23-2148710786.jpg?w=2000');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}

/* Section Titles */
.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2vw, 2.8rem);
  color: #1c1b1a;
}

.subtitle {
  color: #7a726b;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

/* Accordion */
.accordion {
  max-width: 850px;
  background: transparent;
}
.accordion-item {
  background: #ebe3db;
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.accordion-button {
  background: #d7c8b8;
  color: #3c2e25;
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  box-shadow: none;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}
.accordion-button::after {
  background-image: none;
  content: '+';
  font-weight: 600;
  font-size: 1.3rem;
  color: #3c2e25;
}
.accordion-button:not(.collapsed)::after {
  content: '–';
  transform: rotate(180deg);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:hover {
  background: #cfbfae;
  color: #1e1b1a;
}

/* Open Accordion State */
.accordion-button:not(.collapsed) {
  background: #fff;
  color: #a77a50;
  border-bottom: 1px solid #e0d4c6;
}
.accordion-body {
  background: #fff;
  color: #4a4138;
  padding: 1.25rem 1.75rem;
  line-height: 1.75;
  font-size: 0.96rem;
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-button {
    font-size: 0.95rem;
  }
  .accordion-body {
    font-size: 0.9rem;
  }
}
/* -------- Accordion Smooth Animation -------- */
.accordion-collapse {
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
}

.accordion-body {
  animation: fadeSlide 0.5s ease both;
}

/* Fade + Slide Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add hover feel for question buttons */
.accordion-button {
  position: relative;
  transition: all 0.35s ease;
}
.accordion-button:hover {
  background: #d2c2b0;
  color: #1b1816;
  transform: translateY(-1px);
}
.accordion-button:not(.collapsed) {
  box-shadow: 0 6px 15px rgba(167, 122, 80, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Smooth icon rotation */
.accordion-button::after {
  transition: transform 0.35s ease, color 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #a77a50;
}
/* ========== Live Stream Section ========== */
.live-stream-section {
  background: #f7f6f4;
  color: #1c1b1a;
  font-family: 'Montserrat', sans-serif;
  padding: clamp(4rem, 6vw, 7rem) 0;
}

/* Heading */
.display-title {
  font-family: 'Sinzel', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  color: #1c1b1a;
}

/* Subtext */
.lead-text {
  color: #6b6764;
  font-size: 1rem;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Button */
.btn-outline-view {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid #a49c92;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  color: #1c1b1a;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
}
.btn-outline-view:hover {
  background: #1c1b1a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .lead-text {
    font-size: 0.95rem;
  }
  .btn-outline-view {
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
  }
}
