/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --gold:        #b8862a;
  --gold-light:  #d4a045;
  --gold-pale:   #f5e9d0;
  --navy:        #0f2035;
  --navy-mid:    #1a3352;
  --navy-light:  #244570;
  --cream:       #fdfaf4;
  --white:       #ffffff;
  --ink:         #111827;
  --ink-mid:     #374151;
  --ink-soft:    #6b7280;
  --border:      #ddd3bc;
  --success:     #166534;
  --danger:      #991b1b;
  --card-shadow: 0 4px 24px rgba(15,32,53,0.10);
  --gold-shadow: 0 4px 20px rgba(184,134,42,0.30);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 900; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--ink); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--ink); }
h3 { font-size: 1.2rem; color: var(--ink); }
p  { color: var(--ink-mid); line-height: 1.75; }
em { font-style: normal; color: var(--gold); }
a  { text-decoration: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  padding: .85rem 1.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--gold-shadow);
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,134,42,.40); }
.btn-primary.small { padding: .55rem 1.3rem; font-size: .85rem; }
.btn-primary.large { padding: 1rem 2.4rem; font-size: 1.05rem; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink) !important;
  padding: .85rem 1.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--border);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold) !important; }

.btn-ghost-light {
  display: inline-block;
  background: transparent;
  color: var(--white) !important;
  padding: .85rem 1.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.45);
  transition: border-color .2s, background .2s;
}
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  padding: .85rem 1.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--gold);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--gold); color: #fff !important; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(253,250,244,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 900;
  color: var(--navy); letter-spacing: -.5px;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--ink-mid); font-size: .9rem; font-weight: 600;
  padding: .3rem 0; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.btn-nav {
  background: var(--gold); color: #fff !important;
  padding: .55rem 1.4rem; border-radius: 7px;
  font-weight: 700; font-size: .88rem;
  transition: background .2s;
}
.btn-nav:hover { background: var(--gold-light); }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }
.mobile-menu {
  display: none; flex-direction: column; gap: .5rem;
  padding: 1rem 5%; background: var(--white);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--ink-mid); font-weight: 600; padding: .5rem 0; font-size: 1rem; }
.mobile-menu a:hover { color: var(--gold); }

/* ── SECTION HEADS ── */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-head h2 { margin-top: .5rem; }
.section-head p { margin-top: .8rem; color: var(--ink-soft); }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255,255,255,.65); }
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(184,134,42,.12);
  padding: .3rem .9rem; border-radius: 999px;
  margin-bottom: .6rem;
  border: 1px solid rgba(184,134,42,.25);
}

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: 120px 5% 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #f0e8d5 100%);
  display: flex; align-items: center;
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900; color: rgba(184,134,42,.06);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: .1em;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(184,134,42,.12); border: 1px solid rgba(184,134,42,.3);
  color: var(--gold); font-size: .82rem; font-weight: 700;
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.4rem;
  animation: fadeUp .5s ease both;
}
.hero h1 { animation: fadeUp .5s .1s ease both; }
.hero-desc {
  font-size: 1.08rem; color: var(--ink-mid); margin-top: 1.2rem; max-width: 500px;
  animation: fadeUp .5s .2s ease both;
}
.hero-btns { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .5s .3s ease both; }
.hero-stats { margin-top: 2.8rem; display: flex; align-items: center; gap: 1.8rem; animation: fadeUp .5s .4s ease both; }
.stat { display: flex; flex-direction: column; }
.snum { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 900; color: var(--navy); line-height: 1; }
.slabel { font-size: .78rem; color: var(--ink-soft); margin-top: .25rem; font-weight: 600; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* Hero Card */
.hero-right { animation: fadeUp .6s .2s ease both; }
.hero-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  box-shadow: 0 24px 60px rgba(15,32,53,.13); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.hcard-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.hcard-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
}
.hcard-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--ink); }
.hcard-role { font-size: .8rem; color: var(--ink-soft); margin-top: .2rem; }

.ledger-box {
  background: var(--cream); border-radius: 10px; padding: 1.2rem;
  border: 1px solid var(--border);
}
.ledger-title { font-size: .8rem; font-weight: 700; color: var(--ink-mid); margin-bottom: .8rem; letter-spacing: .5px; }
.ledger-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.ledger-table th { color: var(--ink-soft); font-weight: 700; font-size: .75rem; text-align: left; padding: .3rem .5rem; border-bottom: 1px solid var(--border); }
.ledger-table td { padding: .35rem .5rem; border-bottom: 1px solid rgba(221,211,188,.4); color: var(--ink-mid); }
.ledger-table tr:last-child td { border-bottom: none; }
.cr { color: var(--success) !important; font-weight: 700; }
.dr { color: var(--danger) !important; font-weight: 700; }
.hcard-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.2rem; }
.hcard-tags span {
  background: rgba(184,134,42,.1); color: var(--gold);
  font-size: .75rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: 999px;
  border: 1px solid rgba(184,134,42,.25);
}

/* ── WHY SECTION ── */
.why-section { padding: 100px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.why-card {
  border: 1px solid var(--border); border-radius: 14px; padding: 2rem;
  background: var(--cream); transition: transform .25s, box-shadow .25s;
  opacity: 0; transform: translateY(20px);
}
.why-card.visible { animation: fadeUp .5s ease forwards; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.why-card p { font-size: .9rem; color: var(--ink-mid); }

/* ── COURSES PREVIEW ── */
.courses-preview { padding: 100px 0; background: var(--navy); }
.courses-preview .section-label { }
.cp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.5rem; }
.cp-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 2rem;
  transition: background .25s, transform .25s;
  opacity: 0; transform: translateY(20px); position: relative;
}
.cp-card.visible { animation: fadeUp .5s ease forwards; }
.cp-card:hover { background: rgba(184,134,42,.1); transform: translateY(-5px); }
.cp-card.featured { border-color: var(--gold); background: rgba(184,134,42,.08); }
.cp-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: .75rem; font-weight: 700;
  padding: .25rem 1rem; border-radius: 999px; white-space: nowrap;
}
.cp-class {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: .75rem; font-weight: 700; padding: .25rem .8rem;
  border-radius: 999px; margin-bottom: 1rem;
}
.cp-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: .6rem; }
.cp-card > p { color: rgba(255,255,255,.65); font-size: .88rem; }
.cp-topics { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.2rem; }
.cp-topics span {
  font-size: .75rem; background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.75); padding: .25rem .7rem; border-radius: 999px;
}
.cp-footer {
  margin-top: 1.8rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between;
}
.cp-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.cp-price small { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .75rem; color: rgba(255,255,255,.45); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 2rem;
  opacity: 0; transform: translateY(20px);
}
.testi-card.visible { animation: fadeUp .5s ease forwards; }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: .9rem; }
.testi-card p { font-size: .93rem; color: var(--ink-mid); font-style: italic; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: .75rem; margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.tauthor-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.testi-author strong { font-size: .9rem; color: var(--ink); display: block; }
.testi-author small { font-size: .78rem; color: var(--ink-soft); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #9a6e1e 100%);
  padding: 70px 5%;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-inner p { color: rgba(255,255,255,.8); margin-top: .3rem; }
.cta-banner .btn-primary { background: var(--white); color: var(--gold) !important; }
.cta-banner .btn-primary:hover { background: var(--cream); }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 70px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .88rem; margin-top: .8rem; line-height: 1.6; }
.footer-links-col h4 { color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: .5px; }
.footer-links-col a { display: block; color: rgba(255,255,255,.5); font-size: .85rem; padding: .3rem 0; transition: color .2s; }
.footer-links-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 5%;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 130px 5% 70px; text-align: center;
}
.page-header h1 { color: #fff; }
.page-header p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-top: .8rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── COURSES PAGE ── */
.courses-page { padding: 80px 0; }
.course-full-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; margin-bottom: 2rem;
  display: grid; grid-template-columns: 1fr 2fr;
  box-shadow: var(--card-shadow);
}
.course-full-card.featured { border-color: var(--gold); }
.cfc-left {
  background: var(--navy); padding: 2.5rem; display: flex;
  flex-direction: column; justify-content: center; gap: 1rem;
}
.cfc-class-tag { display: inline-block; background: var(--gold); color: #fff; font-size: .8rem; font-weight: 700; padding: .3rem .9rem; border-radius: 999px; }
.cfc-left h2 { color: #fff; font-size: 1.7rem; }
.cfc-left p { color: rgba(255,255,255,.6); font-size: .9rem; }
.cfc-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); }
.cfc-price small { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .8rem; color: rgba(255,255,255,.4); }
.cfc-right { padding: 2.5rem; }
.cfc-right h3 { font-size: 1rem; color: var(--ink-soft); font-weight: 700; letter-spacing: .5px; margin-bottom: 1rem; text-transform: uppercase; font-family: 'Plus Jakarta Sans', sans-serif; }
.syllabus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.5rem; }
.syllabus-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--ink-mid); }
.syllabus-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.cfc-perks { display: flex; flex-wrap: wrap; gap: .5rem; }
.perk { background: var(--cream); border: 1px solid var(--border); border-radius: 8px; padding: .4rem .9rem; font-size: .82rem; font-weight: 600; color: var(--ink-mid); }

/* ── ABOUT PAGE ── */
.about-page { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.about-card-main {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem; text-align: center;
  box-shadow: var(--card-shadow); position: sticky; top: 90px;
}
.big-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; margin: 0 auto 1.5rem;
}
.about-card-main h2 { font-size: 1.8rem; }
.about-card-main .role { color: var(--ink-soft); margin-top: .4rem; font-size: .9rem; }
.ach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.8rem; }
.ach {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem; text-align: center;
}
.ach-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.ach-label { font-size: .75rem; color: var(--ink-soft); margin-top: .2rem; font-weight: 600; }
.about-content .section-label { margin-bottom: .8rem; }
.about-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; color: var(--ink-mid); }
.about-point-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin: 1.5rem 0; }
.about-point-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .93rem; color: var(--ink-mid);
}
.about-point-list li::before {
  content: '✓'; color: #fff; background: var(--gold);
  width: 20px; height: 20px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; flex-shrink: 0; margin-top: .1rem;
}
.qual-box {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.8rem; margin-top: 2rem;
}
.qual-box h3 { font-size: 1.1rem; margin-bottom: 1.2rem; }
.qual-item { display: flex; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.qual-item:last-child { border-bottom: none; }
.qual-icon { font-size: 1.5rem; }
.qual-item h4 { font-size: .95rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--ink); }
.qual-item p { font-size: .83rem; color: var(--ink-soft); margin-top: .2rem; }

/* ── RESULTS PAGE ── */
.results-page { padding: 80px 0; }
.results-summary {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem; margin-bottom: 4rem;
}
.rs-card {
  background: var(--navy); border-radius: 16px; padding: 2rem; text-align: center;
}
.rs-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.rs-label { color: rgba(255,255,255,.65); font-size: .85rem; font-weight: 600; margin-top: .4rem; }
.toppers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.topper-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.8rem;
  display: flex; flex-direction: column; gap: .5rem; transition: transform .2s, box-shadow .2s;
}
.topper-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
.topper-rank {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-weight: 900; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.topper-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.topper-score { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); }
.topper-meta { font-size: .8rem; color: var(--ink-soft); }
.topper-board {
  display: inline-block; background: rgba(184,134,42,.1); color: var(--gold);
  font-size: .72rem; font-weight: 700; padding: .2rem .7rem;
  border-radius: 999px; border: 1px solid rgba(184,134,42,.25);
}

/* ── CONTACT PAGE ── */
.contact-page { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.contact-form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.5rem; box-shadow: var(--card-shadow);
}
.contact-form-box h2 { font-size: 1.8rem; margin-bottom: .5rem; }
.contact-form-box > p { color: var(--ink-soft); font-size: .9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .93rem; color: var(--ink);
  background: var(--cream); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,134,42,.15); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: .5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.ci-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(184,134,42,.12); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.ci-card h4 { font-size: .85rem; color: var(--ink-soft); font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.ci-card p { font-size: .95rem; color: var(--ink); font-weight: 600; margin-top: .2rem; }
.ci-card a { color: var(--ink); font-weight: 600; }
.ci-card a:hover { color: var(--gold); }
.faq-box { margin-top: 2rem; }
.faq-box h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; font-size: .9rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; }
.faq-a { font-size: .88rem; color: var(--ink-soft); margin-top: .6rem; display: none; line-height: 1.6; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SUCCESS MSG ── */
.success-msg {
  background: #dcfce7; border: 1px solid #86efac; border-radius: 8px;
  padding: 1rem 1.2rem; color: #166534; font-weight: 600;
  font-size: .9rem; margin-top: 1rem; display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .course-full-card { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card-main { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero { min-height: auto; padding: 100px 5% 60px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .syllabus-grid { grid-template-columns: 1fr; }
}

/*=================== new css start */

.ag-about-section {
  padding: 90px 20px;
  background: #fffaf1;
}

.ag-about-container {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.ag-about-image {
  position: relative;
}

.ag-about-image img {
  width: 100%;
      height: 500px;
    object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(95, 55, 10, 0.18);
}

.ag-about-badge {
  position: absolute;
  right: 25px;
  bottom: 25px;
  background: #ffffff;
  padding: 22px 28px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  text-align: center;
}

.ag-about-badge h3 {
  font-size: 38px;
  color: #b46b12;
  margin: 0;
}

.ag-about-badge span {
  font-size: 14px;
  color: #4b3b2a;
  font-weight: 600;
}

.ag-about-subtitle {
  display: inline-block;
  color: #b46b12;
  background: #fff1d8;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.ag-about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #22160b;
  margin-bottom: 20px;
}

.ag-about-content p {
  color: #5f5144;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.ag-about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 25px 0 32px;
}

.ag-about-points div {
  background: #ffffff;
  color: #3b2a1a;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(95, 55, 10, 0.08);
}

.ag-about-btn {
  display: inline-block;
  background: #b46b12;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.ag-about-btn:hover {
  background: #8f520b;
  color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .ag-about-container {
    grid-template-columns: 1fr;
  }

  .ag-about-image img {
    height: 430px;
  }

  .ag-about-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .ag-about-section {
    padding: 60px 15px;
  }

  .ag-about-image img {
    height: auto !important;
    border-radius: 20px;
  }

  .ag-about-badge {
    right: 15px;
    bottom: 15px;
    padding: 16px 20px;
  }

  .ag-about-content h2 {
    font-size: 28px;
  }

  .ag-about-points {
    grid-template-columns: 1fr;
  }
}

/*========================= new */

.ag-inner-about-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff8eb 0%, #ffffff 55%, #fff1d7 100%);
}

.ag-inner-about-container {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.ag-inner-about-content span {
  display: inline-block;
  color: #b66a12;
  background: #fff0d5;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 18px;
}

.ag-inner-about-content h2 {
  font-size: 44px;
  line-height: 1.18;
  color: #211409;
  margin-bottom: 22px;
}

.ag-inner-about-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #5d4b3b;
  margin-bottom: 16px;
}

.ag-inner-about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 32px 0;
}

.ag-inner-about-list div {
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(132, 78, 14, 0.12);
  border-left: 4px solid #b66a12;
}

.ag-inner-about-list h4 {
  font-size: 20px;
  color: #211409;
  margin-bottom: 8px;
}

.ag-inner-about-list p {
  font-size: 14px;
  margin: 0;
}

.ag-inner-about-btn {
  display: inline-block;
  background: #b66a12;
  color: #ffffff;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(182, 106, 18, 0.25);
  transition: 0.3s ease;
}

.ag-inner-about-btn:hover {
  background: #8d4f0a;
  color: #ffffff;
  transform: translateY(-3px);
}

.ag-inner-about-image {
  position: relative;
  padding: 18px;
}

.ag-inner-about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #b66a12;
  border-radius: 35px;
  transform: rotate(-4deg);
  z-index: 0;
}

.ag-inner-about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 25px 55px rgba(50, 28, 5, 0.25);
}

.ag-inner-about-card {
  position: absolute;
  z-index: 2;
  left: -10px;
  bottom: 55px;
  max-width: 230px;
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.ag-inner-about-card h3 {
  font-size: 38px;
  color: #b66a12;
  margin: 0 0 6px;
}

.ag-inner-about-card p {
  margin: 0;
  color: #3b2a18;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .ag-inner-about-container {
    grid-template-columns: 1fr;
  }

  .ag-inner-about-content h2 {
    font-size: 36px;
  }

  .ag-inner-about-image img {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .ag-inner-about-section {
    padding: 70px 15px;
  }

  .ag-inner-about-content h2 {
    font-size: 29px;
  }

  .ag-inner-about-list {
    grid-template-columns: 1fr;
  }

  .ag-inner-about-image {
    padding: 10px;
  }

  .ag-inner-about-image img {
    height: 340px;
    border-radius: 22px;
  }

  .ag-inner-about-image::before {
    border-radius: 25px;
  }

  .ag-inner-about-card {
    left: 15px;
    bottom: 30px;
    padding: 18px;
  }
}
