
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
:root{
  --navy:#0B2545;--navy2:#122D58;
  --blue:#1D6FA4;--blue2:#2585C1;--blue3:#5BA3CC;
  --sky:#D6EAF8;--cream:#F8FAFB;
  --white:#FFFFFF;--text:#0B2545;--muted:#4D7090;--light:#A8C4D8;
  --border:rgba(29,111,164,.14);
  --ff-display:'Cormorant Garamond',Georgia,serif;
  --ff-body:'Jost',sans-serif;
}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{font-family:var(--ff-body);background:var(--cream);color:var(--text);overflow-x:hidden;width:100%;}

/* ── SCROLLBAR ── */
::-webkit-scrollbar{width:4px;}
::-webkit-scrollbar-track{background:var(--cream);}
::-webkit-scrollbar-thumb{background:var(--blue3);border-radius:2px;}

/* ── NAVIGATION ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:rgba(11,37,69,.97);backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(93,163,204,.18);
  height:70px;display:flex;align-items:center;
  padding:0 4%;overflow:hidden;
}
.nav-inner{
  max-width:1240px;width:100%;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
}
.nav-brand{display:flex;align-items:center;gap:13px;text-decoration:none;}
.nav-logo-img{
  width:46px;height:46px;border-radius:50%;object-fit:cover;
  border:2px solid rgba(93,163,204,.4);
  flex-shrink:0;
}
.nav-brand-text{line-height:1.15;}
.nav-brand-text b{display:block;font-family:var(--ff-display);font-size:15px;font-weight:700;color:var(--white);letter-spacing:.01em;}
.nav-brand-text span{font-size:10px;font-weight:400;color:var(--blue3);letter-spacing:.12em;text-transform:uppercase;}
.nav-links{display:flex;align-items:center;gap:30px;}
.nav-links a{
  text-decoration:none;font-size:13px;font-weight:400;
  color:rgba(255,255,255,.65);letter-spacing:.04em;
  transition:color .2s;
}
.nav-links a:hover{color:var(--blue3);}
.nav-links a.active{color:var(--white);}
.nav-btn{
  background:var(--blue);color:var(--white);
  padding:9px 22px;border-radius:4px;
  font-family:var(--ff-body);font-size:12px;font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;
  text-decoration:none;border:none;cursor:pointer;
  transition:background .2s;
}
.nav-btn:hover{background:var(--blue2);}

/* ── HAMBURGER ── */
.nav-toggle{
  display:none;flex-direction:column;justify-content:space-between;
  width:26px;height:18px;cursor:pointer;background:none;border:none;padding:0;
  flex-shrink:0;
}
.nav-toggle span{
  display:block;width:100%;height:2px;background:rgba(255,255,255,.75);
  border-radius:2px;transition:transform .3s,opacity .3s;
}
.nav-toggle.open span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
.nav-mobile{
  display:none;position:fixed;top:70px;left:0;right:0;z-index:199;
  background:rgba(11,37,69,.98);backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(93,163,204,.18);
  flex-direction:column;padding:20px 5%;gap:0;
}
.nav-mobile.open{display:flex;}
.nav-mobile a{
  text-decoration:none;font-size:14px;font-weight:400;
  color:rgba(255,255,255,.75);letter-spacing:.04em;
  padding:13px 0;border-bottom:1px solid rgba(93,163,204,.1);
  transition:color .2s;
}
.nav-mobile a:last-child{
  border-bottom:none;color:var(--white);background:var(--blue);
  padding:12px 18px;border-radius:4px;text-align:center;
  text-transform:uppercase;font-size:12px;letter-spacing:.08em;font-weight:500;margin-top:12px;
}
.nav-mobile a:hover{color:var(--blue3);}

/* ── HERO ── */
.hero{
  min-height:100vh;
  background:var(--navy);
  position:relative;display:flex;align-items:center;
  overflow:hidden;padding-top:70px;
}
.hero-bg-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(93,163,204,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(93,163,204,.04) 1px,transparent 1px);
  background-size:60px 60px;
}
.hero-bg-glow{
  position:absolute;right:-10%;top:10%;
  width:700px;height:700px;border-radius:50%;
  background:radial-gradient(circle,rgba(29,111,164,.18) 0%,transparent 70%);
  pointer-events:none;
}
.hero-content{
  position:relative;z-index:2;
  max-width:1240px;width:100%;margin:0 auto;
  padding:80px 4%;
  display:grid;grid-template-columns:1fr 420px;
  gap:80px;align-items:center;
  min-width:0;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  margin-bottom:28px;
}
.hero-eyebrow-line{width:36px;height:1px;background:var(--blue3);}
.hero-eyebrow-text{
  font-size:11px;font-weight:500;letter-spacing:.18em;
  text-transform:uppercase;color:var(--blue3);
}
.hero-title{
  font-family:var(--ff-display);
  font-size:clamp(42px,5.5vw,72px);
  font-weight:600;color:var(--white);
  line-height:1.08;letter-spacing:-.01em;
  margin-bottom:24px;
}
.hero-title em{font-style:italic;color:var(--blue3);}
.hero-desc{
  font-size:15px;line-height:1.8;
  color:rgba(255,255,255,.6);
  max-width:500px;margin-bottom:44px;
  font-weight:300;word-wrap:break-word;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;}
.btn-primary{
  background:var(--blue);color:var(--white);
  padding:14px 32px;border-radius:4px;
  text-decoration:none;font-size:13px;font-weight:500;
  letter-spacing:.06em;text-transform:uppercase;
  transition:background .2s,transform .15s;display:inline-block;
}
.btn-primary:hover{background:var(--blue2);transform:translateY(-1px);}
.btn-ghost{
  background:transparent;color:rgba(255,255,255,.7);
  padding:14px 32px;border-radius:4px;
  border:1px solid rgba(255,255,255,.18);
  text-decoration:none;font-size:13px;font-weight:400;
  letter-spacing:.06em;text-transform:uppercase;
  transition:border-color .2s,color .2s;display:inline-block;
}
.btn-ghost:hover{border-color:var(--blue3);color:var(--white);}

.hero-stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:rgba(93,163,204,.15);
  margin-top:60px;border-top:1px solid rgba(93,163,204,.15);
  padding-top:40px;
}
.hero-stat{padding:0 24px 0 0;}
.hero-stat:first-child{padding-left:0;}
.hero-stat-num{
  font-family:var(--ff-display);
  font-size:48px;font-weight:700;
  color:var(--white);line-height:1;display:block;
}
.hero-stat-label{
  font-size:11px;font-weight:400;letter-spacing:.1em;
  text-transform:uppercase;color:var(--blue3);margin-top:6px;
}

/* Hero right — logo + card */
.hero-visual{display:flex;flex-direction:column;align-items:center;gap:28px;}
.hero-logo-ring{
  width:260px;height:260px;border-radius:50%;overflow:hidden;
  border:1px solid rgba(93,163,204,.3);
  box-shadow:0 0 0 8px rgba(29,111,164,.08),0 0 80px rgba(29,111,164,.2);
}
.hero-logo-ring img{width:100%;height:100%;object-fit:cover;}
.hero-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(93,163,204,.18);
  border-radius:10px;padding:22px 24px;width:100%;
  backdrop-filter:blur(8px);
}
.hero-card-label{
  font-size:10px;font-weight:500;letter-spacing:.14em;
  text-transform:uppercase;color:var(--blue3);margin-bottom:14px;
}
.pill-grid{display:flex;flex-wrap:wrap;gap:8px;}
.pill{
  background:rgba(29,111,164,.15);border:1px solid rgba(93,163,204,.2);
  border-radius:3px;padding:6px 12px;
  font-size:11px;font-weight:400;letter-spacing:.04em;color:rgba(255,255,255,.7);
}

/* ── SHARED SECTION ── */
section{padding:88px 4%;}
.section-inner{max-width:1240px;margin:0 auto;min-width:0;width:100%;}
.section-eyebrow{
  display:flex;align-items:center;gap:10px;margin-bottom:14px;
}
.section-eyebrow-line{width:28px;height:1px;background:var(--blue);}
.section-eyebrow-text{
  font-size:11px;font-weight:500;letter-spacing:.16em;
  text-transform:uppercase;color:var(--blue);
}
.section-title{
  font-family:var(--ff-display);
  font-size:clamp(28px,3.5vw,46px);
  font-weight:600;color:var(--navy);
  line-height:1.15;letter-spacing:-.01em;
  margin-bottom:14px;
}
.section-title em{font-style:italic;color:var(--blue);}
.section-desc{
  font-size:15px;line-height:1.8;color:var(--muted);
  max-width:540px;font-weight:300;
}
.section-header{margin-bottom:56px;}

/* ── ABOUT / WHY ── */
.about-section{background:var(--white);}
.about-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2px;
  background:rgba(29,111,164,.08);border:1px solid var(--border);
}
.about-card{
  background:var(--white);padding:36px 32px;
  transition:background .2s;
}
.about-card:hover{background:var(--sky);}
.about-icon{
  width:44px;height:44px;
  border:1px solid var(--border);
  border-radius:4px;display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
}
.about-icon svg{width:22px;height:22px;stroke:var(--blue);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
.about-card h3{
  font-family:var(--ff-display);font-size:19px;font-weight:600;
  color:var(--navy);margin-bottom:10px;
}
.about-card p{font-size:13.5px;line-height:1.7;color:var(--muted);font-weight:300;}

/* ── FACULTIES ── */
.faculties-section{background:var(--cream);}
.fac-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--border);border:1px solid var(--border);}
.fac-card{background:var(--white);overflow:hidden;transition:transform .2s,box-shadow .2s;}
.fac-card:hover{transform:translateY(-3px);box-shadow:0 12px 40px rgba(11,37,69,.1);}
.fac-top{
  background:linear-gradient(145deg,var(--navy) 0%,var(--navy2) 100%);
  padding:28px 28px 22px;
  border-bottom:2px solid var(--blue);
  position:relative;overflow:hidden;
}
.fac-top::after{
  content:'';position:absolute;right:-20px;bottom:-20px;
  width:90px;height:90px;border-radius:50%;
  background:rgba(93,163,204,.1);
}
.fac-no{
  font-family:var(--ff-display);font-size:11px;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--blue3);margin-bottom:8px;display:block;
}
.fac-top h3{
  font-family:var(--ff-display);font-size:20px;font-weight:600;
  color:var(--white);line-height:1.25;margin-bottom:4px;
}
.fac-top p{font-size:12px;color:rgba(255,255,255,.45);letter-spacing:.04em;}
.fac-body{padding:22px 28px;}
.fac-item{
  display:flex;align-items:center;gap:12px;
  padding:10px 0;border-bottom:1px solid var(--sky);
}
.fac-item:last-child{border-bottom:none;}
.fac-dot{width:5px;height:5px;border-radius:50%;background:var(--blue);flex-shrink:0;}
.fac-item span{font-size:13.5px;color:var(--text);font-weight:400;}

/* ── PROGRAMS ── */
.programs-section{
  background:var(--navy);
  border-top:1px solid rgba(93,163,204,.12);
  border-bottom:1px solid rgba(93,163,204,.12);
}
.programs-section .section-title{color:var(--white);}
.programs-section .section-desc{color:rgba(255,255,255,.5);}
.programs-section .section-eyebrow-text{color:var(--blue3);}
.programs-section .section-eyebrow-line{background:var(--blue3);}
.prog-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:2px;background:rgba(93,163,204,.12);
  border:1px solid rgba(93,163,204,.12);
}
.prog-cell{
  background:rgba(255,255,255,.03);
  padding:28px 24px;
  border:none;
  transition:background .2s;
  position:relative;
}
.prog-cell::before{
  content:'';
  position:absolute;top:0;left:0;right:0;height:2px;
  background:transparent;
  transition:background .2s;
}
.prog-cell:hover{background:rgba(29,111,164,.2);}
.prog-cell:hover::before{background:var(--blue);}
.prog-level{
  font-size:10px;font-weight:500;letter-spacing:.14em;
  text-transform:uppercase;color:var(--blue3);margin-bottom:10px;
}
.prog-name{
  font-family:var(--ff-display);font-size:18px;font-weight:600;
  color:var(--white);line-height:1.3;
}

/* ── GALLERY ── */
.gallery-section{background:var(--white);}
.filter-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:36px;}
.filter-btn{
  background:transparent;border:1px solid var(--border);
  padding:8px 20px;border-radius:3px;font-family:var(--ff-body);
  font-size:11px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);cursor:pointer;transition:all .2s;
}
.filter-btn.active,.filter-btn:hover{
  background:var(--blue);border-color:var(--blue);
  color:var(--white);
}
.masonry{columns:3;column-gap:16px;}
.gallery-item{
  break-inside:avoid;margin-bottom:16px;
  position:relative;overflow:hidden;cursor:pointer;
  border:1px solid var(--border);
}
.gallery-item img{
  width:100%;display:block;
  transition:transform .4s ease;
}
.gallery-item:hover img{transform:scale(1.04);}
.gallery-caption{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(11,37,69,.88) 0%,transparent 55%);
  opacity:0;transition:opacity .3s;
  display:flex;align-items:flex-end;padding:18px;
}
.gallery-item:hover .gallery-caption{opacity:1;}
.gallery-caption-title{
  font-family:var(--ff-display);font-size:15px;
  font-weight:600;color:var(--white);line-height:1.3;
}
.gallery-caption-sub{font-size:11px;color:rgba(255,255,255,.65);margin-top:3px;}

/* Lightbox */
#lightbox{
  display:none;position:fixed;inset:0;z-index:999;
  background:rgba(7,20,40,.96);
  align-items:center;justify-content:center;padding:24px;
}
#lightbox.open{display:flex;}
.lb-close{
  position:fixed;top:20px;right:24px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
  color:var(--white);width:42px;height:42px;border-radius:4px;
  font-size:18px;cursor:pointer;z-index:1001;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;font-family:var(--ff-body);
}
.lb-close:hover{background:rgba(255,255,255,.15);}
.lb-arrow{
  position:fixed;top:50%;transform:translateY(-50%);
  background:rgba(29,111,164,.3);border:1px solid rgba(93,163,204,.2);
  color:var(--white);width:46px;height:46px;border-radius:4px;
  font-size:20px;cursor:pointer;z-index:1001;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.lb-arrow:hover{background:rgba(29,111,164,.6);}
.lb-prev{left:16px;}
.lb-next{right:16px;}
.lb-body{max-width:900px;width:100%;text-align:center;}
#lb-img{
  max-height:75vh;max-width:100%;border-radius:4px;
  object-fit:contain;display:block;margin:0 auto;
}
#lb-title{font-family:var(--ff-display);font-size:20px;font-weight:600;color:var(--white);margin-top:18px;}
#lb-sub{font-size:12px;color:rgba(255,255,255,.5);margin-top:5px;letter-spacing:.05em;}
#lb-count{font-size:11px;color:rgba(255,255,255,.3);margin-top:10px;letter-spacing:.1em;}

/* ── GRADUATION BANNER ── */
.grad-banner{
  position:relative;height:440px;overflow:hidden;
}
.grad-banner img{width:100%;height:100%;object-fit:cover;object-position:center 35%;}
.grad-banner-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right,rgba(11,37,69,.88) 0%,rgba(11,37,69,.5) 50%,rgba(11,37,69,.1) 100%);
}
.grad-banner-content{
  position:absolute;inset:0;
  display:flex;align-items:center;padding:0 4%;
}
.grad-banner-inner{max-width:1240px;width:100%;margin:0 auto;}
.grad-banner-inner p{
  font-size:11px;font-weight:500;letter-spacing:.16em;
  text-transform:uppercase;color:var(--blue3);margin-bottom:14px;
}
.grad-banner-inner h2{
  font-family:var(--ff-display);
  font-size:clamp(30px,4vw,52px);font-weight:600;
  color:var(--white);line-height:1.15;margin-bottom:16px;
}
.grad-banner-inner span{font-style:italic;color:var(--blue3);}
.grad-banner-inner small{
  font-size:14px;font-weight:300;color:rgba(255,255,255,.65);
  display:block;max-width:440px;line-height:1.7;
}

/* ── VERIFY ── */
.verify-section{background:var(--cream);}
.verify-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;}
.verify-features{display:flex;flex-direction:column;gap:12px;margin-top:32px;}
.verify-feature{
  display:flex;align-items:center;gap:14px;
  padding:16px 18px;background:var(--white);
  border:1px solid var(--border);border-radius:4px;
}
.verify-feature-icon{
  width:36px;height:36px;background:var(--blue);
  border-radius:3px;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.verify-feature-icon svg{width:18px;height:18px;stroke:var(--white);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.verify-feature span{font-size:13.5px;color:var(--text);font-weight:400;}
.verify-card{
  background:var(--navy);border-radius:8px;padding:40px;
  border:1px solid rgba(93,163,204,.12);
}
.verify-card-contact{display:flex;flex-direction:column;gap:14px;margin-top:24px;}
.verify-contact-item{
  display:flex;align-items:center;gap:14px;
  padding:18px 20px;background:rgba(255,255,255,.05);
  border:1px solid rgba(93,163,204,.15);border-radius:4px;
  text-decoration:none;transition:background .2s;
}
.verify-contact-item:hover{background:rgba(29,111,164,.2);}
.verify-contact-icon{
  width:42px;height:42px;background:var(--blue);
  border-radius:3px;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.verify-contact-icon svg{width:20px;height:20px;stroke:var(--white);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.verify-contact-label{font-size:10px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:3px;}
.verify-contact-value{font-size:15px;font-weight:500;color:var(--white);}

/* ── BRANCHES ── */
.branches-section{background:var(--white);}
.branches-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:var(--border);border:1px solid var(--border);}
.branch-card{background:var(--white);overflow:hidden;}
.branch-top{
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy2) 100%);
  padding:36px 32px;position:relative;overflow:hidden;
  border-bottom:2px solid var(--blue);
}
.branch-top::before{
  content:'';position:absolute;right:-24px;top:-24px;
  width:120px;height:120px;border-radius:50%;
  background:rgba(93,163,204,.08);
}
.branch-num{
  font-family:var(--ff-display);
  font-size:64px;font-weight:700;
  color:rgba(93,163,204,.12);
  position:absolute;right:24px;bottom:4px;line-height:1;
}
.branch-tag{
  display:inline-block;background:var(--blue);color:var(--white);
  font-size:10px;font-weight:500;letter-spacing:.12em;
  text-transform:uppercase;padding:4px 12px;border-radius:2px;margin-bottom:12px;
}
.branch-name{
  font-family:var(--ff-display);font-size:32px;font-weight:600;color:var(--white);
}
.branch-body{padding:24px 32px;}
.branch-row{
  display:flex;align-items:center;gap:12px;
  padding:11px 0;border-bottom:1px solid var(--sky);
  font-size:13.5px;color:var(--muted);
}
.branch-row:last-child{border-bottom:none;}
.branch-row svg{width:16px;height:16px;stroke:var(--blue);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}

/* ── CONTACT ── */
.contact-section{
  background:var(--navy);
  border-top:1px solid rgba(93,163,204,.1);
}
.contact-section .section-title{color:var(--white);}
.contact-section .section-desc{color:rgba(255,255,255,.5);}
.contact-section .section-eyebrow-text{color:var(--blue3);}
.contact-section .section-eyebrow-line{background:var(--blue3);}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;}
.contact-items{display:flex;flex-direction:column;gap:14px;margin-top:32px;}
.contact-item{
  display:flex;align-items:center;gap:16px;
  padding:20px 22px;background:rgba(255,255,255,.04);
  border:1px solid rgba(93,163,204,.12);border-radius:4px;
  transition:background .2s;
}
.contact-item:hover{background:rgba(29,111,164,.15);}
.contact-icon{
  width:44px;height:44px;background:var(--blue);
  border-radius:3px;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.contact-icon svg{width:20px;height:20px;stroke:var(--white);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.contact-label{font-size:10px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:3px;}
.contact-value{font-size:15px;font-weight:500;color:var(--white);}

/* Contact Form */
.contact-form-card{
  background:rgba(255,255,255,.04);border:1px solid rgba(93,163,204,.12);
  border-radius:8px;padding:36px;
}
.contact-form-card h3{
  font-family:var(--ff-display);font-size:26px;font-weight:600;
  color:var(--white);margin-bottom:24px;
}
#form-msg{
  display:none;padding:12px 16px;border-radius:3px;
  margin-bottom:18px;font-size:13px;font-weight:400;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.fg{margin-bottom:14px;}
.fg label{
  display:block;font-size:11px;font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.5);margin-bottom:7px;
}
.fg input,.fg select,.fg textarea{
  width:100%;background:rgba(255,255,255,.07);
  border:1px solid rgba(93,163,204,.2);border-radius:3px;
  padding:12px 14px;font-family:var(--ff-body);font-size:14px;
  color:var(--white);outline:none;transition:border-color .2s;
}
.fg input::placeholder,.fg textarea::placeholder{color:rgba(255,255,255,.25);}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--blue3);}
.fg select{
  cursor:pointer;appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(93,163,204,.7)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 12px center;padding-right:38px;
}
.fg select option{background:var(--navy);color:var(--white);}
.fg textarea{resize:vertical;min-height:96px;}
.form-submit{
  width:100%;background:var(--blue);color:var(--white);
  border:none;padding:14px;border-radius:3px;
  font-family:var(--ff-body);font-size:12px;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  cursor:pointer;transition:background .2s,transform .15s;
}
.form-submit:hover{background:var(--blue2);transform:translateY(-1px);}
.form-submit:disabled{opacity:.6;cursor:not-allowed;transform:none;}

/* ── FOOTER ── */
footer{
  background:#060E1B;padding:52px 4% 28px;
  border-top:1px solid rgba(93,163,204,.1);
}
.footer-inner{max-width:1240px;margin:0 auto;}
.footer-top{
  display:grid;grid-template-columns:2fr 1fr 1fr;
  gap:52px;margin-bottom:40px;padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.footer-brand-logo{display:flex;align-items:center;gap:12px;text-decoration:none;margin-bottom:16px;}
.footer-brand-logo img{width:44px;height:44px;border-radius:50%;object-fit:cover;border:1px solid rgba(93,163,204,.3);}
.footer-brand-logo b{font-family:var(--ff-display);font-size:15px;font-weight:600;color:var(--white);}
.footer-brand p{font-size:13px;line-height:1.7;color:rgba(255,255,255,.35);max-width:300px;font-weight:300;}
.footer-col h4{
  font-size:10px;font-weight:500;letter-spacing:.14em;
  text-transform:uppercase;color:var(--blue3);margin-bottom:18px;
}
.footer-col a{
  display:block;text-decoration:none;
  font-size:13px;color:rgba(255,255,255,.4);
  margin-bottom:11px;font-weight:300;
  transition:color .2s;
}
.footer-col a:hover{color:var(--blue3);}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:10px;
}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,.22);font-weight:300;}
.footer-bottom span{font-size:11px;color:rgba(255,255,255,.18);letter-spacing:.06em;}

/* ── RESPONSIVE ── */
/* Tablet (up to 1024px) */
@media(max-width:1024px){
  .hero-content{grid-template-columns:1fr;gap:40px;}
  .hero-visual{display:none;}
  .fac-grid{grid-template-columns:1fr 1fr;}
  .prog-grid{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;}
  .verify-grid{grid-template-columns:1fr;}
  .eloc-intro{grid-template-columns:1fr;}
  .eloc-province-row{grid-template-columns:1fr;gap:12px;}
}
/* Mobile landscape / small tablet (up to 768px) */
@media(max-width:768px){
  nav{padding:0 5%;}
  .nav-links{display:none;}
  .nav-btn{display:none;}
  .nav-toggle{display:flex;}
  .about-grid{grid-template-columns:1fr;}
  .fac-grid{grid-template-columns:1fr;}
  .prog-grid{grid-template-columns:repeat(2,1fr);}
  .branches-grid{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr;gap:32px;}
  .masonry{columns:2;}
  .form-row{grid-template-columns:1fr;}
  .verify-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .hero-stats{grid-template-columns:repeat(3,1fr);}
  .hero-content{padding:48px 5%;}
  section{padding:60px 5%;}
  .eloc-skills-grid{grid-template-columns:1fr 1fr;}
  .grad-banner{height:320px;}
  .hero-stat-num{font-size:36px;}
}
/* Mobile portrait (up to 480px) */
@media(max-width:480px){
  .prog-grid{grid-template-columns:1fr 1fr;}
  .masonry{columns:1;}
  .hero-stats{grid-template-columns:1fr 1fr;}
  .hero-stat:last-child{grid-column:1/-1;}
  .hero-content{padding:40px 5%;}
  section{padding:48px 5%;}
  .hero-actions{flex-direction:column;}
  .btn-primary,.btn-ghost{text-align:center;}
  .eloc-skills-grid{grid-template-columns:1fr;}
  .eloc-cta-btns{flex-direction:column;}
  .contact-form-card{padding:24px 18px;}
  .verify-card{padding:24px 18px;}
  .branch-body{padding:18px 20px;}
  .branch-top{padding:24px 20px;}
  .fac-body{padding:18px 20px;}
  .fac-top{padding:20px 20px 16px;}
  .footer-top{gap:24px;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .nav-toggle{display:flex;}
}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.hero-text > *{animation:fadeUp .7s ease both;opacity:0;}
.hero-eyebrow{animation-delay:.1s;}
.hero-title{animation-delay:.25s;}
.hero-desc{animation-delay:.38s;}
.hero-actions{animation-delay:.5s;}
.hero-stats{animation-delay:.62s;}

/* ELOCUTION SECTION */
.eloc-section{padding:80px 0;background:var(--white);}
.eloc-hero-section{position:relative;height:520px;overflow:hidden;}
.eloc-hero-section img{width:100%;height:100%;object-fit:cover;object-position:center 30%;}
.eloc-hero-overlay{position:absolute;inset:0;background:linear-gradient(105deg,rgba(11,37,69,.93) 0%,rgba(11,37,69,.65) 55%,rgba(11,37,69,.15) 100%);}
.eloc-hero-content{position:absolute;inset:0;display:flex;align-items:center;padding:0 4%;}
.eloc-hero-inner{max-width:1240px;width:100%;margin:0 auto;}
.eloc-eyebrow{display:flex;align-items:center;gap:10px;margin-bottom:18px;}
.eloc-eyebrow-line{width:28px;height:1px;background:var(--blue3);}
.eloc-eyebrow-span{font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--blue3);}
.eloc-hero-title{font-family:var(--ff-display);font-size:clamp(38px,5.5vw,66px);font-weight:600;color:var(--white);line-height:1.1;letter-spacing:-.01em;margin-bottom:18px;}
.eloc-hero-title em{font-style:italic;color:var(--blue3);}
.eloc-hero-sub{font-size:15px;line-height:1.8;color:rgba(255,255,255,.65);max-width:540px;font-weight:300;}
.eloc-hero-btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:32px;}
.eloc-body{max-width:1240px;margin:0 auto;padding:0 4%;}
.eloc-intro{display:grid;grid-template-columns:1fr 360px;gap:64px;align-items:start;padding:80px 0;border-bottom:1px solid var(--border);}
.eloc-stats-panel{display:flex;flex-direction:column;gap:2px;background:var(--border);border:1px solid var(--border);}
.eloc-stat-box{background:var(--white);padding:28px 26px;}
.eloc-stat-num{font-family:var(--ff-display);font-size:52px;font-weight:700;color:var(--blue);display:block;line-height:1;}
.eloc-stat-label{font-size:11px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-top:7px;display:block;}
.eloc-qual-box{background:var(--navy);padding:28px 26px;}
.eloc-qual-tag{font-size:10px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--blue3);margin-bottom:10px;display:block;}
.eloc-qual-title{font-family:var(--ff-display);font-size:19px;font-weight:600;color:var(--white);line-height:1.3;}
.eloc-qual-sub{font-size:12px;color:rgba(255,255,255,.45);margin-top:7px;display:block;}
.eloc-skills{padding:72px 0;border-bottom:1px solid var(--border);}
.eloc-skills-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--border);border:1px solid var(--border);}
.eloc-skill-card{background:var(--white);padding:32px 28px;transition:background .2s;}
.eloc-skill-card:hover{background:var(--sky);}
.eloc-skill-icon{width:44px;height:44px;border:1px solid var(--border);border-radius:4px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;color:var(--blue);}
.eloc-skill-icon svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;}
.eloc-skill-card h4{font-family:var(--ff-display);font-size:18px;font-weight:600;color:var(--navy);margin-bottom:8px;}
.eloc-skill-card p{font-size:13px;line-height:1.7;color:var(--muted);font-weight:300;}
.eloc-districts{padding:72px 0;border-bottom:1px solid var(--border);}
.eloc-province-table{display:flex;flex-direction:column;gap:2px;background:var(--border);border:1px solid var(--border);}
.eloc-province-row{background:var(--white);padding:20px 28px;display:grid;grid-template-columns:220px 1fr;gap:24px;align-items:center;transition:background .2s;}
.eloc-province-row:hover{background:var(--sky);}
.eloc-province-name{font-family:var(--ff-display);font-size:15px;font-weight:600;color:var(--navy);}
.eloc-district-list{display:flex;flex-wrap:wrap;gap:8px;}
.eloc-district-pill{background:var(--sky);border:1px solid var(--border);border-radius:3px;padding:5px 14px;font-size:12px;font-weight:400;color:var(--text);letter-spacing:.02em;transition:background .2s,color .2s,border-color .2s;cursor:default;}
.eloc-district-pill:hover{background:var(--blue);color:var(--white);border-color:var(--blue);}
.eloc-cta{background:var(--navy);padding:72px 40px;text-align:center;border-top:1px solid rgba(93,163,204,.12);border-bottom:1px solid rgba(93,163,204,.12);}
.eloc-cta-inner{max-width:580px;margin:0 auto;}
.eloc-cta-eyebrow{font-size:11px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--blue3);margin-bottom:12px;}
.eloc-cta-title{font-family:var(--ff-display);font-size:clamp(26px,3.5vw,40px);font-weight:600;color:var(--white);line-height:1.2;margin-bottom:14px;}
.eloc-cta-title em{font-style:italic;color:var(--blue3);}
.eloc-cta-desc{font-size:14px;color:rgba(255,255,255,.55);font-weight:300;margin-bottom:32px;}
.eloc-cta-btns{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;}
@media(max-width:1024px){.eloc-intro{grid-template-columns:1fr;}.eloc-province-row{grid-template-columns:1fr;gap:12px;}}
@media(max-width:768px){.eloc-skills-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:480px){.eloc-skills-grid{grid-template-columns:1fr;}}


/* Multipage additions */
.page-offset{height:70px;background:var(--navy);} 
.nav-links a.active,.nav-mobile a.active{color:var(--white);}
.whatsapp-float{position:fixed;right:20px;bottom:20px;z-index:300;background:#25D366;color:#fff;text-decoration:none;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 30px rgba(0,0,0,.25);font-weight:700;font-size:24px;transition:transform .15s;}
.whatsapp-float:hover{transform:translateY(-2px);} 
.contact-actions{display:grid;grid-template-columns:1fr;gap:12px;margin-top:12px;}
.whatsapp-note{text-align:center;font-size:10px;color:rgba(255,255,255,.32);margin-top:12px;letter-spacing:.06em;}
@media(max-width:480px){.whatsapp-float{right:14px;bottom:14px;width:50px;height:50px;font-size:21px;}}


/* ===== FINAL RESPONSIVE FIXES - ALL DEVICES ===== */
html, body { max-width:100%; overflow-x:hidden; }
img, video, iframe { max-width:100%; height:auto; }
a, button, input, select, textarea { touch-action:manipulation; }
nav{overflow:visible;height:72px;}
.nav-inner{gap:18px;}
.nav-brand{min-width:0;}
.nav-brand-text b{white-space:normal;}
.nav-links{gap:20px;white-space:nowrap;}
.nav-mobile{
  max-height:calc(100vh - 72px);
  overflow-y:auto;
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}
.nav-mobile a.active{color:#fff;background:rgba(29,111,164,.28);padding-left:12px;border-radius:4px;}
.nav-mobile a:last-child.active{background:var(--blue);}

/* better page link click targets */
.btn-primary,.btn-ghost,.nav-btn,.form-submit,.filter-btn{min-height:44px;display:inline-flex;align-items:center;justify-content:center;}

/* Home hero improvements */
.hero{min-height:auto;padding-top:72px;}
.hero-content{min-height:calc(100vh - 72px);}
.hero-stats-premium{
  margin-top:46px;
  padding:0;
  border:1px solid rgba(93,163,204,.22);
  background:linear-gradient(135deg,rgba(255,255,255,.10),rgba(29,111,164,.08));
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(0,0,0,.18);
  backdrop-filter:blur(12px);
}
.hero-stats-premium .hero-stat{
  position:relative;
  padding:24px 22px;
  background:rgba(255,255,255,.035);
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-right:1px solid rgba(93,163,204,.16);
}
.hero-stats-premium .hero-stat:last-child{border-right:0;}
.hero-stats-premium .hero-stat::after{
  content:"";
  position:absolute;
  right:-26px;top:-26px;
  width:88px;height:88px;border-radius:50%;
  background:radial-gradient(circle,rgba(91,163,204,.22),transparent 68%);
  pointer-events:none;
}
.hero-stat-kicker{
  display:inline-block;
  width:max-content;
  margin-bottom:10px;
  padding:5px 10px;
  border:1px solid rgba(91,163,204,.28);
  border-radius:999px;
  color:var(--blue3);
  background:rgba(29,111,164,.13);
  font-size:10px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero-stats-premium .hero-stat-num{
  font-size:clamp(42px,5vw,66px);
  letter-spacing:-.03em;
  text-shadow:0 10px 28px rgba(0,0,0,.22);
}
.hero-stats-premium .hero-stat-label{
  max-width:160px;
  line-height:1.35;
  color:rgba(255,255,255,.72);
  letter-spacing:.07em;
}
.hero-stats-premium .hero-stat-main{
  background:linear-gradient(145deg,rgba(29,111,164,.30),rgba(255,255,255,.055));
}
.hero-stats-premium .hero-stat-main .hero-stat-num{color:#fff;}

/* responsive grids */
.about-grid,.fac-grid,.prog-grid,.branches-grid,.verify-grid,.contact-grid,.footer-top,.eloc-skills-grid{min-width:0;}
.about-card,.fac-card,.prog-cell,.branch-card,.contact-form-card,.verify-card,.eloc-skill-card{min-width:0;}
.contact-item,.verify-contact-item,.branch-row{overflow-wrap:anywhere;}
.fg input,.fg select,.fg textarea{font-size:16px;} /* prevents iPhone zoom */

@media(max-width:1180px){
  .nav-links{display:none;}
  .nav-btn{display:none;}
  .nav-toggle{display:flex;}
  .hero-content{grid-template-columns:1fr 330px;gap:42px;}
  .hero-logo-ring{width:220px;height:220px;}
}
@media(max-width:900px){
  nav{height:68px;padding:0 5%;}
  .nav-mobile{top:68px;}
  .hero{padding-top:68px;}
  .hero-content{grid-template-columns:1fr;gap:28px;min-height:auto;padding:52px 5% 42px;}
  .hero-visual{display:flex;align-items:flex-start;}
  .hero-logo-ring{display:none;}
  .hero-card{max-width:100%;}
  .hero-title{font-size:clamp(38px,9vw,58px);}
  .hero-desc{font-size:15px;max-width:100%;margin-bottom:30px;}
  .hero-stats-premium{grid-template-columns:repeat(3,1fr);margin-top:34px;}
  .hero-stats-premium .hero-stat{padding:20px 16px;min-height:135px;}
  .fac-grid,.about-grid{grid-template-columns:1fr 1fr;}
  .contact-grid,.verify-grid,.branches-grid{grid-template-columns:1fr;gap:28px;}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media(max-width:640px){
  .nav-logo-img{width:42px;height:42px;}
  .nav-brand-text b{font-size:13px;line-height:1.05;}
  .nav-brand-text span{font-size:9px;letter-spacing:.08em;}
  section{padding:46px 5%;}
  .section-header{margin-bottom:32px;}
  .hero-content{padding:38px 5% 34px;}
  .hero-eyebrow{margin-bottom:20px;}
  .hero-eyebrow-text{font-size:10px;letter-spacing:.12em;}
  .hero-title{font-size:40px;margin-bottom:18px;}
  .hero-actions{display:grid;grid-template-columns:1fr;gap:12px;}
  .btn-primary,.btn-ghost{width:100%;padding:13px 18px;text-align:center;}
  .hero-stats-premium{grid-template-columns:1fr;gap:0;border-radius:16px;}
  .hero-stats-premium .hero-stat{min-height:112px;border-right:0;border-bottom:1px solid rgba(93,163,204,.16);padding:20px;}
  .hero-stats-premium .hero-stat:last-child{border-bottom:0;}
  .hero-stats-premium .hero-stat-label{max-width:100%;}
  .hero-card{padding:18px;}
  .pill{font-size:10px;padding:6px 10px;}
  .fac-grid,.about-grid,.prog-grid,.eloc-skills-grid{grid-template-columns:1fr;}
  .masonry{columns:1;}
  .filter-row{gap:8px;}
  .filter-btn{flex:1 1 auto;padding:8px 12px;}
  .footer-top{grid-template-columns:1fr;}
  .footer-bottom{padding-bottom:64px;}
  .grad-banner{height:300px;}
  .eloc-hero-section{height:420px;}
  .eloc-hero-content{padding:0 5%;}
  .eloc-intro,.eloc-skills,.eloc-districts{padding:48px 0;}
  .eloc-cta{padding:48px 20px;}
}
@media(max-width:380px){
  .nav-brand-text b{font-size:12px;}
  .nav-brand-text span{display:none;}
  .hero-title{font-size:35px;}
  .section-title{font-size:28px;}
  .contact-form-card,.verify-card{padding:22px 16px;}
}
