/* Dikshan Education theme (derived from logo):
   Purple: #7F1681
   Deep Purple: #3A0B6E
   Red: #E5090E
   Gold: #E5A307
*/

:root{
  --bg:#0b0612;
  --card:#140a22;
  --card2:#120820;
  --text:#f6f2fb;
  --muted:rgba(246,242,251,.75);

  --purple:#7F1681;
  --purple2:#3A0B6E;
  --red:#E5090E;
  --gold:#E5A307;

  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif; color:var(--text); background: radial-gradient(1200px 800px at 10% 0%, rgba(127,22,129,.35), transparent 55%), radial-gradient(900px 650px at 90% 10%, rgba(229,9,14,.18), transparent 50%), var(--bg); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{ width:min(1120px, 92%); margin-inline:auto; }
.center{ display:flex; align-items:center; justify-content:center; }
.mt-16{ margin-top:16px; }
.mt-24{ margin-top:24px; }
.m0{ margin:0; }
.w-100{ width:100%; }

/* Top strip */
.topstrip{
  background: linear-gradient(90deg, rgba(110,24,162,.95), rgba(181,113,213,.95));
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.topstrip-inner{
  display:flex; gap:10px; align-items:center; justify-content:space-between;
  padding:8px 0;
  flex-wrap:wrap;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  font-size:13px;
  line-height:1;
  white-space:nowrap;
}
.pill.link:hover{ background: rgba(0,0,0,.32); }

/* Header / nav */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,6,18,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand-logo{ height:44px; width:auto; }

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav-link{
  font-weight:600;
  font-size:14px;
  color:rgba(246,242,251,.85);
  padding:10px 10px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav-link:hover{ border-color:rgba(255,255,255,.10); background: rgba(255,255,255,.04); }
.nav-link.active{ background: rgba(127,22,129,.22); border-color: rgba(127,22,129,.40); }

.nav-toggle{
  display:none;
  width:46px; height:42px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
}
.nav-toggle span{
  display:block;
  height:2px; width:22px;
  background: rgba(246,242,251,.92);
  margin:6px auto;
  border-radius:99px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.12);
  transition:.2s ease;
  cursor:pointer;
}
.btn-sm{ padding:10px 14px; font-size:14px; }
.btn-primary{
  background: linear-gradient(90deg, rgba(127,22,129,.92), rgba(229,9,14,.85));
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(127,22,129,.18);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 40px rgba(229,9,14,.16); }
.btn-ghost{
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); }

/* Hero */
.hero{
  padding:48px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:26px;
  align-items:stretch;
}
.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(229,163,7,.12);
  border:1px solid rgba(229,163,7,.30);
  color: rgba(255,242,205,.95);
  font-weight:800;
  font-size:13px;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  line-height:1.06;
  letter-spacing:-.02em;
}
.grad{
  background: linear-gradient(90deg, var(--purple), rgba(168,94,251,1));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.grad2{
  background: linear-gradient(90deg, rgba(247,227,251,1), rgba(181,113,213,1));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.grad3{
  background: linear-gradient(90deg, var(--gold), rgba(255,230,160,1));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.lead{
  font-size:16px;
  color: rgba(246,242,251,.86);
  max-width:62ch;
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:22px;
}
.stat{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:14px;
}
.stat-num{ font-weight:900; font-size:18px; }
.stat-text{ color: var(--muted); font-size:13px; margin-top:4px; }

/* Cards */
.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.card h3{ margin:0 0 6px; }
.card p{ margin:0; color: var(--muted); line-height:1.55; }
.card-head p{ margin-top:6px; }

.chip{
  display:inline-flex;
  margin-top:12px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  color: rgba(255,255,255,.90);
  border:1px solid rgba(229,163,7,.28);
  background: rgba(229,163,7,.10);
}

/* Forms */
.form{ margin-top:12px; display:grid; gap:12px; }
.field label{ display:block; font-size:13px; color: rgba(246,242,251,.86); margin-bottom:6px; font-weight:700; }
input, select, textarea{
  width:100%;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding:12px 12px;
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(229,163,7,.45);
  box-shadow: 0 0 0 4px rgba(229,163,7,.10);
}
.fineprint{ color: rgba(246,242,251,.60); font-size:12px; line-height:1.45; margin:0; }

/* Sections */
.section{ padding:34px 0; }
.section-alt{
  background: radial-gradient(900px 700px at 10% 20%, rgba(58,11,110,.24), transparent 55%),
              radial-gradient(900px 700px at 90% 0%, rgba(229,9,14,.12), transparent 45%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{ margin-bottom:18px; }
.section-head h2, .section-head h1{ margin:0 0 8px; }
.section-head p{ margin:0; color: var(--muted); }

.grid{ display:grid; gap:14px; }
.cards-3{ grid-template-columns: repeat(3, 1fr); }

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.panel{
  border:1px solid rgba(127,22,129,.28);
  background: rgba(127,22,129,.08);
  border-radius: var(--radius2);
  padding:18px;
}
.panel .mini-grid{ display:grid; gap:10px; margin-top:12px; }
.mini{
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(246,242,251,.88);
  font-weight:700;
  font-size:13px;
}

.checklist{ padding-left:0; margin:10px 0 0; list-style:none; display:grid; gap:10px; }
.checklist li{
  display:flex; gap:10px; align-items:flex-start;
  color: rgba(246,242,251,.86);
}
.checklist li::before{
  content:"✓";
  flex:0 0 auto;
  width:22px; height:22px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  background: rgba(229,163,7,.14);
  border:1px solid rgba(229,163,7,.35);
  color: rgba(255,242,205,.95);
  font-weight:900;
}

.quote{
  margin-top:14px;
  border-left: 3px solid rgba(229,163,7,.65);
  padding-left:12px;
}
.quote p{ margin:0; font-weight:800; color: rgba(246,242,251,.92); }
.quote span{ display:block; margin-top:8px; color: rgba(246,242,251,.65); font-size:13px; }

/* CTA */
.cta{
  padding:22px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: linear-gradient(90deg, rgba(127,22,129,.16), rgba(229,9,14,.10));
}
.cta-inner{
  display:flex; gap:16px; align-items:center; justify-content:space-between; flex-wrap:wrap;
}
.cta h2{ margin:0 0 6px; }
.cta p{ margin:0; color: var(--muted); }
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.cta-slim{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  border:1px solid rgba(229,163,7,.22);
  background: rgba(229,163,7,.06);
  padding:16px;
  border-radius: var(--radius2);
  flex-wrap:wrap;
}
.cta-slim h3{ margin:0 0 6px; }
.cta-slim p{ margin:0; }

/* Page layout */
.page{ min-height: 60vh; }
.footer{
  padding:26px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap:14px;
  align-items:start;
  padding-bottom:16px;
  border-bottom: 1px solid var(--line);
}
.footer-logo{ height:48px; width:auto; }
.footer h4{ margin:0 0 10px; }
.footer a{ display:block; color: rgba(246,242,251,.78); margin:6px 0; }
.footer a:hover{ color: rgba(246,242,251,.95); }
.footer-bottom{
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  padding-top:14px;
  color: rgba(246,242,251,.70);
}
.muted{ color: var(--muted); }

/* WhatsApp floating */
.whatsapp-float{
  position:fixed;
  right:16px; bottom:16px;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(37,211,102,.95), rgba(18,140,126,.95));
  color: #06110a;
  font-weight:900;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.20);
  z-index:60;
}
.whatsapp-float span{ background: rgba(255,255,255,.55); padding:6px 10px; border-radius:999px; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .nav-toggle{ display:block; }
  .nav{
    position: fixed;
    inset: 74px 12px auto 12px;
    display:none;
    flex-direction:column;
    gap:10px;
    padding:14px;
    border-radius: 18px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(11,6,18,.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }
  .nav-link{ width:100%; text-align:left; }
}