/* ===== SATCS Static Site Styles ===== */
:root{
  --bg:#fbfaff;
  --fg:#1a1430;
  --muted:#6b6586;
  --muted-bg:#f1eef9;
  --card:#ffffff;
  --border:#e6e2f2;
  --primary:#2a2d8f;        /* royal blue */
  --primary-fg:#ffffff;
  --purple:#6a3bb5;         /* purple */
  --gold:#e6b94a;           /* gold */
  --gold-deep:#c8932a;
  --gold-fg:#3a2a05;
  --green:#25d366;
  --shadow-soft:0 10px 30px -12px rgba(40,30,80,.18);
  --shadow-elegant:0 20px 50px -20px rgba(42,45,143,.45);
  --shadow-glow:0 0 60px rgba(150,80,200,.35);
  --grad-hero:linear-gradient(135deg,#1d1f7a 0%,#5a2da3 50%,#8a3aaa 100%);
  --grad-brand:linear-gradient(135deg,var(--primary),var(--purple));
  --grad-gold:linear-gradient(135deg,#f1cf6c,#cf9528);
  --radius:1rem;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:5rem}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:var(--bg);color:var(--fg);line-height:1.55;-webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:'Playfair Display',Georgia,serif;letter-spacing:-.02em;line-height:1.15}

/* ---- Layout helpers ---- */
.container{max-width:1200px;margin:0 auto;padding:0 1.25rem}
.section{padding:5rem 0;scroll-margin-top:5rem}
.section-muted{background:var(--muted-bg)}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.4rem 1rem;border-radius:999px;background:#ece6fa;color:#4a2d8a;
  font-size:.7rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;margin-bottom:1rem;
}
.section-head{text-align:center;max-width:760px;margin:0 auto 3rem}
.section-head h2{font-size:clamp(2rem,4vw,3rem);font-weight:800;margin-bottom:.75rem}
.section-head p{color:var(--muted);font-size:1.05rem}

/* ---- Buttons ---- */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.4rem;border-radius:999px;font-weight:700;font-size:.95rem;border:0;cursor:pointer;transition:transform .25s,box-shadow .25s,background .25s}
.btn-gold{background:var(--grad-gold);color:var(--gold-fg);box-shadow:var(--shadow-glow)}
.btn-gold:hover{transform:scale(1.03)}
.btn-ghost{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.3);color:#fff;backdrop-filter:blur(8px)}
.btn-ghost:hover{background:rgba(255,255,255,.22)}
.btn-brand{background:var(--grad-brand);color:#fff;box-shadow:var(--shadow-soft)}
.btn-brand:hover{box-shadow:var(--shadow-elegant)}

/* ---- Header ---- */
header.nav{position:fixed;inset:0 0 auto 0;z-index:50;background:rgba(251,250,255,.75);backdrop-filter:blur(14px);border-bottom:1px solid var(--border)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:.75rem}
.brand img{width:40px;height:40px;border-radius:50%;object-fit:cover;outline:2px solid rgba(230,185,74,.6);outline-offset:1px}
.brand .b-title{font-family:'Playfair Display',serif;font-weight:700;font-size:1rem;line-height:1}
.brand .b-sub{font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);margin-top:3px}
.nav-links{display:none;gap:1.6rem;font-size:.9rem;font-weight:500}
.nav-links a:hover{color:var(--primary)}
@media(min-width:768px){.nav-links{display:flex}}
.nav-cta{display:none}
@media(min-width:640px){.nav-cta{display:inline-flex}}

/* ---- Hero ---- */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;padding-top:5rem;overflow:hidden;color:#fff}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-bg::after{content:"";position:absolute;inset:0;background:var(--grad-hero);opacity:.9}
.orb{position:absolute;border-radius:50%;filter:blur(70px);z-index:1;animation:float 6s ease-in-out infinite}
.orb-1{top:-6rem;left:-6rem;width:24rem;height:24rem;background:rgba(150,80,200,.4)}
.orb-2{bottom:2.5rem;right:2.5rem;width:20rem;height:20rem;background:rgba(230,185,74,.3);animation-delay:2s}
.hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:1fr;gap:2.5rem;padding:5rem 0;align-items:center}
@media(min-width:900px){.hero-grid{grid-template-columns:7fr 5fr}}
.hero-eyebrow{display:inline-flex;align-items:center;gap:.5rem;padding:.4rem 1rem;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);font-size:.7rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;margin-bottom:1.5rem}
.hero h1{font-size:clamp(2.5rem,5.5vw,4.5rem);font-weight:900;line-height:1.05;margin-bottom:1.25rem}
.gold-text{background:var(--grad-gold);-webkit-background-clip:text;background-clip:text;color:transparent}
.brand-text{background:var(--grad-brand);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero p.lead{font-size:1.15rem;font-style:italic;color:rgba(255,255,255,.88);max-width:42rem;margin-bottom:.5rem}
.hero p.cite{font-size:.85rem;color:rgba(255,255,255,.7);margin-bottom:2rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:.75rem}
.hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;max-width:30rem;margin-top:3rem}
.hero-stats .v{font-family:'Playfair Display',serif;font-size:clamp(1.5rem,3vw,2.25rem);font-weight:800}
.hero-stats .l{font-size:.75rem;color:rgba(255,255,255,.7);margin-top:.2rem}

/* Collage */
.collage{position:relative;width:100%;max-width:26rem;aspect-ratio:1/1;margin:0 auto;display:none}
@media(min-width:900px){.collage{display:block}}
.collage .glow{position:absolute;border-radius:50%;filter:blur(60px)}
.glow-a{inset:1.5rem;background:rgba(230,185,74,.3)}
.glow-b{inset:2.5rem;background:rgba(106,59,181,.25)}
.card-img{position:absolute;background:rgba(255,255,255,.1);backdrop-filter:blur(6px);padding:.5rem;border-radius:1.5rem;box-shadow:var(--shadow-glow);animation:float 6s ease-in-out infinite}
.card-img img{border-radius:1rem;width:100%;height:auto}
.c1{top:.5rem;left:.5rem;width:13rem;transform:rotate(-8deg);outline:2px solid rgba(230,185,74,.4)}
.c2{top:0;right:0;width:12rem;transform:rotate(7deg);outline:2px solid rgba(106,59,181,.5);animation-delay:.6s}
.c3{bottom:0;left:1.5rem;width:13rem;transform:rotate(5deg);outline:2px solid rgba(255,255,255,.3);animation-delay:1.2s}
.c4{bottom:1rem;right:.5rem;width:14rem;transform:rotate(-6deg);outline:2px solid rgba(230,185,74,.5);animation-delay:.3s}

/* ---- About ---- */
.about-grid{display:grid;grid-template-columns:1fr;gap:3.5rem;align-items:center}
@media(min-width:900px){.about-grid{grid-template-columns:1fr 1fr}}
.about-img-wrap{position:relative}
.about-img-wrap img{border-radius:1.5rem;box-shadow:var(--shadow-elegant);width:100%;aspect-ratio:4/5;object-fit:cover}
.about-card{position:absolute;bottom:-1.5rem;right:-1.5rem;background:var(--card);border:1px solid var(--border);border-radius:1rem;padding:1.25rem;box-shadow:var(--shadow-soft);max-width:18rem;display:none}
@media(min-width:640px){.about-card{display:block}}
.about-card .icon{color:var(--primary);margin-bottom:.5rem;width:24px;height:24px}
.about h2{font-size:clamp(2rem,4vw,3rem);font-weight:800;margin-bottom:1.25rem}
.about p{color:var(--muted);margin-bottom:1rem}
.tags{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.25rem}
.tag{display:inline-flex;align-items:center;gap:.4rem;padding:.4rem .85rem;border-radius:999px;background:var(--card);border:1px solid var(--border);font-size:.75rem;font-weight:600}
.tag svg{color:var(--primary);width:14px;height:14px}

/* ---- Vision/Mission ---- */
.vm-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:768px){.vm-grid{grid-template-columns:1fr 1fr}}
.vm-card{position:relative;overflow:hidden;border-radius:1.5rem;padding:2.5rem;transition:transform .3s,box-shadow .3s}
.vm-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-elegant)}
.vm-card.dark{background:var(--grad-brand);color:#fff}
.vm-card.dark p{color:rgba(255,255,255,.9)}
.vm-card.light{background:var(--card);border:1px solid var(--border)}
.vm-card.light p{color:var(--muted)}
.vm-card svg{width:48px;height:48px;margin-bottom:1.25rem}
.vm-card.dark svg{color:var(--gold)}
.vm-card.light svg{color:var(--primary)}
.vm-card h3{font-size:1.75rem;font-weight:800;margin-bottom:1rem}
.vm-card .blob{position:absolute;width:12rem;height:12rem;border-radius:50%;filter:blur(40px)}
.vm-card.dark .blob{top:-2.5rem;right:-2.5rem;background:rgba(255,255,255,.1)}
.vm-card.light .blob{bottom:-2.5rem;left:-2.5rem;background:rgba(230,185,74,.2)}

/* ---- Courses ---- */
.courses-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:600px){.courses-grid{grid-template-columns:1fr 1fr}}
@media(min-width:1000px){.courses-grid{grid-template-columns:repeat(4,1fr)}}
.course-card{background:var(--card);border:1px solid var(--border);border-radius:1.5rem;padding:1.75rem;position:relative;overflow:hidden;transition:transform .3s,box-shadow .3s}
.course-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-elegant)}
.course-card .icon-wrap{width:3.5rem;height:3.5rem;border-radius:1rem;background:var(--grad-brand);display:flex;align-items:center;justify-content:center;color:#fff;margin-bottom:1.25rem;box-shadow:var(--shadow-soft)}
.course-card h3{font-size:1.15rem;font-weight:700;margin-bottom:.5rem}
.course-card .req{font-size:.75rem;color:var(--muted);min-height:2.5rem;margin-bottom:1rem}
.course-card .row{display:flex;justify-content:space-between;align-items:center;padding-top:1rem;border-top:1px solid var(--border)}
.course-card .row .lbl{font-size:.7rem;text-transform:uppercase;letter-spacing:.12em;color:var(--muted)}
.course-card .row .val{font-weight:700;color:var(--primary)}

/* ---- Facilities ---- */
.fac-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(min-width:768px){.fac-grid{grid-template-columns:repeat(4,1fr)}}
.fac-card{background:var(--card);border:1px solid var(--border);border-radius:1rem;padding:1.5rem;display:flex;flex-direction:column;gap:1rem;transition:transform .3s,box-shadow .3s}
.fac-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-elegant)}
.fac-icon{width:3rem;height:3rem;border-radius:.85rem;background:#ece6fa;display:flex;align-items:center;justify-content:center;color:var(--primary)}
.fac-img-grid{display:grid;grid-template-columns:1fr;gap:1.25rem;margin-top:3rem}
@media(min-width:768px){.fac-img-grid{grid-template-columns:repeat(3,1fr)}}
.fac-img-grid img{border-radius:1.5rem;width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .3s,box-shadow .3s}
.fac-img-grid img:hover{transform:translateY(-6px);box-shadow:var(--shadow-elegant)}

/* ---- Student life ---- */
.life-grid{display:grid;grid-template-columns:1fr;gap:3rem;align-items:center}
@media(min-width:900px){.life-grid{grid-template-columns:1fr 1fr}}
.life-imgs{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.life-imgs img{border-radius:1.5rem;aspect-ratio:3/4;object-fit:cover;box-shadow:var(--shadow-soft);width:100%}
.life-imgs img:nth-child(2){margin-top:2rem}
.life-points{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;margin-top:1rem}
.life-points div{display:flex;align-items:center;gap:.5rem;font-size:.9rem;font-weight:500}
.life-points svg{color:var(--primary);width:18px;height:18px;flex-shrink:0}

/* ---- Faculty ---- */
.fac-people{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(min-width:768px){.fac-people{grid-template-columns:repeat(4,1fr)}}
.person{background:var(--card);border:1px solid var(--border);border-radius:1rem;padding:1.5rem;transition:transform .3s,box-shadow .3s}
.person:hover{transform:translateY(-6px);box-shadow:var(--shadow-elegant)}
.avatar{width:3.25rem;height:3.25rem;border-radius:50%;background:var(--grad-brand);display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Playfair Display',serif;font-weight:800;font-size:1.25rem;margin-bottom:1rem;box-shadow:var(--shadow-soft)}
.person h4{font-family:'Plus Jakarta Sans',sans-serif;font-size:.95rem;font-weight:700;margin-bottom:.25rem;letter-spacing:0}
.person .q{font-size:.7rem;color:var(--muted)}
.adjunct-grid{display:grid;grid-template-columns:1fr;gap:1rem;margin-top:1.5rem;max-width:60rem;margin-left:auto;margin-right:auto}
@media(min-width:640px){.adjunct-grid{grid-template-columns:repeat(3,1fr)}}
.adjunct{background:linear-gradient(135deg,#ece6fa,#fff);border:1px solid var(--border);border-radius:1rem;padding:1.25rem;text-align:center;transition:transform .3s,box-shadow .3s}
.adjunct:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft)}

/* ---- Accreditation ---- */
.accred{position:relative;overflow:hidden;color:#fff;text-align:center}
.accred::before{content:"";position:absolute;inset:0;background:var(--grad-hero);opacity:.95;z-index:0}
.accred .container{position:relative;z-index:1;max-width:64rem}
.accred .crown{width:64px;height:64px;color:var(--gold);margin:0 auto 1.25rem}
.accred h2{font-size:clamp(2rem,4vw,3rem);font-weight:800;margin-bottom:1.25rem}
.accred p{color:rgba(255,255,255,.85);font-size:1.05rem;margin-bottom:2.5rem;max-width:48rem;margin-left:auto;margin-right:auto}
.accred-grid{display:grid;grid-template-columns:1fr;gap:1.25rem;max-width:48rem;margin:0 auto}
@media(min-width:640px){.accred-grid{grid-template-columns:1fr 1fr}}
.accred-card{padding:1.5rem;border-radius:1rem;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);backdrop-filter:blur(8px)}
.accred-card svg{width:32px;height:32px;color:var(--gold);margin-bottom:.75rem}
.accred-card p{color:#fff;font-weight:600;margin:0}

/* ---- Contact ---- */
.contact-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
@media(min-width:900px){.contact-grid{grid-template-columns:1fr 1fr}}
.contact-list{display:flex;flex-direction:column;gap:1.25rem}
.contact-item{display:flex;gap:1rem;padding:1.4rem;border-radius:1rem;background:var(--card);border:1px solid var(--border);align-items:flex-start;transition:transform .3s,box-shadow .3s}
.contact-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-elegant)}
.contact-item .ic{width:3rem;height:3rem;border-radius:.85rem;background:var(--grad-brand);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-item .lbl{font-size:.7rem;text-transform:uppercase;letter-spacing:.12em;color:var(--muted);margin-bottom:.25rem}
.contact-item .val{font-weight:700}
.contact-item .sub{font-size:.85rem;color:var(--muted)}
.apply-card{position:relative;overflow:hidden;background:var(--grad-brand);color:#fff;border-radius:1.5rem;padding:2.25rem;box-shadow:var(--shadow-elegant)}
.apply-card .blob{position:absolute;bottom:-4rem;right:-4rem;width:16rem;height:16rem;border-radius:50%;background:rgba(230,185,74,.2);filter:blur(60px)}
.apply-card h3{font-size:2rem;font-weight:800;margin-bottom:.5rem;position:relative}
.apply-card p{position:relative;color:rgba(255,255,255,.85);margin-bottom:1.75rem}
.apply-card .stack{display:flex;flex-direction:column;gap:.75rem;position:relative}
.btn-fullwhite{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;padding:1rem;border-radius:999px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.3);color:#fff;font-weight:600;backdrop-filter:blur(8px);transition:background .3s}
.btn-fullwhite:hover{background:rgba(255,255,255,.22)}
.btn-fullgold{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;padding:1rem;border-radius:999px;background:var(--grad-gold);color:var(--gold-fg);font-weight:800;box-shadow:var(--shadow-glow);transition:transform .25s}
.btn-fullgold:hover{transform:scale(1.02)}

/* ---- Footer ---- */
footer{background:#13102a;color:#fff;padding:3.5rem 0 1.5rem}
.foot-grid{display:grid;grid-template-columns:1fr;gap:2.5rem;margin-bottom:2.5rem}
@media(min-width:768px){.foot-grid{grid-template-columns:repeat(3,1fr)}}
.foot-brand{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem}
.foot-brand img{width:48px;height:48px;border-radius:50%;outline:2px solid rgba(230,185,74,.6);outline-offset:1px;object-fit:cover}
.foot p,.foot li{font-size:.88rem;opacity:.78;line-height:1.6}
.foot h4{font-family:'Plus Jakarta Sans',sans-serif;font-size:1rem;font-weight:700;margin-bottom:1rem;letter-spacing:0}
.foot ul{list-style:none}
.foot ul li{margin-bottom:.5rem}
.foot ul a:hover{color:var(--gold)}
.foot-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;display:flex;flex-direction:column;gap:.75rem;align-items:center;justify-content:space-between;font-size:.85rem;text-align:center}
@media(min-width:768px){.foot-bottom{flex-direction:row;text-align:left}}
.foot-bottom .verse{opacity:.78;font-style:italic;max-width:42rem}
.foot-bottom .verse span{color:var(--gold);font-style:normal;font-weight:700}

/* ---- WhatsApp Sticky ---- */
.wa-fab{position:fixed;bottom:1.5rem;right:1.5rem;z-index:60;display:inline-block}
.wa-fab .ping{position:absolute;inset:0;border-radius:50%;background:var(--green);animation:ping 1.6s cubic-bezier(0,0,.2,1) infinite;opacity:.35}
.wa-fab .core{position:relative;display:flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;background:var(--green);color:#fff;box-shadow:var(--shadow-elegant);transition:transform .25s}
.wa-fab .core:hover{transform:scale(1.1)}
.wa-fab .tip{position:absolute;right:100%;top:50%;transform:translateY(-50%);margin-right:.75rem;background:#13102a;color:#fff;font-size:.75rem;font-weight:600;padding:.4rem .85rem;border-radius:999px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .25s}
.wa-fab:hover .tip{opacity:1}

/* ---- Animations ---- */
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes ping{75%,100%{transform:scale(2);opacity:0}}
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.in{opacity:1;transform:translateY(0)}

/* Floating cards keep their rotation while floating */
.c1.in,.c2.in,.c3.in,.c4.in{opacity:1;transform:none} /* unused but safe */

/* No-JS fallback: show all reveal content */
.no-js .reveal{opacity:1;transform:none}
