*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green-dark:#085041; --green-mid:#0F6E56; --green-light:#1D9E75;
      --green-pale:#E1F5EE; --green-soft:#9FE1CB; --lime-pale:#EAF3DE;
      --amber-pale:#FAEEDA; --amber-mid:#FAC775;
      --text-dark:#1a1a1a; --text-mid:#444; --text-muted:#888;
      --border:rgba(0,0,0,0.08); --radius:12px; --radius-lg:20px;
    }
    html { scroll-behavior: smooth; }
    body { font-family: "DM Sans", sans-serif; color: var(--text-dark); background:#fff; overflow-x:hidden; }

    /* NAV */
    .nav {
      position:sticky; top:0; z-index:100;
      display:flex; align-items:center; justify-content:space-between;
      padding:0 48px; height:68px;
      background:rgba(255,255,255,0.95); backdrop-filter:blur(12px);
      border-bottom:1px solid var(--border);
    }
    .nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
    .nav-logo img { height:48px; width:auto; object-fit:contain; }
    .nav-logo-text { font-family:"Playfair Display",serif; font-size:18px; color:var(--green-dark); line-height:1.2; }
    .nav-logo-sub { font-size:11px; color:var(--text-muted); font-weight:400; display:block; font-style:italic; }
    .nav-links { display:flex; gap:32px; list-style:none; }
    .nav-links a { font-size:14px; color:var(--text-mid); text-decoration:none; transition:color 0.2s; }
    .nav-links a:hover { color:var(--green-mid); }
    .nav-cta { background:var(--green-mid); color:#fff; border:none; padding:10px 22px; border-radius:8px; font-size:14px; font-weight:500; cursor:pointer; font-family:inherit; transition:background 0.2s; }
    .nav-cta:hover { background:var(--green-dark); }
      .nav-hamburger { display:none; flex-direction:column; justify-content:center; gap:5px; cursor:pointer; padding:6px; background:none; border:none; flex-shrink:0; }
    .nav-hamburger span { display:block; width:22px; height:2px; background:var(--green-dark); border-radius:2px; transition:all 0.3s; }
    .nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity:0; }
    .nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
    .nav-mobile-menu { display:none; position:fixed; top:68px; left:0; right:0; z-index:99; background:#fff; border-bottom:1px solid var(--border); padding:8px 0; flex-direction:column; box-shadow:0 8px 24px rgba(0,0,0,0.08); }
    .nav-mobile-menu.open { display:flex; }
    .nav-mobile-menu a { font-size:15px; color:var(--text-mid); text-decoration:none; padding:12px 24px; border-bottom:1px solid var(--border); transition:background 0.15s; }
    .nav-mobile-menu a:hover { background:#f9f9f9; }
    .nav-mobile-menu a.active { color:var(--green-mid); font-weight:500; background:var(--green-pale); }
    .nav-mobile-cta { margin:12px 24px 16px; background:var(--green-mid); color:#fff; border:none; padding:13px; border-radius:8px; font-size:14px; font-weight:500; font-family:inherit; cursor:pointer; width:calc(100% - 48px); text-align:center; }

       /* WELCOME POPUP */
.welcome-overlay {
  position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,0.6); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  padding:16px;
  animation:fadeIn 0.4s ease;
}
.welcome-overlay.hidden { display:none; }

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.welcome-box {
  background:#fff;
  border-radius:24px;
  padding:48px 40px 40px;
  max-width:420px;
  width:100%;
  text-align:center;
  box-shadow:0 32px 80px rgba(0,0,0,0.2);
  animation:popIn 0.45s cubic-bezier(0.34,1.56,0.64,1);
  position:relative;
}
@keyframes popIn {
  from { opacity:0; transform:scale(0.88) translateY(24px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}

.welcome-logo {
  width:72px;
  height:72px;
  object-fit:contain;
  border-radius:16px;
  margin-bottom:20px;
}

.welcome-title {
  font-family:"Playfair Display", serif;
  font-size:26px;
  font-weight:400;
  color:var(--green-dark);
  line-height:1.3;
  margin-bottom:10px;
}

.welcome-tagline {
  font-size:14px;
  color:var(--text-muted);
  font-style:italic;
  margin-bottom:8px;
  line-height:1.6;
}

.welcome-divider {
  width:48px;
  height:3px;
  background:var(--green-light);
  border-radius:2px;
  margin:16px auto 20px;
}

.welcome-sub {
  font-size:14px;
  color:var(--text-mid);
  line-height:1.75;
  font-weight:300;
  margin-bottom:32px;
}

.welcome-btn {
  background:var(--green-mid);
  color:#fff;
  border:none;
  padding:13px 36px;
  border-radius:10px;
  font-size:15px;
  font-weight:500;
  font-family:inherit;
  cursor:pointer;
  transition:background 0.2s, transform 0.15s;
  width:100%;
}
.welcome-btn:hover {
  background:var(--green-dark);
  transform:translateY(-1px);
}

.welcome-skip {
  display:block;
  margin-top:14px;
  font-size:12px;
  color:var(--text-muted);
  cursor:pointer;
  background:none;
  border:none;
  font-family:inherit;
  transition:color 0.2s;
}
.welcome-skip:hover { color:var(--text-dark); }

@media (max-width:480px) {
  .welcome-box { padding:36px 24px 28px; }
  .welcome-title { font-size:22px; }
}
    /* MODAL OVERLAY */
    .modal-overlay {
      display:none; position:fixed; inset:0; z-index:999;
      background:rgba(0,0,0,0.55); backdrop-filter:blur(4px);
      align-items:center; justify-content:center; padding:24px;
    }
    .modal-overlay.active { display:flex; }
    .modal {
      background:#fff; border-radius:20px; width:100%; max-width:480px;
      padding:36px; position:relative; box-shadow:0 24px 64px rgba(0,0,0,0.18);
      animation:modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
    }
    @keyframes modalIn { from { opacity:0; transform:scale(0.92) translateY(16px); } to { opacity:1; transform:scale(1) translateY(0); } }
    .modal-close {
      position:absolute; top:16px; right:16px; background:none; border:none;
      cursor:pointer; font-size:22px; color:var(--text-muted); line-height:1;
      width:32px; height:32px; display:flex; align-items:center; justify-content:center;
      border-radius:50%; transition:background 0.15s;
    }
    .modal-close:hover { background:#f0f0f0; }
    .modal-logo { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
    .modal-logo img { height:40px; }
    .modal-logo-text { font-family:"Playfair Display",serif; font-size:16px; color:var(--green-dark); }
    .modal-logo-tag { font-size:11px; color:var(--text-muted); font-style:italic; }
    .modal h2 { font-family:"Playfair Display",serif; font-size:24px; font-weight:400; color:var(--green-dark); margin-bottom:6px; }
    .modal p { font-size:14px; color:var(--text-mid); margin-bottom:24px; line-height:1.6; }
    .form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
     .form-row { width: 100%;  overflow: hidden; }
    .form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
    .form-group label { font-size:12px; font-weight:500; color:var(--text-mid); letter-spacing:0.3px; }
    .form-group input, .form-group select, .form-group textarea {
  border:1px solid var(--border);
  border-radius:8px;
  padding:10px 14px;
  font-size:14px;
  font-family:inherit;
  color:var(--text-dark);
  outline:none;
  transition:border-color 0.2s;
  background:#fff;

  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
    .form-row { overflow:hidden; }
    form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--green-light); }
    .form-group textarea { resize:vertical; min-height:70px; }
    .modal-submit {
      width:100%; padding:13px; background:var(--green-mid); color:#fff;
      border:none; border-radius:10px; font-size:15px; font-weight:500;
      font-family:inherit; cursor:pointer; transition:background 0.2s;
      display:flex; align-items:center; justify-content:center; gap:8px; margin-top:4px;
    }

    .modal-submit:hover { background:var(--green-dark); }
    .modal-submit svg { width:18px; height:18px; fill:#fff; }
    .modal-note { font-size:11px; color:var(--text-muted); text-align:center; margin-top:12px; }

    /* SUCCESS STATE */
    .modal-success { display:none; text-align:center; padding:16px 0; }
    .modal-success.active { display:block; }
    .modal-form-content.hidden { display:none; }
    .success-icon { font-size:48px; margin-bottom:12px; }
    .success-title { font-family:"Playfair Display",serif; font-size:22px; color:var(--green-dark); margin-bottom:8px; }
    .success-msg { font-size:14px; color:var(--text-mid); line-height:1.7; }

    /* HERO SLIDER */
    .hero-slider { position:relative; overflow:hidden; height:520px; }
    .slides-track { display:flex; height:100%; transition:transform 0.65s cubic-bezier(0.4,0,0.2,1); will-change:transform; }
    .slide { min-width:100%; height:100%; display:grid; grid-template-columns:1fr 1fr; flex-shrink:0; }
    .slide-left { display:flex; flex-direction:column; justify-content:center; padding:64px 56px; }
    .slide-badge { display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:500; letter-spacing:0.6px; text-transform:uppercase; padding:5px 14px; border-radius:20px; margin-bottom:22px; width:fit-content; }
    .slide-title { font-family:"Playfair Display",serif; font-size:44px; font-weight:400; line-height:1.18; margin-bottom:18px; }
    .slide-title em { font-style:italic; }
    .slide-sub { font-size:15px; line-height:1.75; margin-bottom:32px; max-width:400px; font-weight:300; }
    .slide-btns { display:flex; gap:12px; flex-wrap:wrap; }
    .btn-p { padding:12px 26px; border-radius:8px; font-size:14px; font-weight:500; border:none; cursor:pointer; font-family:inherit; transition:opacity 0.2s,transform 0.15s; }
    .btn-p:hover { opacity:0.88; transform:translateY(-1px); }
    .btn-s { padding:12px 26px; border-radius:8px; font-size:14px; font-weight:500; background:transparent; cursor:pointer; font-family:inherit; transition:opacity 0.2s; border:1.5px solid; }
    .btn-s:hover { opacity:0.7; }
    .slide-right { position:relative; overflow:hidden; }
    .img-ph { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; text-align:center; padding:20px; border-left:2px dashed rgba(0,0,0,0.12); }
    .img-ph svg { opacity:0.3; }
    .img-ph-title { font-size:14px; font-weight:500; color:var(--text-mid); }
    .img-ph-label { font-size:12px; color:var(--text-muted); }

    .s0 .slide-left { background:linear-gradient(140deg,#E1F5EE 0%,#EAF3DE 100%); }
    .s0 .slide-badge { background:#9FE1CB; color:#085041; }
    .s0 .slide-title { color:#085041; }
    .s0 .slide-sub { color:#2a6b58; }
    .s0 .btn-p { background:#0F6E56; color:#fff; }
    .s0 .btn-s { color:#0F6E56; border-color:#0F6E56; }
    .s0 .img-ph { background:#d0ede3; }
    .s1 .slide-left { background:linear-gradient(140deg,#EAF3DE 0%,#d4eab8 100%); }
    .s1 .slide-badge { background:#C0DD97; color:#173404; }
    .s1 .slide-title { color:#1e3d08; }
    .s1 .slide-sub { color:#345a14; }
    .s1 .btn-p { background:#3B6D11; color:#fff; }
    .s1 .btn-s { color:#3B6D11; border-color:#3B6D11; }
    .s1 .img-ph { background:#c8dda3; }
    .s2 .slide-left { background:linear-gradient(140deg,#FAEEDA 0%,#f7d8a0 100%); }
    .s2 .slide-badge { background:#FAC775; color:#412402; }
    .s2 .slide-title { color:#3a1e00; }
    .s2 .slide-sub { color:#6b3d10; }
    .s2 .btn-p { background:#854F0B; color:#fff; }
    .s2 .btn-s { color:#854F0B; border-color:#854F0B; }
    .s2 .img-ph { background:#f0ca88; }
    .s3 .slide-left { background:linear-gradient(140deg,#E6F1FB 0%,#c4daf5 100%); }
    .s3 .slide-badge { background:#B5D4F4; color:#042C53; }
    .s3 .slide-title { color:#042C53; }
    .s3 .slide-sub { color:#184070; }
    .s3 .btn-p { background:#185FA5; color:#fff; }
    .s3 .btn-s { color:#185FA5; border-color:#185FA5; }
    .s3 .img-ph { background:#a8c8f0; }

    .slider-controls { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); display:flex; align-items:center; gap:14px; z-index:5; }
    .arrow-btn { width:38px; height:38px; border-radius:50%; border:1px solid rgba(0,0,0,0.15); background:rgba(255,255,255,0.7); backdrop-filter:blur(6px); cursor:pointer; font-size:16px; color:var(--text-dark); display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
    .arrow-btn:hover { background:rgba(255,255,255,0.95); }
    .dots { display:flex; gap:7px; }
    .dot { width:8px; height:8px; border-radius:50%; background:rgba(0,0,0,0.2); border:none; cursor:pointer; transition:all 0.3s; padding:0; }
    .dot.active { background:var(--green-mid); width:26px; border-radius:4px; }
    .slider-progress { height:3px; background:rgba(0,0,0,0.06); }
    .slider-progress-fill { height:100%; background:var(--green-mid); width:0%; transition:width 0.08s linear; }

    /* STATS BAR */
    .stats-bar { display:flex; background:var(--green-dark); }
    .stat-item { flex:1; text-align:center; padding:22px 16px; border-right:1px solid rgba(255,255,255,0.12); }
    .stat-item:last-child { border-right:none; }
    .stat-num { font-family:"Playfair Display",serif; font-size:26px; color:#fff; }
    .stat-label { font-size:12px; color:var(--green-soft); margin-top:4px; font-weight:300; }

    /* SECTIONS */
    .section { padding:72px 80px; }
    .section-label { font-size:11px; font-weight:500; letter-spacing:1px; text-transform:uppercase; color:var(--green-light); margin-bottom:10px; }
    .section-title { font-family:"Playfair Display",serif; font-size:34px; font-weight:400; color:var(--text-dark); margin-bottom:14px; line-height:1.25; }
    .section-sub { font-size:15px; color:var(--text-mid); line-height:1.8; max-width:560px; margin-bottom:40px; font-weight:300; }

    /* PILLARS */
    .pillars { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
    .pillar-card { border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; background:#fff; transition:box-shadow 0.2s,transform 0.2s; }
    .pillar-card:hover { box-shadow:0 8px 32px rgba(0,0,0,0.08); transform:translateY(-3px); }
    .pillar-img { height:180px; }
    .pillar-img .img-ph { border-left:none; border-bottom:1px dashed rgba(0,0,0,0.12); border-radius:0; }
    .pillar-img .img-ph.bg1 { background:#d0ede3; }
    .pillar-img .img-ph.bg2 { background:#c8dda3; }
    .pillar-img .img-ph.bg3 { background:#f0ca88; }
    .pillar-body { padding:24px; }
    .pillar-title { font-size:16px; font-weight:500; color:var(--text-dark); margin-bottom:8px; }
    .pillar-text { font-size:14px; color:var(--text-mid); line-height:1.7; font-weight:300; }

    /* GALLERY */
    .gallery-section { padding:72px 80px; background:#f8faf9; }
    .gallery-grid { display:grid; grid-template-columns:2fr 1fr 1fr; grid-template-rows:210px 210px; gap:14px; margin-top:36px; }
    .gallery-grid .img-ph { border-radius:var(--radius); border:2px dashed rgba(0,0,0,0.1); }
    .gallery-grid .img-ph.big { grid-row:1 / 3; background:#cce8dc; border-radius:var(--radius-lg); }
    .gallery-grid .img-ph:nth-child(2) { background:#d4eab8; }
    .gallery-grid .img-ph:nth-child(3) { background:#f0ca88; }
    .gallery-grid .img-ph:nth-child(4) { background:#a8c8f0; }
    .gallery-grid .img-ph:nth-child(5) { background:#f4c0d1; }

    /* CAMPUS */
    .campus-section { padding:72px 80px; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
    .campus-img { height:360px; border-radius:var(--radius-lg); overflow:hidden; }
    .campus-img .img-ph { border-radius:var(--radius-lg); background:#cce8dc; border:2px dashed rgba(0,0,0,0.1); border-left:2px dashed rgba(0,0,0,0.1); }
    .campus-text .section-sub { max-width:100%; }
    .checklist { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
    .checklist li { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--text-mid); font-weight:300; line-height:1.6; }
    .check-icon { width:22px; height:22px; border-radius:50%; background:var(--green-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
    .check-icon svg { width:12px; height:12px; }

    /* VIDEO */
    .video-section { padding:72px 80px; background:var(--green-pale); text-align:center; }
    .video-section .section-sub { margin:0 auto 36px; }
    .video-wrap { max-width:760px; margin:0 auto; position:relative; border-radius:var(--radius-lg); overflow:hidden; height:400px; }
    .video-wrap .img-ph { background:#a8d8c8; border:2px dashed rgba(0,80,60,0.2); border-radius:var(--radius-lg); }
    .play-btn { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:72px; height:72px; border-radius:50%; background:var(--green-mid); border:3px solid rgba(255,255,255,0.6); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:transform 0.2s,background 0.2s; }
    .play-btn:hover { transform:translate(-50%,-50%) scale(1.08); background:var(--green-dark); }
    .play-arrow { width:0; height:0; border-top:13px solid transparent; border-bottom:13px solid transparent; border-left:22px solid #fff; margin-left:5px; }

    /* TESTIMONIALS */
    .testimonials { padding:72px 80px; }
    .testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
    .testi-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; }
    .testi-avatar { width:54px; height:54px; border-radius:50%; overflow:hidden; margin-bottom:16px; }
    .testi-avatar .img-ph { background:#c8dda3; border-radius:50%; border:2px dashed rgba(0,0,0,0.12); font-size:10px; }
    .testi-quote { font-size:14px; color:var(--text-mid); line-height:1.75; font-style:italic; font-weight:300; margin-bottom:16px; }
    .testi-quote::before { content:"\201C"; font-family:"Playfair Display",serif; font-size:40px; color:var(--green-soft); line-height:0; vertical-align:-16px; margin-right:4px; }
    .testi-name { font-size:14px; font-weight:500; color:var(--text-dark); }
    .testi-role { font-size:12px; color:var(--text-muted); margin-top:2px; }

    /* NEP */
    .nep-section { padding:72px 80px; background:var(--green-dark); }
    .nep-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
    .nep-tag { background:rgba(255,255,255,0.15); color:var(--green-soft); font-size:11px; font-weight:500; letter-spacing:0.8px; text-transform:uppercase; padding:5px 14px; border-radius:20px; display:inline-block; margin-bottom:16px; }
    .nep-title { font-family:"Playfair Display",serif; font-size:32px; color:#fff; font-weight:400; line-height:1.25; margin-bottom:16px; }
    .nep-text { font-size:15px; color:rgba(255,255,255,0.7); line-height:1.8; font-weight:300; margin-bottom:28px; }
    .nep-checklist { list-style:none; display:flex; flex-direction:column; gap:12px; }
    .nep-checklist li { display:flex; align-items:center; gap:12px; font-size:14px; color:rgba(255,255,255,0.85); }
    .nep-check { width:20px; height:20px; border-radius:50%; background:var(--green-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .nep-cards { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
    .nep-card { border-radius:var(--radius); padding:22px; }
    .nep-card.c1 { background:rgba(255,255,255,0.08); grid-column:1/-1; }
    .nep-card.c2 { background:var(--green-light); }
    .nep-card.c3 { background:rgba(255,255,255,0.12); }
    .nep-card-title { font-family:"Playfair Display",serif; font-size:22px; color:#fff; margin-bottom:6px; }
    .nep-card-text { font-size:13px; color:rgba(255,255,255,0.7); line-height:1.6; font-weight:300; }

    /* ADMISSIONS */
    .admissions { padding:80px; text-align:center; background:linear-gradient(135deg,var(--green-pale),var(--lime-pale)); }
    .admissions h2 { font-family:"Playfair Display",serif; font-size:38px; font-weight:400; color:var(--green-dark); margin-bottom:14px; }
    .admissions p { font-size:16px; color:var(--text-mid); line-height:1.8; max-width:500px; margin:0 auto 36px; font-weight:300; }
    .adm-btns { display:flex; gap:14px; justify-content:center; }
    .adm-btn-p { background:var(--green-mid); color:#fff; border:none; padding:14px 32px; border-radius:8px; font-size:15px; font-weight:500; cursor:pointer; font-family:inherit; transition:background 0.2s; }
    .adm-btn-p:hover { background:var(--green-dark); }
    .adm-btn-s { background:transparent; color:var(--green-mid); border:1.5px solid var(--green-mid); padding:14px 32px; border-radius:8px; font-size:15px; font-weight:500; cursor:pointer; font-family:inherit; }

    /* CONTACT & FOOTER */
    .contact-bar { background:#fff; padding:24px 80px; display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); }
    .contact-info { display:flex; gap:48px; }
    .contact-item label { font-size:11px; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.6px; display:block; margin-bottom:3px; }
    .contact-item span { font-size:14px; color:var(--text-dark); }
    footer { background:var(--green-dark); padding:16px 80px; display:flex; align-items:center; justify-content:space-between; }
    footer p { font-size:13px; color:rgba(255,255,255,0.5); font-weight:300; }
    .footer-links { display:flex; gap:24px; }
    .footer-links a { font-size:13px; color:rgba(255,255,255,0.5); text-decoration:none; }
    .footer-links a:hover { color:#fff; }
    
     @media (max-width:768px) {
      .nav { padding:0 16px; height:64px; gap:8px; }
      .nav-links { display:none; }
      .nav-cta { display:none; }
      .nav-hamburger { display:flex; }
      .nav-mobile-menu { top:64px; }
      }
    @media (max-width:900px) {
  .nav { padding:0 24px; } .nav-links { display:none; }
  .slide { grid-template-columns:1fr; } .slide-right { display:none; }
  .slide-left { padding:48px 24px; } .slide-title { font-size:32px; }
  .section { padding:48px 24px; }
  .gallery-section,.campus-section,.testimonials,.nep-section,.admissions,.contact-bar,footer { padding:48px 24px; }
  .pillars { grid-template-columns:repeat(2,1fr); }
  .testi-grid { grid-template-columns:1fr; }
  .campus-section,.nep-inner { grid-template-columns:1fr; gap:32px; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:repeat(3,160px); }
  .gallery-grid .img-ph.big { grid-row:auto; grid-column:1/-1; }
  .nep-cards { grid-template-columns:1fr; }
  .stats-bar { flex-wrap:wrap; }
  .stat-item { flex:1 1 50%; border-right:none; border-bottom:1px solid rgba(255,255,255,0.12); }
}

@media (max-width:600px) {
  .nav { padding:0 16px; height:60px; }
  .nav-logo img { height:38px; }
  .nav-cta { padding:8px 14px; font-size:13px; }
  .slide-left { padding:36px 20px; }
  .slide-title { font-size:26px; }
  .slide-sub { font-size:14px; }
  .hero-slider { height:auto; min-height:340px; }
  .stats-bar { flex-direction:column; }
  .stat-item { flex:1 1 100%; padding:16px; }
  .section { padding:40px 18px; }
  .section-title { font-size:26px; }
  .pillars { grid-template-columns:1fr; gap:16px; }
  .pillar-body { padding:18px; }
  .gallery-section { padding:40px 18px; }
  .gallery-grid { grid-template-columns:1fr; grid-template-rows:auto; gap:12px; }
  .gallery-grid .img-ph { height:200px; }
  .gallery-grid .img-ph.big { grid-column:auto; height:240px; }
  .campus-section { padding:40px 18px; grid-template-columns:1fr; gap:28px; }
  .campus-img { height:240px; }
  .video-section { padding:40px 18px; }
  .video-wrap { height:220px; }
  .testimonials { padding:40px 18px; }
  .testi-grid { grid-template-columns:1fr; gap:16px; }
  .testi-card { padding:20px; }
  .nep-section { padding:40px 18px; }
  .nep-inner { grid-template-columns:1fr; gap:28px; }
  .nep-title { font-size:24px; }
  .nep-cards { grid-template-columns:1fr; }
  .admissions { padding:48px 18px; }
  .admissions h2 { font-size:26px; }
  .adm-btns { flex-direction:column; align-items:center; }
  .adm-btn-p, .adm-btn-s { width:100%; text-align:center; }
  .contact-bar { padding:20px 18px; flex-direction:column; align-items:flex-start; gap:20px; }
  .contact-info { flex-direction:column; gap:14px; }
  footer { padding:16px 18px; flex-direction:column; gap:12px; text-align:center; }
  .footer-links { justify-content:center; flex-wrap:wrap; gap:16px; }
}