/* ══════════════════════════════════════════
   GC DHALIARA – MODERN REDESIGN v3
   Based on reference design (index(2).html)
══════════════════════════════════════════ */

/* RESET & BASE */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Poppins',sans-serif;overflow-x:hidden;color:#2d3748;background:#fff}
a{text-decoration:none!important;color:inherit;outline:none!important}
a:focus,a:active{outline:none!important;box-shadow:none!important}
img{display:block;max-width:100%}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}

/* DESIGN TOKENS */
:root{
  --navy:#001e49;
  --navy-light:#162454;
  --gold:#e8a020;
  --gold-dark:#c8881a;
  --bg:#f4f7fc;
  --border:#e2e8f5;
  --text:#4a5568;
  --radius:10px;
  --shadow:0 4px 20px rgba(13,30,74,.1);
  --shadow-md:0 8px 30px rgba(13,30,74,.14);
  /* backward-compat aliases */
  --primary:#0d1e4a;
  --primary-dark:#091a4e;
  --primary-mid:#162454;
  --orange:#e8a020;
  --orange-dark:#a8880e;
  --light-bg:#f4f7fc;
  --text-light:#64748b;
  --white:#ffffff;
}

/* LAYOUT WRAPPER */
.wrap{max-width:1400px;margin:0 auto;padding:0 32px}

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
#topbar{background:var(--navy);padding:7px 0;font-size:11.5px}
#topbar .wrap{display:flex;justify-content:space-between;align-items:center;gap:12px}
.tb-left{display:flex;gap:22px;align-items:center}
.tb-item{color:#fff;display:flex;align-items:center;gap:5px;white-space:nowrap}
.tb-icon{width:11px;height:11px;fill:var(--gold);flex-shrink:0}
.tb-right{display:flex;align-items:center;gap:12px}
.tb-link{color:#fff;transition:color .2s;font-size:11.5px}
.tb-link:hover{color:var(--gold)}
.tb-sep{color:rgba(255,255,255,.25);font-size:12px}
.tb-socials{display:flex;gap:5px;margin-left:6px}
.tb-soc{width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;color:#fff;transition:opacity .2s}
.tb-soc:hover{opacity:.85}
.s-fb{background:#1877f2}.s-ig{background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fd5949 45%,#d6249f 60%,#285aeb 90%)}
.s-yt{background:#ff0000}
.dm-btn{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:14px;flex-shrink:0;transition:background .2s;padding:0;line-height:1}
.dm-btn:hover{background:rgba(255,255,255,.2)}

/* ══════════════════════════════════════════
   ANNOUNCEMENT TICKER
══════════════════════════════════════════ */
#ticker{background:#11234a;border-bottom:1px solid rgba(200,162,26,.28);overflow:hidden;padding:0}
#ticker .ticker-wrap{display:flex;align-items:stretch}
.ticker-badge{background:var(--gold);color:#fff;font-size:10px;font-weight:800;padding:0 16px;display:flex;align-items:center;text-transform:uppercase;letter-spacing:.8px;white-space:nowrap;flex-shrink:0}
.ticker-track{overflow:hidden;flex:1;padding:7px 0}
.ticker-inner{display:inline-flex;gap:0;white-space:nowrap;animation:tick 70s linear infinite}
.ticker-inner:hover{animation-play-state:paused}
.ticker-inner span{color:#fff;font-size:11.5px;padding:0 30px}
.ticker-inner .tick-dot{color:var(--gold);padding:0 4px;font-weight:700}
@keyframes tick{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#header{background:#fcf9f3;padding:14px 0; position:relative;overflow:hidden}
#header::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='35' cy='35' r='28' fill='none' stroke='%230d1e4a' stroke-width='.3' opacity='.07'/%3E%3C/svg%3E") repeat;
}
#header .wrap{display:flex;align-items:center;gap:20px;position:relative;z-index:1}

.hd-logo{display:flex;align-items:center;gap:12px;flex-shrink:0}
.hd-seal{width:90px;height:90px;min-width:90px;border-radius:50%;background:var(--navy);border:3px solid var(--gold);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;flex-shrink:0;box-shadow:0 4px 14px rgba(0,0,0,.18)}
.hd-seal i{font-size:32px;color:var(--gold);line-height:1}
.hd-seal .seal-name{font-size:6px;font-weight:700;color:#fff;letter-spacing:1.2px;text-align:center;line-height:1.3}
.hd-emblem{width:110px;height:110px;min-width:110px;border-radius:50%;background:var(--navy);border:3px solid var(--gold);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;flex-shrink:0;box-shadow:0 4px 14px rgba(0,0,0,.18)}
.hd-emblem .e-top{color:rgba(255,255,255,.65);font-size:8.5px;font-weight:600;letter-spacing:.8px}
.hd-emblem .e-main{color:#fff;font-size:32px;font-weight:800;line-height:1}
.hd-emblem .e-sub{color:var(--gold);font-size:7.5px;font-weight:700;letter-spacing:1.2px}
.hd-established{font-size:10.5px;color:#383737; font-weight:600;line-height:1.55}
.hd-established strong{color:var(--navy);font-size:12px;display:block;font-weight:700}

.hd-center{flex:1;text-align:center;min-width:0}
.hd-hindi{font-size:22px;font-weight:700;color:var(--gold-dark);letter-spacing:1px;margin-bottom:3px}
.hd-hindi .dot{color:var(--navy)}
.hd-tagline{font-size:13px;color:var(--navy);letter-spacing:4px;font-weight:500;margin:4px 0}
.hd-divider{display:flex;align-items:center;justify-content:center;gap:10px;margin:6px 0;color:var(--gold);font-size:14px}
.hd-divider::before,.hd-divider::after{content:'';height:1px;width:120px;background:linear-gradient(to right,transparent,var(--gold))}
.hd-divider::after{background:linear-gradient(to left,transparent,var(--gold))}
.hd-college-name{font-family:'Playfair Display',serif;font-size:36px;font-weight:800;color:var(--navy);letter-spacing:1px;line-height:1.05;white-space:nowrap}
.hd-affiliation{font-size:11px;color:#555;margin-top:4px;line-height:1.6}
.hd-naac{font-size:11px;color:var(--navy);font-weight:600;letter-spacing:2px;margin-top:5px}

.hd-right{display:flex;flex-direction:column;align-items:center;gap:6px;flex-shrink:0}
.hd-hpu-logo{width:78px;height:78px;object-fit:contain}
.hd-right p{font-size:9.5px;color: #383737;
    font-weight: 600; text-align:center;line-height:1.45}
.hd-college-logo{width:140px;height:140px;object-fit:contain}
.hd-quick-btns{display:flex;flex-direction:column;gap:5px;margin-top:2px}
.hd-qbtn{display:flex;align-items:center;gap:6px;padding:5px 12px;border-radius:4px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.4px;white-space:nowrap;transition:opacity .2s,transform .15s;text-decoration:none!important}
.hd-qbtn:hover{opacity:.88;transform:translateX(-2px);text-decoration:none!important}
.hd-qbtn i{font-size:11px}
.hd-qbtn--admission{background:#c0392b;color:#fff!important}
.hd-qbtn--ragging{background:#e8000d;color:#fff!important;animation:ragging-blink .7s step-start infinite;border:2px solid #fff}
@keyframes ragging-blink{0%,49%{opacity:1}50%,100%{opacity:0}}

/* ══════════════════════════════════════════
   NAVIGATION — Bootstrap 3 compatible
══════════════════════════════════════════ */
.main-navbar{
  background:var(--navy)!important;
  border:none!important;
  border-radius:0!important;
  margin-bottom:0!important;
  min-height:48px;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 3px 15px rgba(0,0,0,.3);
}
.main-navbar .container{padding-left:0;padding-right:0}
.main-navbar .navbar-header{display:flex;align-items:stretch;border-right:1px solid rgba(255,255,255,.12);width:100%}
.main-navbar .navbar-home-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:48px;height:48px;
  background:#fff;
  border-right:1px solid rgba(255,255,255,.12);
  border-bottom:3px solid var(--gold)!important;
  color:var(--navy)!important;
  font-size:18px;flex-shrink:0;transition:all .2s;float:none;
}
.main-navbar .navbar-home-btn:hover{background:var(--gold)!important;color:#fff!important;border-bottom-color:var(--gold-dark)!important}
.main-navbar .navbar-toggle{
  border-color:rgba(255,255,255,.35);margin:10px 12px;background:transparent;padding:5px 8px;
  margin-left:auto;
}
.main-navbar .navbar-toggle .icon-bar{background:#fff;border-radius:1px}
.main-navbar .navbar-collapse{padding:0}
.main-navbar .navbar-nav>li>a{
  color:rgba(255,255,255,.85)!important;font-size:12px;font-weight:600;
  padding:15px 13px!important;letter-spacing:.6px;white-space:nowrap;
  text-transform:uppercase;
  border-bottom:2.5px solid transparent;line-height:18px;transition:all .2s;
}
.main-navbar .navbar-nav>li>a:hover,
.main-navbar .navbar-nav>li.active>a,
.main-navbar .navbar-nav>li.open>a{
  color:#fff!important;background:rgba(255,255,255,.08)!important;border-bottom-color:var(--gold);
}
.main-navbar .navbar-nav>li>a:focus{color:#fff!important;background:transparent!important}
.main-navbar .dropdown-menu{
  background:#0d1b35;border:none;border-top:2px solid var(--gold);
  border-radius:0 0 6px 6px;box-shadow:0 8px 25px rgba(0,0,0,.4);padding:6px 0;min-width:210px;
}
.main-navbar .dropdown-menu li a{
  color:rgba(255,255,255,.85)!important;font-size:12.5px;padding:8px 18px!important;
  text-transform:none;font-weight:400;letter-spacing:.2px;transition:all .15s;
}
.main-navbar .dropdown-menu li a:hover{
  background:rgba(255,255,255,.1)!important;color:#fff!important;
  padding-left:24px!important;border-left:2px solid var(--gold);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero{position:relative;height:530px;overflow:hidden;background:var(--navy)}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 55%;transition:opacity .5s}
.hero-grad{position:absolute;inset:0;background:linear-gradient(90deg,rgba(13,30,74,.94) 0%,rgba(13,30,74,.75) 18%,rgba(13,30,74,.22) 31%,transparent 100%)}
.hero-content{position:absolute;top:50%;left:64px;transform:translateY(-50%);color:#fff;max-width:510px}
.hero-content h1{font-size:50px;font-weight:800;line-height:1.1;text-shadow:0 2px 14px rgba(0,0,0,.25)}
.hero-content h1 .gold{color:var(--gold)}
.hero-content p{color:rgba(255,255,255,.83);font-size:13.5px;line-height:1.82;margin:18px 0 28px}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap}
.btn-filled{display:inline-block;background:var(--gold);color:#fff;padding:13px 26px;border-radius:5px;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.4px;border:2px solid var(--gold);transition:all .2s}
.btn-filled:hover{background:var(--gold-dark);border-color:var(--gold-dark);color:#fff}
.btn-outline{display:inline-block;background:transparent;color:#fff;padding:13px 26px;border-radius:5px;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.4px;border:2px solid rgba(255,255,255,.75);transition:all .2s}
.btn-outline:hover{background:rgba(255,255,255,.12);color:#fff}

/* Quick Access */
#qa-card{position:absolute;right:52px;top:50%;transform:translateY(-50%);width:210px;background:rgba(255,255,255,.97);border-radius:var(--radius);box-shadow:0 16px 48px rgba(0,0,0,.38);overflow:hidden}
.qa-head{background:var(--navy);color:#fff;text-align:center;padding:12px 14px;font-size:13px;font-weight:700;letter-spacing:.6px;border-bottom:2.5px solid var(--gold)}
.qa-list li a{display:flex;align-items:center;gap:9px;color:#333;padding:7.5px 13px;font-size:12.5px;font-weight:500;transition:background .15s}
.qa-list li a:hover{background:#eef2fc;color:var(--navy)}
.qa-ico{width:27px;height:27px;background:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.qa-ico svg{width:13px;height:13px;fill:#fff}
.qa-apply-btn{display:block;background:var(--gold);color:#fff;text-align:center;padding:11px;font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.6px;transition:background .2s;border-top:2px solid rgba(255,255,255,.2)}
.qa-apply-btn:hover{background:var(--gold-dark);color:#fff}

/* Slider controls */
.hero-arr{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.18);border:1.5px solid rgba(255,255,255,.55);color:#fff;font-size:26px;display:flex;align-items:center;justify-content:center;z-index:5;transition:background .2s;line-height:1}
.hero-arr:hover{background:rgba(255,255,255,.32)}
.hero-arr.prev{left:16px}
.hero-arr.next{right:285px}
.hero-dots{position:absolute;bottom:22px;left:64px;display:flex;gap:7px;align-items:center}
.hero-dot{width:8px;height:8px;border-radius:4px;background:rgba(255,255,255,.4);cursor:pointer;transition:all .35s}
.hero-dot.active{background:var(--gold);width:26px}

/* Countdown */
.cd-strip{display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.22);border-radius:26px;padding:7px 18px 7px 10px;margin-bottom:20px;backdrop-filter:blur(6px)}
.cd-pill{background:var(--gold);color:#fff;font-size:9px;font-weight:800;padding:3px 9px;border-radius:10px;text-transform:uppercase;letter-spacing:.7px}
.cd-units{display:flex;align-items:center;gap:6px;margin-left:6px}
.cd-unit{text-align:center;min-width:32px}
.cd-unit b{font-size:17px;font-weight:800;color:#fff;display:block;line-height:1.1}
.cd-unit small{font-size:8px;color:rgba(255,255,255,.55);text-transform:uppercase;letter-spacing:.4px}
.cd-sep{color:rgba(255,255,255,.35);font-weight:300;font-size:16px;margin-bottom:2px}

/* ══════════════════════════════════════════
   WAVE DIVIDERS
══════════════════════════════════════════ */
.wave-divider{line-height:0;display:block;overflow:hidden}
.wave-divider svg{display:block;width:100%}

/* ══════════════════════════════════════════
   PRINCIPAL'S DESK
══════════════════════════════════════════ */
#principal{background:#ecf0f8;padding:62px 0}
#principal .wrap{display:flex;align-items:flex-start;gap:32px}

.pc-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-md);flex-shrink:0;width:218px}
.pc-photo{width:100%;height:245px;object-fit:cover;object-position:center top;display:block}
.pc-plate{background:var(--navy);padding:13px 14px;text-align:center}
.pc-plate h3{color:#fff;font-size:14.5px;font-weight:700;margin-bottom:2px}
.pc-plate span{color:var(--gold);font-size:11.5px;font-weight:500}
.pc-stats{display:flex}
.pc-stat{flex:1;text-align:center;padding:10px 5px;border-right:1px solid #eee}
.pc-stat:last-child{border-right:none}
.pc-stat b{display:block;font-size:16px;font-weight:800;color:var(--navy);line-height:1}
.pc-stat small{font-size:9.5px;color:#888;margin-top:2px;display:block}

.pc-msg{flex:1;min-width:0}
.sec-eyebrow{font-size:11px;color:var(--gold);text-transform:uppercase;letter-spacing:3px;font-weight:700;margin-bottom:6px}
.sec-title{font-size:26px;font-weight:700;color:var(--navy);margin-bottom:20px;line-height:1.25}
.pc-quote-block{position:relative;border-left:3px solid var(--gold);padding:2px 0 2px 22px;margin-bottom:24px}
.pc-quote-block::before{content:'\201C';position:absolute;top:-10px;left:10px;font-size:72px;color:var(--navy);opacity:.1;font-family:Georgia,serif;line-height:1}
.pc-quote-block p{color:#555;font-size:13.5px;line-height:1.9}
.pc-quote-block p+p{margin-top:12px}
.pc-signature{font-family:'Dancing Script',cursive;font-size:30px;color:var(--navy);display:block;margin-bottom:22px}
.btn-gold{display:inline-flex;align-items:center;gap:6px;background:var(--gold);color:#fff;padding:11px 26px;border-radius:5px;font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.3px;transition:background .2s}
.btn-gold:hover{background:var(--gold-dark);color:#fff}

/* ══════════════════════════════════════════
   STATISTICS
══════════════════════════════════════════ */
#stats{background:var(--navy);padding:54px 0}
#stats .wrap{display:flex;align-items:center;justify-content:space-between}
.stat-divider{width:1px;height:72px;background:rgba(255,255,255,.14);flex-shrink:0}
.stat-item{text-align:center;flex:1;padding:0 8px}
.stat-icon-wrap{width:52px;height:52px;border-radius:50%;background:rgba(200,162,26,.14);border:1.5px solid rgba(200,162,26,.35);display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
.stat-icon-wrap svg{width:27px;height:27px;fill:var(--gold)}
.stat-number{font-size:40px;font-weight:800;color:#fff;line-height:1;letter-spacing:-1px}
.stat-label{font-size:12.5px;color:rgba(255,255,255,.7);margin-top:7px;font-weight:500}

/* ══════════════════════════════════════════
   ACHIEVEMENTS
══════════════════════════════════════════ */
#achievements{background:#fff;padding:60px 0}
.section-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:28px}
.section-row h2{font-size:24px;font-weight:700;color:var(--navy)}
.section-row h2 em{font-style:normal;color:var(--gold)}
.btn-outline-sm{color:var(--navy);border:1.5px solid var(--navy);padding:7px 16px;border-radius:4px;font-size:12px;font-weight:600;transition:all .2s;white-space:nowrap;display:inline-block}
.btn-outline-sm:hover{background:var(--navy);color:#fff}

.ach-carousel{position:relative}
.ach-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:18px}
.carr-btn{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;z-index:5;transition:background .2s;box-shadow:var(--shadow-md);line-height:1}
.carr-btn:hover{background:var(--gold)}
.carr-btn.cb-prev{left:-20px}
.carr-btn.cb-next{right:-20px}

.ach-card{border-radius:var(--radius);overflow:hidden;box-shadow:0 3px 14px rgba(0,0,0,.1);transition:transform .3s,box-shadow .3s;background:#fff}
.ach-card:hover{transform:translateY(-6px);box-shadow:0 14px 32px rgba(0,0,0,.16)}
.ach-img{height:210px;overflow:hidden;background:#f5f5f5;display:flex;align-items:center;justify-content:center}
.ach-img img{width:100%;height:100%;object-fit:contain;object-position:center center;transition:transform .4s}
.ach-card:hover .ach-img img{transform:scale(1.04)}
.ach-body{padding:14px}
.ach-badge{display:inline-block;background:var(--gold);color:#fff;font-size:9px;font-weight:700;padding:3px 10px;border-radius:20px;text-transform:uppercase;letter-spacing:.4px;margin-bottom:7px}
.ach-body h4{font-size:13px;font-weight:700;color:var(--navy);margin-bottom:4px}
.ach-body p{font-size:11px;color:#777;line-height:1.55}

/* ══════════════════════════════════════════
   ACADEMIC PROGRAMS
══════════════════════════════════════════ */
#programs{background:var(--bg);padding:60px 0}
.prog-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:28px;flex-wrap:wrap;gap:12px}
.prog-header h2{font-size:24px;font-weight:700;color:var(--navy)}
.hpu-label{display:flex;align-items:center;gap:10px;font-size:11px;color:#666;line-height:1.5}
.hpu-circle{width:46px;height:46px;border-radius:50%;border:2px solid var(--navy);background:#fff;display:flex;align-items:center;justify-content:center;font-size:7px;font-weight:800;color:var(--navy);text-align:center;line-height:1.3;padding:3px;flex-shrink:0}
.prog-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:18px}
.prog-card{background:#fff;border-radius:var(--radius);padding:22px 18px;box-shadow:var(--shadow);transition:transform .3s,box-shadow .3s}
.prog-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
.prog-ico{width:60px;height:60px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:15px}
.prog-ico svg{width:30px;height:30px}
.ico-arts{background:#f3e8ff}.ico-arts svg{fill:#7c3aed}
.ico-sci{background:#dbeafe}.ico-sci svg{fill:#2563eb}
.ico-com{background:#d1fae5}.ico-com svg{fill:#059669}
.ico-it{background:#ffedd5}.ico-it svg{fill:#ea580c}
.ico-voc{background:#ccfbf1}.ico-voc svg{fill:#0d9488}
.ico-pg{background:#fee2e2}.ico-pg svg{fill:#dc2626}
.prog-card h3{font-size:14.5px;font-weight:700;color:var(--navy);margin-bottom:12px}
.prog-list{margin-bottom:18px}
.prog-list li{font-size:11.5px;color:var(--text);padding:3px 0 3px 13px;position:relative;line-height:1.45}
.prog-list li::before{content:'›';position:absolute;left:0;color:var(--gold);font-weight:700;font-size:15px;line-height:1.15}
.btn-explore{display:inline-block;border:1.5px solid var(--navy);color:var(--navy);padding:7px 20px;border-radius:4px;font-size:11.5px;font-weight:600;text-transform:uppercase;letter-spacing:.3px;transition:all .2s;outline:none}
.btn-explore:hover{background:var(--navy);color:#fff}
.btn-explore:focus,.btn-explore:active{outline:none;box-shadow:none}

/* ══════════════════════════════════════════
   CAMPUS LIFE
══════════════════════════════════════════ */
#campus{background:#fff;padding:60px 0}
.campus-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:24px}
.campus-header-left h2{font-size:24px;font-weight:700;color:var(--navy)}
.campus-header-left .sec-eyebrow{margin-bottom:0;margin-top:4px}
.campus-row{display:flex;gap:14px;overflow-x:auto;padding-bottom:6px;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.campus-row::-webkit-scrollbar{height:4px}
.campus-row::-webkit-scrollbar-thumb{background:var(--gold);border-radius:2px}
.campus-card{position:relative;min-width:192px;width:192px;height:255px;border-radius:var(--radius);overflow:hidden;cursor:pointer;flex-shrink:0}
.campus-card img{width:100%;height:100%;object-fit:cover;transition:transform .42s}
.campus-card:hover img{transform:scale(1.07)}
.campus-label{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(13,30,74,.92) 0%,rgba(13,30,74,.1) 100%);color:#fff;padding:32px 14px 13px;font-size:13.5px;font-weight:600}

/* ══════════════════════════════════════════
   INFO COLUMNS
══════════════════════════════════════════ */
#infocols{background:var(--bg);padding:55px 0}
#infocols .wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.ic-box{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column}
.ic-head{background:var(--navy);color:#fff;padding:13px 18px;display:flex;justify-content:space-between;align-items:center;flex-shrink:0}
.ic-head h3{font-size:14px;font-weight:600}
.ic-head a{color:var(--gold);font-size:11.5px;font-weight:500}
.ic-head span{color:rgba(255,255,255,.5);font-size:11px}

/* Notices */
.notice-list{padding:4px 18px}
.ni{display:flex;align-items:flex-start;gap:9px;padding:10px 0;border-bottom:1px solid #f0f2f8;font-size:12.5px;color:#555;line-height:1.5}
.ni:last-child{border:none}
.ni-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0;margin-top:5px}
.nd-red{background:#e53e3e}.nd-blue{background:#3182ce}.nd-gold{background:var(--gold)}
.ni-content{flex:1;display:flex;flex-direction:column;gap:3px}
.ni-badge{font-size:8.5px;font-weight:700;padding:2px 7px;border-radius:3px;color:#fff;text-transform:uppercase;align-self:flex-start;white-space:nowrap}
.nb-red{background:#e53e3e}.nb-blue{background:#3182ce}
.ni-content a{color:#555;transition:color .2s}
.ni-content a:hover{color:var(--navy)}

/* Events */
.event-list{padding:4px 18px}
.ei{display:flex;gap:12px;padding:10px 0;border-bottom:1px solid #f0f2f8;align-items:flex-start}
.ei:last-child{border:none}
.ei-date{min-width:50px;height:56px;background:var(--navy);border-radius:8px;display:flex;flex-direction:column;align-items:center;justify-content:center;flex-shrink:0}
.ei-date .day{color:#fff;font-size:20px;font-weight:800;line-height:1}
.ei-date .mon{color:var(--gold);font-size:9.5px;font-weight:700}
.ei-info h4{font-size:12.5px;font-weight:600;color:var(--navy);margin-bottom:3px}
.ei-info p{font-size:11px;color:#888}
.ei-info a{color:var(--navy);transition:color .2s}
.ei-info a:hover{color:var(--gold)}

/* Testimonials */
.testi-wrap{padding:16px;flex:1;display:flex;flex-direction:column}
.testi-card{padding:18px;background:var(--bg);border-radius:8px;flex:1}
.testi-top{display:flex;align-items:center;gap:13px;margin-bottom:14px}
.testi-photo{width:62px;height:62px;border-radius:50%;object-fit:cover;border:3px solid var(--gold);flex-shrink:0}
.testi-name{font-size:14px;font-weight:700;color:var(--navy)}
.testi-batch{font-size:11px;color:#888;margin-top:1px}
.testi-stars{color:var(--gold);font-size:14px;margin-top:3px;letter-spacing:1px}
.testi-quote{font-size:12.5px;color:#555;line-height:1.78;font-style:italic}
.testi-by{font-size:11.5px;color:var(--navy);font-weight:600;margin-top:10px}
.testi-nav{display:flex;justify-content:center;gap:8px;margin-top:14px}
.t-dot{width:8px;height:8px;border-radius:50%;background:#ccc;cursor:pointer;transition:background .25s}
.t-dot.active{background:var(--navy)}

/* ══════════════════════════════════════════
   ACCREDITATIONS
══════════════════════════════════════════ */
#accred{background:#fff;padding:44px 0;border-top:1px solid var(--border)}
.accred-title{text-align:center;font-size:20px;font-weight:700;color:var(--navy);margin-bottom:10px;position:relative;padding-bottom:14px}
.accred-title::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:52px;height:2.5px;background:var(--gold)}
.accred-row{display:flex;justify-content:center;align-items:center;gap:50px;flex-wrap:wrap;margin-top:26px}
.ac-item{display:flex;flex-direction:column;align-items:center;gap:9px;cursor:pointer}
.ac-circle{width:88px;height:88px;border-radius:50%;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;background:#f8fafd;transition:border-color .25s,box-shadow .25s;padding:8px}
.ac-item:hover .ac-circle{border-color:var(--gold);box-shadow:0 4px 18px rgba(200,162,26,.22)}
.ac-item p{font-size:12px;font-weight:600;color:#555;text-align:center}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer{background:#091330;color:rgba(255,255,255,.65)}
.footer-body{padding:50px 32px 36px;max-width:1400px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr 1.6fr;gap:30px}
.ft-college-logo{width:80px;height:80px;object-fit:contain;margin-bottom:12px;filter:drop-shadow(0 2px 6px rgba(0,0,0,.4))}
.ft-brand h3{color:#fff;font-size:14.5px;font-weight:700;margin-bottom:9px}
.ft-brand>p{color:#fff;font-size:12px;line-height:1.8}
.ft-socials{display:flex;gap:7px;margin-top:15px}
.ft-soc{width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;color:#fff;font-weight:700;transition:opacity .2s}
.ft-soc:hover{opacity:.8}
.ft-col h4{color:#fff;font-size:13px;font-weight:600;margin-bottom:16px;padding-bottom:9px;position:relative}
.ft-col h4::after{content:'';position:absolute;bottom:0;left:0;width:30px;height:2px;background:var(--gold)}
.ft-col ul li{margin-bottom:8px}
.ft-col ul li a{color:#fff;font-size:12.5px;display:flex;align-items:center;gap:5px;transition:color .2s}
.ft-col ul li a:hover{color:var(--gold)}
.ft-col ul li a::before{content:'›';color:var(--gold);font-size:14px;font-weight:700;line-height:1}
.ft-contact-item{display:flex;gap:9px;font-size:12px;color:#fff;margin-bottom:12px;align-items:flex-start;line-height:1.6}
.ft-contact-item svg{fill:var(--gold);flex-shrink:0;margin-top:2px}
.footer-bottom{background:rgba(0,0,0,.3);padding:14px 32px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px}
.footer-bottom p{font-size:11.5px;color:#fff}
.fb-links{display:flex;gap:18px;flex-wrap:wrap}
.fb-links a{color:rgba(255,255,255,.5);font-size:11.5px;transition:color .2s}
.fb-links a:hover{color:var(--gold)}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1280px){
  .hd-college-name{font-size:28px}
  .ach-grid,.prog-grid{grid-template-columns:repeat(3,1fr)}
  .carr-btn.cb-prev{left:-16px}
  .carr-btn.cb-next{right:-16px}
  .footer-body{grid-template-columns:2fr 1fr 1fr 1fr;gap:24px}
  .ft-brand{grid-column:1/-1}
}
@media(max-width:1100px){
  .hd-college-name{font-size:24px;letter-spacing:.5px}
  .hd-hindi{font-size:18px}
  .hd-seal{width:80px;height:80px;min-width:80px}
  .hd-emblem{width:90px;height:90px;min-width:90px}
  .hd-college-logo{width:115px;height:115px}
  .hp-emblem{width:70px;height:70px;min-width:70px}
  .hero-content{left:44px;max-width:440px}
  .hero-content h1{font-size:44px}
  #qa-card{right:24px;width:190px}
  .hero-arr.next{right:232px}
}
@media(min-width:768px){
  .main-navbar .navbar-header{width:auto}
}
@media(max-width:992px){
  .main-navbar .navbar-collapse.in,.main-navbar .navbar-collapse.collapsing{background:var(--navy-light)}
  /* Override Bootstrap's negative margin on mobile nav */
  .main-navbar .navbar-nav {
    margin: 0 !important;
    float: none !important;
  }
  .main-navbar .navbar-nav>li>a{
    padding:13px 24px!important;
    border-bottom:1px solid rgba(255,255,255,.06)!important;
    border-left:3px solid transparent;
    border-bottom-color:rgba(255,255,255,.06)!important;
  }
  .main-navbar .navbar-nav>li>a:hover,
  .main-navbar .navbar-nav>li.open>a{
    border-left-color:var(--gold)!important;border-bottom-color:rgba(255,255,255,.06)!important;
  }
  .main-navbar .navbar-search-btn{display:none}
  .ach-grid{grid-template-columns:repeat(3,1fr)}
  .carr-btn{display:none}
  .prog-grid{grid-template-columns:repeat(3,1fr)}
  #infocols .wrap{grid-template-columns:1fr 1fr}
  #infocols .wrap .ic-box:nth-child(3){grid-column:1/-1}
  .footer-body{grid-template-columns:1fr 1fr 1fr;gap:22px}
  .ft-brand{grid-column:1/-1}
  #stats .wrap{flex-wrap:wrap;gap:26px;justify-content:center}
  .stat-divider{display:none}
  .stat-item{width:calc(33.33% - 18px);min-width:130px}
  #principal .wrap{flex-wrap:wrap;gap:24px}
  .pc-card{width:200px}
}
@media(max-width:768px){
  .wrap{padding:0 16px}
  /* Show topbar as 2-row layout on mobile */
  #topbar{padding:5px 0}
  #topbar .wrap{flex-wrap:wrap;gap:4px;row-gap:5px}
  .tb-left{display:flex;gap:10px;width:100%;order:2;justify-content:center}
  /* Hide email and address on mobile, show only phone */
  .tb-left .tb-item:nth-child(2),
  .tb-left .tb-item:nth-child(3){display:none}
  .tb-item{font-size:10.5px}
  .tb-right{order:1;width:100%;justify-content:center;gap:8px}
  .tb-link{font-size:10.5px}
  .tb-sep{display:none}
  #header{padding:10px 0}
  #header .wrap{gap:6px;flex-wrap:wrap}
  .hd-logo{order:1}
  .hd-center{order:2;flex:1}
  .hd-right{order:3;width:100%;display:flex;justify-content:center;align-items:center}
  .hd-seal{width:72px;height:72px;min-width:72px}
  .hd-emblem{width:78px;height:78px;min-width:78px}
  .hd-college-logo{width:90px;height:90px}
  .hd-established{display:none}
  .hd-college-name{font-size:18px;white-space:normal;letter-spacing:.2px}
  .hd-hindi{font-size:16px}
  .hd-tagline{letter-spacing:1.5px;font-size:11px}
  .hd-affiliation{font-size:9.5px}
  .hd-naac{font-size:9.5px;letter-spacing:1px}
  .hd-divider::before,.hd-divider::after{width:60px}
  .hp-emblem{width:64px;height:64px;min-width:64px}
  .hd-right p{display:none}
  .hd-hpu-logo{display:none}
  .hd-qbtn--ragging{font-size:11px;padding:7px 16px;white-space:nowrap}
  #hero{height:auto;min-height:0;display:flex;flex-direction:column}
  .hero-bg{position:absolute;inset:0;height:100%}
  .hero-grad{position:absolute;inset:0;background:rgba(13,30,74,.82)}
  .hero-content{position:relative;top:auto;left:auto;transform:none;max-width:100%;padding:52px 24px 28px;text-align:center;z-index:2}
  .hero-content h1{font-size:34px}
  .hero-btns{justify-content:center}
  #qa-card{position:relative;right:auto;top:auto;transform:none;width:100%;border-radius:0;box-shadow:none;border-top:2px solid var(--gold);z-index:2}
  .hero-arr{z-index:3}
  .hero-arr.prev{left:12px}
  .hero-arr.next{right:12px}
  .hero-dots{left:50%;transform:translateX(-50%);z-index:3}
  #principal .wrap{flex-direction:column;align-items:center}
  .pc-card{width:100%;max-width:320px}
  .pc-photo{height:275px}
  .pc-msg{width:100%}
  .stat-item{width:calc(50% - 16px)}
  .ach-grid,.prog-grid{grid-template-columns:repeat(2,1fr)}
  .campus-card{min-width:160px;width:160px;height:210px}
  #infocols .wrap{grid-template-columns:1fr}
  #infocols .wrap .ic-box:nth-child(3){grid-column:auto}
  .footer-body{grid-template-columns:1fr 1fr;gap:20px}
  .footer-bottom{flex-direction:column;text-align:center;gap:8px}
}
@media(max-width:576px){
  #ticker .ticker-badge{display:none}
  .cd-strip{display:none}
  #topbar .wrap{justify-content:space-between}
  .tb-right>a,.tb-sep{display:none}
  .tb-socials{margin-left:0}
  #header{padding:8px 0}
  #header .wrap{gap:8px}
  .hd-seal{width:58px;height:58px;min-width:58px;border-width:2px}
  .hd-college-logo{width:72px;height:72px}
  .hp-emblem{width:54px;height:54px;min-width:54px;border-width:1.5px}
  .hp-emblem span{font-size:6px}
  .hd-college-name{font-size:15px;letter-spacing:0}
  .hd-hindi{font-size:13px;margin-bottom:1px}
  .hd-tagline{font-size:10px;letter-spacing:1px;margin-bottom:3px}
  .hd-affiliation{font-size:9px}
  .hd-naac{font-size:8.5px;letter-spacing:.5px}
  .hd-divider{margin:3px 0}
  .hd-divider::before,.hd-divider::after{width:30px}
  .hero-content h1{font-size:28px}
  .hero-content p{font-size:12.5px}
  .btn-filled,.btn-outline{padding:11px 18px;font-size:12px}
  .hero-arr{width:36px;height:36px;font-size:22px}
  .sec-title{font-size:22px}
  #stats{padding:38px 0}
  .stat-number{font-size:34px}
  .stat-label{font-size:11.5px}
  .ach-grid,.prog-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .campus-card{min-width:145px;width:145px;height:190px}
  .campus-header{flex-direction:column;align-items:flex-start;gap:8px}
  .prog-header{flex-direction:column;align-items:flex-start}
  .footer-body{grid-template-columns:1fr;gap:24px}
  .ft-brand{grid-column:auto}
}
@media(max-width:480px){
  #header .wrap{gap:6px}
  .hd-seal{width:50px;height:50px;min-width:50px}
  .hd-emblem{width:56px;height:56px;min-width:56px}
  .hd-college-logo{width:58px;height:58px}
  .hd-emblem .e-main{font-size:20px}
  .hd-emblem .e-top,.hd-emblem .e-sub{font-size:6px}
  .hp-emblem{width:46px;height:46px;min-width:46px}
  .hd-college-name{font-size:13px}
  .hd-hindi{display:block;font-size:12px;margin-bottom:1px}
  .hd-tagline{display:block;font-size:9.5px;letter-spacing:1px}
  .hd-affiliation{font-size:8.5px;line-height:1.5}
  .hero-content h1{font-size:24px}
  .ach-grid,.prog-grid{grid-template-columns:1fr;gap:12px}
  .stat-item{width:100%}
  .accred-row{gap:28px}
  .ac-circle{width:72px;height:72px}
}

/* ══════════════════════════════════════════
   ENHANCEMENTS
══════════════════════════════════════════ */

/* Scroll Progress */
#scroll-progress{position:fixed;top:0;left:0;height:3px;background:linear-gradient(90deg,var(--gold),#f5d060,var(--gold));z-index:10000;width:0;pointer-events:none}

/* Scroll Reveal */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .55s ease,transform .55s ease}
.reveal.visible{opacity:1;transform:none}
.reveal-l{opacity:0;transform:translateX(-26px);transition:opacity .55s ease,transform .55s ease}
.reveal-l.visible{opacity:1;transform:none}
.reveal-r{opacity:0;transform:translateX(26px);transition:opacity .55s ease,transform .55s ease}
.reveal-r.visible{opacity:1;transform:none}
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.40s}.d6{transition-delay:.48s}

/* Floating Apply Button */
#fab-apply{position:fixed;bottom:80px;right:20px;z-index:980;opacity:0;transform:translateY(80px);transition:opacity .35s,transform .35s;pointer-events:none}
#fab-apply.show{opacity:1;transform:none;pointer-events:auto}
#fab-apply a{display:flex;align-items:center;gap:8px;background:var(--gold);color:#fff;padding:12px 20px;border-radius:30px;font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.4px;box-shadow:0 6px 22px rgba(200,162,26,.5);white-space:nowrap;transition:background .2s,transform .15s}
#fab-apply a:hover{background:var(--gold-dark);transform:scale(1.05);color:#fff}
#fab-apply svg{width:15px;height:15px;fill:#fff;flex-shrink:0}

/* Scroll-to-Top */
#scroll-top{position:fixed;bottom:20px;right:20px;z-index:980;width:44px;height:44px;border-radius:50%;background:var(--navy);color:#fff;font-size:22px;line-height:1;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 18px rgba(13,30,74,.4);cursor:pointer;opacity:0;transform:translateY(80px);transition:opacity .35s,transform .35s,background .2s;pointer-events:none;border:none}
#scroll-top.show{opacity:1;transform:none;pointer-events:auto}
#scroll-top:hover{background:var(--gold)}

/* WhatsApp */
#wa-btn{position:fixed;bottom:20px;left:20px;z-index:980;width:50px;height:50px;border-radius:50%;background:#25d366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 18px rgba(37,211,102,.4);transition:transform .2s,box-shadow .2s}
#wa-btn:hover{transform:scale(1.1);box-shadow:0 6px 26px rgba(37,211,102,.55)}
#wa-btn svg{width:27px;height:27px;fill:#fff}
.wa-pulse{position:absolute;width:50px;height:50px;border-radius:50%;background:rgba(37,211,102,.35);animation:wa-ring 2s ease-out infinite}
@keyframes wa-ring{0%{transform:scale(1);opacity:.8}100%{transform:scale(1.7);opacity:0}}

/* Search Overlay */
#search-overlay{position:fixed;inset:0;background:rgba(9,19,48,.96);z-index:10000;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:32px;opacity:0;pointer-events:none;transition:opacity .3s;backdrop-filter:blur(6px)}
#search-overlay.open{opacity:1;pointer-events:all}
.so-label{color:rgba(255,255,255,.45);font-size:11px;letter-spacing:3px;text-transform:uppercase;margin-bottom:22px}
.so-input-row{width:100%;max-width:620px;position:relative;display:flex;align-items:center}
#so-input{flex:1;background:transparent;border:none;border-bottom:2px solid var(--gold);color:#fff;font-size:24px;font-family:'Poppins',sans-serif;padding:14px 52px 14px 4px;outline:none;caret-color:var(--gold)}
#so-input::placeholder{color:rgba(255,255,255,.28)}
#so-close-btn{position:absolute;right:0;top:50%;transform:translateY(-50%);color:#fff;font-size:30px;cursor:pointer;background:none;border:none;line-height:1;transition:color .2s}
#so-close-btn:hover{color:var(--gold)}
.so-hint{color:rgba(255,255,255,.3);font-size:11.5px;margin-top:14px}
.so-tags{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-top:28px;max-width:620px}
.so-tag{background:rgba(255,255,255,.07);color:rgba(255,255,255,.7);border:1px solid rgba(255,255,255,.12);padding:7px 16px;border-radius:20px;font-size:12px;cursor:pointer;transition:all .2s}
.so-tag:hover{background:var(--gold);border-color:var(--gold);color:#fff}

/* Lightbox */
#lightbox{position:fixed;inset:0;background:rgba(0,0,0,.93);z-index:10000;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .3s}
#lightbox.open{opacity:1;pointer-events:all}
#lb-img{max-width:88vw;max-height:80vh;object-fit:contain;border-radius:6px;box-shadow:0 24px 64px rgba(0,0,0,.7);display:block}
#lb-close{position:absolute;top:18px;right:22px;color:#fff;font-size:34px;background:none;border:none;cursor:pointer;line-height:1;opacity:.75;transition:opacity .2s,color .2s;z-index:2}
#lb-close:hover{opacity:1;color:var(--gold)}
.lb-arr{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:30px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s;border:none;line-height:1;z-index:2}
.lb-arr:hover{background:rgba(200,162,26,.55)}
#lb-prev{left:14px}
#lb-next{right:14px}
#lb-caption{position:absolute;bottom:0;left:0;right:0;color:rgba(255,255,255,.88);font-size:14px;font-weight:600;text-align:center;padding:28px 20px 20px;background:linear-gradient(to top,rgba(0,0,0,.75),transparent)}
#lb-count{position:absolute;top:20px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,.45);font-size:12px;letter-spacing:2px}

/* Dark Mode */
html[data-theme="dark"]{color-scheme:dark}
[data-theme="dark"] body{background:#0f172a;color:#cbd5e1}
[data-theme="dark"] #header{background:#111827;border-bottom-color:var(--gold)}
[data-theme="dark"] .hd-college-name,[data-theme="dark"] .hd-hindi{color:#e2e8f0}
[data-theme="dark"] .hd-affiliation,[data-theme="dark"] .hd-established{color:#64748b}
[data-theme="dark"] .hd-established strong{color:#e2e8f0}
[data-theme="dark"] .hp-emblem{background:#1e293b;border-color:#334155}
[data-theme="dark"] .hp-emblem span{color:#94a3b8}
[data-theme="dark"] #header::before{opacity:.04}
[data-theme="dark"] #principal{background:#0d1a30}
[data-theme="dark"] .pc-card{background:#1e293b}
[data-theme="dark"] .pc-stat{border-color:#334155}
[data-theme="dark"] .pc-stat b{color:#e2e8f0}
[data-theme="dark"] .pc-stat small{color:#64748b}
[data-theme="dark"] .sec-title{color:#e2e8f0}
[data-theme="dark"] .pc-quote-block p{color:#94a3b8}
[data-theme="dark"] .pc-signature{color:#e2e8f0}
[data-theme="dark"] #achievements{background:#111827}
[data-theme="dark"] .section-row h2,[data-theme="dark"] .prog-header h2,[data-theme="dark"] .campus-header-left h2{color:#e2e8f0}
[data-theme="dark"] .ach-card{background:#1e293b;box-shadow:0 3px 14px rgba(0,0,0,.35)}
[data-theme="dark"] .ach-body h4{color:#e2e8f0}
[data-theme="dark"] .ach-body p{color:#64748b}
[data-theme="dark"] #programs{background:#0d1a30}
[data-theme="dark"] .prog-card{background:#1e293b;box-shadow:0 4px 20px rgba(0,0,0,.3)}
[data-theme="dark"] .prog-card h3{color:#e2e8f0}
[data-theme="dark"] .prog-list li{color:#94a3b8}
[data-theme="dark"] .btn-explore{border-color:#334155;color:#94a3b8}
[data-theme="dark"] .btn-outline-sm{border-color:#334155;color:#94a3b8}
[data-theme="dark"] #campus{background:#111827}
[data-theme="dark"] #infocols{background:#0d1a30}
[data-theme="dark"] .ic-box{background:#1e293b}
[data-theme="dark"] .ni{color:#94a3b8;border-color:#2d3f5e}
[data-theme="dark"] .ni-content a{color:#94a3b8}
[data-theme="dark"] .ei-info h4{color:#e2e8f0}
[data-theme="dark"] .ei-info p{color:#64748b}
[data-theme="dark"] .testi-card{background:#0d1a30}
[data-theme="dark"] .testi-name{color:#e2e8f0}
[data-theme="dark"] .testi-batch{color:#64748b}
[data-theme="dark"] .testi-quote{color:#94a3b8}
[data-theme="dark"] .testi-by{color:#e2e8f0}
[data-theme="dark"] .t-dot{background:#334155}
[data-theme="dark"] #accred{background:#111827;border-top-color:#1e293b}
[data-theme="dark"] .accred-title{color:#e2e8f0}
[data-theme="dark"] .ac-item p{color:#94a3b8}
[data-theme="dark"] .ac-circle{background:#1e293b!important;border-color:#334155!important}
[data-theme="dark"] .hpu-label{color:#94a3b8}
[data-theme="dark"] .hpu-circle{background:#1e293b;border-color:#334155;color:#94a3b8}

/* ===== BOOTSTRAP HOME SECTIONS ===== */
/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  min-height: 500px;
}
.hero-section #heroCarousel,
.hero-section #heroCarousel .carousel-inner,
.hero-section #heroCarousel .carousel-inner .item {
  height: 500px;
}
.hero-section #heroCarousel .carousel-inner .item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(1.0);
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(9,26,78,0.72) 0%,
    rgba(9,26,78,0.45) 30%,
    rgba(9,26,78,0.15) 60%,
    rgba(9,26,78,0.0) 100%);
  z-index: 5;
  pointer-events: none;
}
.hero-content-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}
.hero-content-overlay .container,
.hero-content-overlay .container-fluid {
  width: 100% !important;
  max-width: 1800px !important;
  padding-left: 90px !important;
  padding-right: 90px !important;
}
.hero-section .carousel-control {
  width: 70px;
  background: none !important;
  opacity: 1;
  z-index: 15;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-shadow: none !important;
}
.hero-section .carousel-control.left  { left: 16px; }
.hero-section .carousel-control.right { right: 16px; }
.hero-ctrl-btn {
  width: 48px;
  height: 48px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  transition: all .2s;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.hero-ctrl-btn:hover { background: var(--gold); color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.35); }
.hero-section .carousel-indicators {
  bottom: 18px;
  z-index: 15;
}
.hero-section .carousel-indicators li {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
}
.hero-section .carousel-indicators .active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* Hero text */
.hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.hero-text h1 span { color: #ffb347; }
.hero-text .hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 26px;
  line-height: 1.8;
}
.hero-btns a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 8px;
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all .25s;
  text-transform: uppercase;
}
.btn-hero-primary {
  background: #e8000d !important;
  color: #fff !important;
  border: none;
}
.btn-hero-primary:hover {
  background: #b0000a !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,0,13,0.5);
}
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.7) !important;
  color: #fff !important;
  background: transparent;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
  transform: translateY(-2px);
}

/* Quick Access — list style */
.quick-access-card {
  background: rgba(9,26,78,0.92);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.quick-access-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.qa-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.qa-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.qa-list li:last-child { border-bottom: none; }
.qa-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  color: rgba(255,255,255,0.82) !important;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
}
.qa-list li a:hover { color: #ffb347 !important; padding-left: 8px; }
.qa-list li a i {
  width: 18px;
  text-align: center;
  color: var(--orange);
  font-size: 13px;
}
.qa-apply-btn {
  display: block;
  background: #e8000d;
  color: #fff !important;
  text-align: center;
  padding: 11px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: background .2s, transform .2s;
}
.qa-apply-btn:hover {
  background: #b0000a !important;
  transform: translateY(-1px);
}

/* ===== BLINK ANIMATION ===== */
@keyframes btn-blink {
  0%, 49% { opacity: 1; box-shadow: 0 0 12px rgba(232,0,13,.9); }
  50%, 100% { opacity: 0.45; box-shadow: none; }
}
.btn-blink {
  animation: btn-blink 0.85s ease-in-out infinite;
}
.qa-apply-btn-top {
  display: block;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* ===== EVENTS TICKER ===== */
.events-ticker {
  background: rgb(9 22 63 / 98%);
  color: #fff;
  padding: 0;
  height: 42px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.events-ticker .container { height: 42px; }
.events-ticker .row { height: 42px; margin: 0; }
.events-ticker [class*="col-"] { padding-top: 0; padding-bottom: 0; }
.events-ticker .ticker-label {
  background: var(--orange);
  color: #fff;
  padding: 0 14px;
  height: 42px;
  line-height: 42px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
}
.ticker-list-wrap { height: 42px; overflow: hidden; position: relative; }
#nt-title { margin: 0; padding: 0; list-style: none; }
#nt-title li {
  height: 42px;
  line-height: 42px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
#nt-title li.active { display: block; }
.events-ticker a { color: rgba(255,255,255,0.9) !important; font-size: 13px; }
.events-ticker a:hover { color: var(--gold) !important; }
.events-ticker .ticker-arrows {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 42px;
  gap: 6px;
}
.events-ticker .ticker-arrows a {
  color: rgba(255,255,255,0.65) !important;
  font-size: 13px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  transition: background .2s;
}
.events-ticker .ticker-arrows a:hover {
  background: rgba(255,255,255,.15);
  color: #fff !important;
}

/* ===== PRINCIPAL'S DESK ===== */
.principal-section {
  background: #fff;
  padding: 36px 30px 30px;
  margin-top: -70px;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(9,26,78,0.18);
  margin-left: 20px;
  margin-right: 20px;
}
.principal-desk-header {
  margin-bottom: 16px;
}
.principal-desk-header span {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
  display: block;
  margin-bottom: 2px;
}
.principal-desk-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin: 0;
  line-height: 1.1;
}
.principal-desk-row {
  display: flex;
  align-items: stretch;
}
/* Photo block */
.principal-photo-block {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(9,26,78,0.15);
}
.principal-img-wrap {
  height:332px;
  overflow: hidden;
}
.principal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}
.principal-namecard {
  background: var(--primary);
  padding: 14px 16px;
  text-align: center;
}
.principal-namecard .pname {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.principal-namecard .pdesig {
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
}
/* Quote column */
.principal-quote-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 10px;
}
.principal-desk-header {
  padding-bottom: 10px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
  margin-bottom: 18px;
}
.principal-quote {
  border-left: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-style: normal;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.85;
  margin: 0 0 14px;
  position: relative;
  max-height: none;
  overflow: visible;
}
.principal-quote::before {
  content: '\201C';
  font-size: 80px;
  color: var(--primary);
  line-height: 0.6;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-weight: 900;
}
.principal-signature {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 28px;
  color: var(--primary);
  margin: 8px 0 14px;
  display: block;
}
.btn-read-msg {
  display: inline-block;
  align-self: flex-start;
  background: var(--primary);
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .2s;
}
.btn-read-msg:hover { background: var(--primary-mid) !important; }

/* VMV cards in principal section */
.vmv-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--text);
  padding: 24px 16px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  margin-bottom: 16px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 2px 12px rgba(9,26,78,0.07);
}
.vmv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(9,26,78,0.13);
}
.vmv-card .vmv-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #eef2ff;
  border: 2px solid #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
  color: var(--primary);
}
.vmv-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--primary);
}
.vmv-card p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: transparent;
  padding: 20px 20px 50px;
}
.stats-bar .container-fluid { padding: 0 20px; }
.stats {
  background: var(--navy);
  border-radius: 14px;
  padding: 30px 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat:last-child { border-right: none; padding-right: 0; }
.stat-icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.stat h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #fff;
}
.stat p {
  font-size: 12px;
  color: #b9c2dc;
  margin: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-header .section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.section-header h2 {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.section-header h2::before,
.section-header h2::after {
  content: '';
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-header h2::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-header h2 i {
  background: linear-gradient(135deg, #0052d4, #4364f7);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.section-header h3 {
  font-family: 'Georgia', serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 10px;
}
.section-header .divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== ACHIEVEMENTS CAROUSEL ===== */
.achievements-section {
  background: var(--light-bg);
  padding: 40px 0;
}
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
}
.section-title-row h2 {
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}
.section-title-row h2.decorated-title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-title-row h2.decorated-title::before,
.section-title-row h2.decorated-title::after {
  content: '';
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  border-radius: 2px;
}
.section-title-row h2.decorated-title::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.btn-view-all-sm {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.btn-view-all-sm {
  display: inline-block;
  border: 1px solid #ccd6e6;
  background: #fff;
  color: var(--primary) !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all .2s;
  white-space: nowrap;
}
.btn-view-all-sm:hover {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
}
.achievement-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ach-arrow {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .2s;
  z-index: 2;
  font-size: 14px;
}
.ach-arrow:hover { background: var(--orange) !important; }
.achievement-carousel {
  display: flex;
  gap: 16px;
  overflow-x: hidden;
  flex: 1;
  padding: 8px 10px;
  scroll-behavior: smooth;
}
.ach-card {
  flex: 0 0 calc(16.66% - 14px);
  min-width: 150px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform .25s, box-shadow .25s;
}
.ach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(9,26,78,0.15);
}
.ach-img-wrap {
  position: relative;
}
.ach-num {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  border: 3px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  line-height: 1;
}
.ach-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ach-info {
  padding: 10px 10px 12px;
}
.ach-info h5 {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 3px;
  line-height: 1.3;
}
.ach-info span {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}
.ach-info p {
  font-size: 10.5px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* ===== ACADEMIC PROGRAMS ===== */
.programs-section {
  background: #fff;
  padding: 36px 0;
}
.programs-wrapper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 20px 16px 8px;
}
.programs-wrapper .row {
  display: flex;
  flex-wrap: wrap;
}
.programs-wrapper .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}
.program-card-new {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 28px 18px 20px;
  text-align: center;
  margin-bottom: 16px;
  height: 100%;
  transition: all .25s;
  box-shadow: 0 4px 18px rgba(9,26,78,0.07);
  display: flex;
  flex-direction: column;
}
.program-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(9,26,78,0.15);
  border-color: #c7d2fe;
}
.prog-icon-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 16px;
  background: transparent;
  box-shadow: none;
}
/* Arts - purple */
.prog-icon-new.bg1 { color: #7c3aed; background: rgba(124,58,237,.08); }
/* PG - teal */
.prog-icon-new.bg2 { color: #0d9488; background: rgba(13,148,136,.08); }
/* Science - blue */
.prog-icon-new.bg3 { color: #0284c7; background: rgba(2,132,199,.08); }
/* green */
.prog-icon-new.bg4 { color: #059669; background: rgba(5,150,105,.08); }
/* Commerce - green */
.prog-icon-new.bg5 { color: #059669; background: rgba(5,150,105,.08); }
/* Computer - orange */
.prog-icon-new.bg6 { color: #ea580c; background: rgba(234,88,12,.08); }
/* Vocational - red */
.prog-icon-new.bg7 { color: #dc2626; background: rgba(220,38,38,.08); }
.prog-icon-new.bg8 { color: #0d9488; background: rgba(13,148,136,.08); }
.program-card-new h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}
.program-card-new ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 16px;
  text-align: left;
  flex: 1;
}
.program-card-new ul li {
  font-size: 12.5px;
  color: #555;
  padding: 3px 0;
}
.program-card-new .explore-link:focus,.program-card-new .explore-link:active,.program-card .explore-link:focus,.program-card .explore-link:active{outline:none!important;box-shadow:none!important}
.program-card-new .explore-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-top: 1px solid #e8edf5;
  padding-top: 12px;
  width: 100%;
}
.program-card-new .explore-link:hover { color: var(--gold) !important; }

/* Old program cards (inner pages) */
.program-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  margin-bottom: 20px;
  transition: all .25s;
  border-bottom: 3px solid transparent;
  height: 100%;
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(12,36,97,0.15);
  border-bottom-color: var(--orange);
}
.program-card .prog-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px; color: #fff;
}
.prog-icon.bg1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.prog-icon.bg2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.prog-icon.bg3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.prog-icon.bg4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.prog-icon.bg5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.prog-icon.bg6 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.prog-icon.bg7 { background: linear-gradient(135deg, #ffecd2, #fcb69f); color: #c53030; }
.prog-icon.bg8 { background: linear-gradient(135deg, #96fbc4, #f9f586); color: #276749; }
.program-card h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin: 0 0 8px; }
.program-card p { font-size: 12px; color: var(--text-light); margin: 0 0 14px; line-height: 1.6; }
.program-card .explore-link { font-size: 12px; color: var(--orange) !important; font-weight: 600; }
.program-card .explore-link:hover { color: var(--orange-dark) !important; }

/* ===== CAMPUS LIFE ===== */
.campus-life-section {
  background: #f5f7fa;
  padding: 10px 0 30px;
}
.campus-carousel-wrap {
  display: block;
}
.campus-arrows-row {
  display: none;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}
.campus-arrow {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .2s;
  font-size: 14px;
}
.campus-arrow:hover { background: var(--orange) !important; }
.campus-life-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  flex: 1;
  gap: 14px;
  padding: 8px 4px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.campus-life-grid::-webkit-scrollbar {
  display: none;
}
.campus-tile {
  flex: 1 0 calc(12.5% - 12px);
  min-width: 130px;
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: transform .25s, box-shadow .25s;
}
.campus-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.campus-tile img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s;
}
.campus-tile:hover img { transform: scale(1.07); }
.campus-tile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(9,26,78,0.92) 0%, rgba(9,26,78,0.5) 60%, transparent 100%);
  padding: 28px 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.campus-tile-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}
.campus-tile-label {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* ===== NOTICES + EVENTS + TESTIMONIALS ===== */
.info-section {
  background: var(--light-bg);
  padding: 36px 0 40px;
}
.info-section .row {
  display: flex;
  flex-wrap: wrap;
}
.info-section .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}
.info-card-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  overflow: hidden;
  height: 100%;
  margin-bottom: 20px;
}
.info-card-box .card-head {
  background: #fff;
  padding: 16px 20px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--border);
}
.info-card-box .card-head h3 {
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  color: var(--primary);
}
.info-card-box .card-head a {
  font-size: 11px;
  color: var(--orange) !important;
  font-weight: 700;
  white-space: nowrap;
}
.info-card-box .card-head a:hover { color: var(--orange-dark) !important; }
.info-card-box .card-body-content {
  padding: 4px 20px 12px;
  max-height: 320px;
  overflow-y: auto;
}

/* Notices with date block */
.notif-item-new {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #edf1f7;
}
.notif-item-new:last-child { border-bottom: none; }
.notif-date {
  background: #eef3fb;
  color: var(--primary);
  border-radius: 6px;
  padding: 6px 8px;
  text-align: center;
  flex-shrink: 0;
  min-width: 40px;
}
.notif-date span {
  font-size: 18px;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.notif-date small {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}
.notif-content {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.notif-content a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text) !important;
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}
.notif-content a:hover { color: var(--primary) !important; }
.new-badge {
  background: #e53e3e;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Testimonial card */
.testimonial-card-inner {
  padding: 20px 20px 16px;
}
.testimonial-quote-icon {
  font-size: 42px;
  color: var(--orange);
  opacity: 0.8;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.testimonial-avatar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.testimonial-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
  flex-shrink: 0;
}
.testimonial-avatar strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}
.testimonial-avatar span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}
.testimonial-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0 0 12px;
}
.star-rating { color: #f6ad55; font-size: 16px; letter-spacing: 2px; }
.star-rating i { margin-right: 1px; }

/* ===== ACCREDITATIONS ===== */
.accreditations-bar {
  background: #fff;
  padding: 36px 0 40px;
  border-top: 1px solid var(--border);
}
.accreditations-bar .section-header {
  margin-bottom: 28px;
}
.accr-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  margin-bottom: 12px;
  transition: box-shadow .2s, transform .2s;
}
.accr-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}
.accr-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
}
.accr-circle.naac  { background: #c8102e; }
.accr-circle.ugc   { background: #1a5276; }
.accr-circle.hpu   { background: #154360; }
.accr-img-circle { background: #fff; border: 2px solid #dde4ef; overflow: hidden; padding: 4px; }
.accr-logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
a.accr-link { text-decoration: none!important; display: flex; }
a.accr-link:hover { text-decoration: none!important; }
a.accr-link .accr-text strong, a.accr-link .accr-text span { color: inherit; }
.accr-circle.aishe { background: #145a32; }
.accr-circle.nss   { background: #4a235a; }
.accr-circle.ncc   { background: #1a3a6b; }
.accr-text { text-align: left; }
.accr-text strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.accr-text span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ===== BTN APPLY / VIEW ALL ===== */
.btn-apply {
  background: var(--orange) !important;
  color: #fff !important;
  border: none !important;
  padding: 9px 22px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  transition: background .2s, transform .2s !important;
  display: inline-block;
}
.btn-apply:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.btn-view-all {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}
.btn-view-all:hover { background: var(--primary); color: #fff !important; }
.blink-badge {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  animation: blink-anim 1s steps(5,start) infinite;
}
@keyframes blink-anim { to { visibility: hidden; } }

/* ===== FOOTER ===== */
.site-footer {
  background: #091a4e;
  color: rgba(255,255,255,0.78);
  padding: 50px 0 0;
}
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-about .logo-wrap { display: none !important; }
.footer-about p {
  font-size: 12.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links ul li:last-child { border-bottom: none; }
.footer-links ul li a {
  color: rgba(255,255,255,0.72) !important;
  font-size: 13px;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links ul li a::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}
.footer-links ul li a:hover { color: var(--orange) !important; padding-left: 4px; }
.footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact p i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact p a { color: rgba(255,255,255,0.72) !important; }
.footer-contact p a:hover { color: var(--orange) !important; }
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 14px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
/* ── Visitor Counter in Footer ── */
.ft-visitor-box {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ft-visitor-label {
  color: #fff;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ft-visitor-label i { color: var(--gold); font-size: 13px; }
.ft-visitor-num {
  font-size: 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: rgba(255,255,255,0.6) !important; font-size: 12px; margin-left: 14px; }
.footer-bottom a:hover { color: var(--orange) !important; }

/* ===== INNER PAGE STYLES ===== */
/* ══════════════════════════════════════════
   INNER PAGE BANNER
══════════════════════════════════════════ */
.main_title {
  background: linear-gradient(120deg, #1b3a6b 0%, #1e4d8c 40%, #2a5fa0 70%, #1b3a6b 100%) !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  position: relative;
  overflow: hidden;
}

/* Large decorative rings – right side */
.main_title::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 0 28px rgba(255,255,255,.05),
    0 0 0 56px rgba(255,255,255,.02);
  pointer-events: none;
}

/* Dot grid only */
.main_title::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Gold bottom border */
.main_title .title_back::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-dark) 50%, var(--gold) 80%, transparent 100%);
}

/* Navy accent top-left glow */
.main_title .title_back::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,30,73,.08) 0%, transparent 70%);
  pointer-events: none;
}
/* neutralise Bootstrap col-* negative margins inside banner */
.main_title [class*="col-"] {
  float: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.main_title .title_back {
  padding: 52px 40px 55px !important;
  background: none !important;
  position: relative;
  z-index: 1;
  display: flex !important;
  align-items: center !important;
}
.main_title .subtitle {
  padding: 0 !important;
  border-left: 5px solid var(--gold) !important;
  padding-left: 22px !important;
  position: relative;
}
/* Gold dot top of border */
.main_title .subtitle::before {
  content: '';
  position: absolute;
  top: 2px; left: -7px;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(232,160,32,.5);
}
/* Gold dot bottom of border */
.main_title .subtitle::after {
  content: '';
  position: absolute;
  bottom: 2px; left: -7px;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(232,160,32,.5);
}
.main_title .subtitle h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: 34px !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0 0 10px !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.2) !important;
  letter-spacing: .5px;
  line-height: 1.2 !important;
}
.main_title .subtitle p,
.main_title .subtitle .demo {
  font-size: 13px !important;
  color: rgba(255,255,255,.75) !important;
  margin: 0 !important;
  letter-spacing: .3px;
}
.main_title .subtitle a { color: rgba(255,255,255,.85) !important; }
.main_title .subtitle a:hover { color: var(--gold) !important; }

/* ══════════════════════════════════════════
   INNER PAGE BODY
══════════════════════════════════════════ */
.container > .row,
.container > .about_page,
.container > .staff { padding-top: 4px; }

/* ── CKEditor content reset ─────────────── */
.about_page, .anty_section, .accordion_inner, .ck-content, .page-body-ck, .rich_editor_text {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  color: #3d3d3d !important;
  line-height: 1.85 !important;
  background: #fff !important;
  border-radius: 14px !important;
  padding: 28px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.07) !important;
  margin-bottom: 24px !important;
}
.about_page p, .anty_section p, .accordion_inner p, .ck-content p, .rich_editor_text p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  color: #3d3d3d !important;
  line-height: 1.85 !important;
  margin-bottom: 14px !important;
}
.about_page h1, .anty_section h1, .accordion_inner h1,
.about_page h2, .anty_section h2, .accordion_inner h2,
.about_page h3, .anty_section h3, .accordion_inner h3,
.about_page h4, .anty_section h4, .accordion_inner h4 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin: 20px 0 10px !important;
}
.about_page h2, .anty_section h2 { font-size: 20px !important; }
.about_page h3, .anty_section h3 { font-size: 17px !important; }
.about_page h4, .anty_section h4 { font-size: 15px !important; }
.about_page ul, .anty_section ul, .accordion_inner ul,
.about_page ol, .anty_section ol, .accordion_inner ol {
  padding-left: 22px !important;
  margin-bottom: 14px !important;
}
.about_page li, .anty_section li, .accordion_inner li {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13.5px !important;
  color: #3d3d3d !important;
  line-height: 1.8 !important;
  margin-bottom: 4px !important;
}
.about_page a, .anty_section a, .accordion_inner a {
  color: var(--navy) !important;
  text-decoration: underline !important;
}
.about_page a:hover, .anty_section a:hover { color: var(--gold-dark) !important; }
.about_page strong, .anty_section strong, .accordion_inner strong {
  font-weight: 700 !important;
  color: var(--navy) !important;
}
.about_page table, .anty_section table, .accordion_inner table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-bottom: 20px !important;
  font-size: 13px !important;
  font-family: 'Poppins', sans-serif !important;
}
.about_page table th, .anty_section table th, .accordion_inner table th {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 14px !important;
  font-weight: 600 !important;
  text-align: left !important;
}
.about_page table td, .anty_section table td, .accordion_inner table td {
  padding: 9px 14px !important;
  border: 1px solid #e2e8f0 !important;
  color: #444 !important;
  vertical-align: middle !important;
}
.about_page table tr:nth-child(even) td, .anty_section table tr:nth-child(even) td {
  background: #f8fafd !important;
}
.about_page img, .anty_section img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
  margin: 10px 0 !important;
}

/* Section headings */
.heading_noti,
h3.heading_noti {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  border-left: 4px solid var(--gold) !important;
  padding: 8px 16px !important;
  background: #f4f7fc !important;
  border-radius: 0 8px 8px 0 !important;
  margin: 0 0 18px !important;
  font-family: 'Poppins', sans-serif !important;
}

/* Buttons */
.btn.button,
.btn-primary-custom {
  background: var(--navy) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 10px 28px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .4px !important;
  transition: background .2s, transform .15s !important;
  font-family: 'Poppins', sans-serif !important;
}
.btn.button:hover { background: var(--gold-dark) !important; transform: translateY(-1px) !important; color: #fff !important; }
.btn-primary { background-color: var(--navy) !important; border-color: var(--navy) !important; }
.btn-primary:hover { background-color: var(--gold-dark) !important; border-color: var(--gold-dark) !important; }

/* Form controls */
.form-control {
  border: 1.5px solid #dbe3f0 !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  color: var(--navy) !important;
  font-family: 'Poppins', sans-serif !important;
  box-shadow: none !important;
  transition: border-color .2s !important;
}
.form-control:focus {
  border-color: var(--navy) !important;
  box-shadow: 0 0 0 3px rgba(0,30,73,.1) !important;
}
.control-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  font-family: 'Poppins', sans-serif !important;
}

/* Well / card wrapper */
.well {
  background: #fff !important;
  border: 1px solid #e8edf5 !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.07) !important;
  padding: 28px !important;
}
.well legend {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  border-bottom: 2px solid var(--gold) !important;
  padding-bottom: 10px !important;
  margin-bottom: 22px !important;
  font-family: 'Poppins', sans-serif !important;
}

/* Tables */
.table {
  font-size: 13px !important;
  font-family: 'Poppins', sans-serif !important;
}
.table > thead > tr > th {
  background: var(--navy) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 12px 14px !important;
  letter-spacing: .3px !important;
}
.table > tbody > tr > td {
  padding: 10px 14px !important;
  border-color: #e8edf5 !important;
  vertical-align: middle !important;
  color: #444 !important;
}
.table > tbody > tr:nth-child(odd) > td { background: #f8fafd !important; }
.table > tbody > tr:hover > td { background: #eef2fb !important; }
.table-bordered { border: 1px solid #e8edf5 !important; border-radius: 10px !important; overflow: hidden !important; }

/* Panels */
.panel { border: none !important; border-radius: 12px !important; box-shadow: 0 4px 16px rgba(0,0,0,.07) !important; }
.panel-heading { background: var(--navy) !important; color: #fff !important; border-radius: 12px 12px 0 0 !important; font-weight: 600 !important; }
.panel-title { color: #fff !important; font-family: 'Poppins', sans-serif !important; font-size: 14px !important; }
.panel-body { padding: 20px !important; }

/* Alerts */
.alert-success { background: #f0fdf4 !important; border-color: #bbf7d0 !important; color: #166534 !important; border-radius: 10px !important; }
.alert-danger  { background: #fef2f2 !important; border-color: #fecaca !important; color: #991b1b !important; border-radius: 10px !important; }
.alert-info    { background: #eff6ff !important; border-color: #bfdbfe !important; color: #1e40af !important; border-radius: 10px !important; }

/* Nav tabs (inner pages) */
.nav-tabs > li > a {
  color: var(--navy) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  border-radius: 8px 8px 0 0 !important;
  font-family: 'Poppins', sans-serif !important;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy) !important;
}

/* Page content wrapper */
.inner-page-content {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  margin-bottom: 24px;
}

/* Notifications / content pages */
.heading_noti {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  border-left: 4px solid var(--orange) !important;
  padding: 6px 14px !important;
  background: var(--light-bg) !important;
  border-radius: 0 6px 6px 0 !important;
  margin: 0 0 16px !important;
}
.notification_list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.notification_list li {
  padding: 12px 16px !important;
  border-bottom: 1px solid var(--border) !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.notification_list li:last-child { border-bottom: none !important; }
.notification_list li a {
  color: var(--text) !important;
  font-size: 13px !important;
  flex: 1 !important;
  line-height: 1.5 !important;
}
.notification_list li a:hover { color: var(--orange) !important; }

/* Staff/Faculty cards */
.postsbycategory {
  background: #fff !important;
  border-radius: 10px !important;
  padding: 20px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07) !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  transition: transform .25s !important;
}
.postsbycategory:hover { transform: translateY(-4px) !important; }
.postsbycategory img {
  border-radius: 50% !important;
  width: 90px !important;
  height: 90px !important;
  object-fit: cover !important;
  border: 3px solid var(--orange) !important;
  margin-bottom: 12px !important;
}
.postsbycategory h4 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  margin: 0 0 4px !important;
}
.postsbycategory p {
  font-size: 12px !important;
  color: var(--text-light) !important;
  margin: 0 !important;
}
.faculty_list { list-style: none !important; padding: 0 !important; }
.faculty_list li { padding: 6px 0 !important; font-size: 13px !important; }

/* Gallery */
.gallery_img {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  transition: transform .3s, box-shadow .3s !important;
}
.gallery_img:hover { transform: scale(1.05) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important; }
.box {
  overflow: hidden !important;
  border-radius: 8px !important;
  margin-bottom: 16px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* ── Gallery Page ─────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 992px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .gal-grid { grid-template-columns: repeat(2, 1fr); } }

.gal-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
  aspect-ratio: 1 / 1;
  text-decoration: none !important;
}
.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gal-card:hover img {
  transform: scale(1.08);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,73,.75) 0%, rgba(0,30,73,.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .3s;
}
.gal-card:hover .gal-overlay {
  opacity: 1;
}
.gal-overlay i {
  font-size: 28px;
  color: var(--gold);
}
.gal-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 0 12px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Gallery / campus life section (home) */
.gallery-section {
  background: #fff;
  padding: 60px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,26,78,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: #fff; font-size: 12px; font-weight: 600; text-align: center; padding: 0 10px; }

/* Panels / accordion */
.panel-default {
  border: none !important;
  border-radius: 8px !important;
  margin-bottom: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}
.panel-default .panel-heading {
  background: #f0f4fa !important;
  border-radius: 8px !important;
  border-left: 4px solid var(--gold) !important;
}
.panel-default .panel-heading .panel-title a {
  color: var(--navy) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  display: block !important;
}
.panel-default .panel-heading .panel-title a:hover {
  color: var(--gold) !important;
}

/* ── Pagination ──────────────────────── */
.pagination {
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 0 !important;
  margin: 8px 0 !important;
  list-style: none !important;
}
.pagination > li {
  display: inline-block !important;
  float: none !important;
}
.pagination > li > a,
.pagination > li > span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 8px !important;
  border: 2px solid #dde3ef !important;
  background: #fff !important;
  color: var(--navy) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all .2s !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.pagination > li > a:hover {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0,30,73,.25) !important;
}
.pagination > .disabled > a,
.pagination > .disabled > span {
  background: #f5f7fa !important;
  border-color: #e8edf5 !important;
  color: #bbb !important;
  cursor: not-allowed !important;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 8px !important;
}

/* ── College Sidebar ─────────────────── */
.college-sidebar {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.college-sidebar .cs-title {
  background: var(--navy);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px;
  border-bottom: 3px solid var(--gold);
  letter-spacing: .5px;
}
.college-sidebar .cs-links {
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 8px;
}
.college-sidebar .cs-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
  border-left: 4px solid var(--gold);
}
.college-sidebar .cs-btn:hover {
  background: #002a6e;
  transform: translateX(3px);
  color: #fff !important;
}
.college-sidebar .cs-btn i {
  color: var(--gold);
  font-size: 15px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* ── Inner Page Card (tables, lists) ─────── */
.ip-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  overflow: hidden;
}
.ip-card-header {
  background: var(--navy);
  color: #fff;
  padding: 16px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 3px solid var(--gold);
}
.ip-card-header i {
  color: var(--gold);
  font-size: 20px;
}
.ip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #444;
}
.ip-table thead tr {
  background: #f0f3f8;
}
.ip-table thead th {
  padding: 13px 16px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .5px;
  border-bottom: 2px solid #dde3ef;
}
.ip-table tbody tr {
  border-bottom: 1px solid #eef0f5;
  transition: background .15s;
}
.ip-table tbody tr:hover {
  background: #f7f9ff;
}
.ip-table tbody td {
  padding: 12px 16px;
  vertical-align: middle;
}
.ip-table tbody tr:last-child {
  border-bottom: none;
}
.ip-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .2s;
}
.ip-dl-btn:hover {
  background: var(--gold);
  color: var(--navy) !important;
}
.ip-dl-btn i {
  font-size: 13px;
}



/* ── Department Cards ────────────────── */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 992px) { .dept-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .dept-grid { grid-template-columns: repeat(2, 1fr); } }

.dept-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #e8edf5;
  border-radius: 16px;
  padding: 32px 18px 24px;
  text-decoration: none !important;
  text-align: center;
  transition: all .25s ease;
  box-shadow: 0 4px 16px rgba(0,30,73,.06);
  position: relative;
  overflow: hidden;
}
.dept-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.dept-card:hover {
  border-color: var(--navy);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,30,73,.14);
  text-decoration: none !important;
}
.dept-card:hover::before {
  transform: scaleX(1);
}
.dept-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0,30,73,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.dept-icon i {
  font-size: 26px;
  color: var(--navy);
  transition: color .25s;
}
.dept-card:hover .dept-icon {
  background: var(--navy);
}
.dept-card:hover .dept-icon i {
  color: var(--gold);
}
.dept-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.dept-arrow {
  font-size: 11px;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: translateX(-4px);
}
.dept-card:hover .dept-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Teacher Cards ───────────────────── */
.teacher-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,30,73,.08);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.teacher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,30,73,.14);
}
.teacher-photo {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 100%);
  padding: 24px 0 0;
  display: flex;
  justify-content: center;
}
.teacher-photo img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  display: block;
  margin-bottom: -20px;
}
.teacher-info {
  padding: 28px 16px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.teacher-info h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.3;
}
.teacher-dept {
  display: inline-block;
  background: rgba(0,30,73,.07);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.teacher-meta {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: #666;
  text-align: left;
  width: 100%;
  margin-top: 6px;
  line-height: 1.5;
}
.teacher-meta i {
  color: var(--gold);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}
.teacher-meta a {
  color: #555;
  word-break: break-all;
  text-decoration: none;
}
.teacher-meta a:hover { color: var(--navy); }

/* ══════════════════════════════════════════
   HOME PAGE – MOBILE RESPONSIVE FIXES
══════════════════════════════════════════ */

/* Tablet (768px – 991px) */
@media (max-width: 991px) {
  .hero-content-overlay .container,
  .hero-content-overlay .container-fluid {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .hero-section #heroCarousel,
  .hero-section #heroCarousel .carousel-inner,
  .hero-section #heroCarousel .carousel-inner .item {
    height: 420px;
  }
  .hero-section #heroCarousel .carousel-inner .item img {
    height: 420px;
  }
  .hero-text h1 { font-size: 32px; }
  .principal-section {
    margin-top: 0;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
.dept-icon {
    width: 100px;
    height: 100px;

}
  /* ── Hero Carousel ── */
  .hero-section {
    min-height: 0;
  }
  .hero-section #heroCarousel,
  .hero-section #heroCarousel .carousel-inner,
  .hero-section #heroCarousel .carousel-inner .item {
    height: 460px;
  }
  .hero-section #heroCarousel .carousel-inner .item img {
    height: 460px;
    object-position: center 15%;
  }
  /* Gradient: top transparent (faces clear), bottom dark (text readable) */
  .hero-gradient-overlay {
    background: linear-gradient(to top,
      rgba(9,26,78,0.95) 0%,
      rgba(9,26,78,0.80) 35%,
      rgba(9,26,78,0.20) 60%,
      rgba(9,26,78,0.00) 100%);
  }

  /* ── Hero Content — push to bottom ── */
  .hero-content-overlay {
    align-items: flex-end;
    padding-bottom: 6px;
  }
  .hero-content-overlay .container,
  .hero-content-overlay .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .hero-content-overlay .row {
    display: block !important;
  }
  .hero-content-overlay [class*="col-"] {
    width: 100% !important;
    padding: 0;
    float: none !important;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .hero-text .hero-desc {
    font-size: 12.5px;
    margin-bottom: 18px;
    max-width: 100%;
    display: block;
    color: rgba(255,255,255,0.88);
  }
  .hero-btns {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .hero-btns a {
    padding: 10px 18px;
    font-size: 11.5px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .hero-section .carousel-control.left  { left: 4px; }
  .hero-section .carousel-control.right { right: 4px; }
  .hero-ctrl-btn { width: 34px; height: 34px; font-size: 12px; box-shadow: none; }
  /* Arrows: center (default) — restore */
  .hero-section .carousel-control {
    align-items: center !important;
    padding-top: 0;
  }
  /* Content: pushed to very bottom, leaving gap for dots below */
  .hero-content-overlay {
    align-items: flex-end;
    padding-bottom: 6px;
  }
  /* Hide carousel dots on mobile */
  .hero-section .carousel-indicators { display: none; }

  /* ── Principal Section ── */
  .principal-section {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    padding: 24px 16px 20px;
    box-shadow: none;
    border-top: 3px solid var(--orange);
  }
  .principal-desk-header h2 { font-size: 22px; }
  .principal-photo-block {
    max-width: 220px;
    margin: 0 auto 20px;
  }
  .principal-img-wrap {
    height: auto;
  }
  .principal-img-wrap img {
    height: auto;
    object-fit: unset;
    object-position: unset;
  }

  /* ── Stats Bar ── */
  .stats-bar { padding: 14px 8px 24px; }
  .stats {
    padding: 20px 12px;
    gap: 0;
    justify-content: flex-start;
  }
  .stat {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 12px 8px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
    justify-content: flex-start;
    gap: 10px;
  }
  .stat:nth-child(n) { border-right: none; }
  .stat:nth-last-child(-n+3) { border-bottom: none; }
  .stat-icon { width: 40px; height: 40px; font-size: 16px; flex-shrink: 0; }
  .stat h3 { font-size: 18px; }
  .stat p { font-size: 10px; }
  /* ── Old stat-item (home.blade.php) ── */
  .stat-item {
    text-align: center;
    padding: 10px 4px;
  }
  .stat-icon-circle {
    margin: 0 auto 6px;
  }

  /* ── Achievements ── */
  .section-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }
  .section-title-row h2 {
    font-size: 17px;
    flex-wrap: wrap;
  }
  .section-title-row h2.decorated-title::before,
  .section-title-row h2.decorated-title::after {
    display: none;
  }
  .text-center-mobile { text-align: center !important; }
  .btn-view-all-sm {
    position: static;
    transform: none;
    font-size: 10px;
    padding: 6px 12px;
  }
  /* Show arrows on mobile — smaller size */
  .ach-arrow {
    display: flex;
    width: 30px;
    height: 30px;
    font-size: 11px;
    flex-shrink: 0;
  }
  .achievement-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 8px 4px 12px;
  }
  .achievement-carousel::-webkit-scrollbar { display: none; }
  .ach-card {
    flex: 0 0 calc(50% - 6px);
    min-width: 0;
  }
  .ach-img-wrap img { height: 160px; }
  .ach-info h5 { font-size: 11.5px; }
  .ach-info span { font-size: 10.5px; }
  .ach-info p { font-size: 10px; }

  /* ── Programs ── */
  .section-header h2 {
    font-size: 18px;
  }
  .section-header h2::before,
  .section-header h2::after {
    flex: 0 0 20px;
  }
  .programs-wrapper { padding: 14px 10px 4px; }
  .program-card-new { padding: 20px 12px 14px; }
  .prog-icon-new { width: 60px; height: 60px; font-size: 28px; }
  .program-card-new h4 { font-size: 14px; }

  /* ── Campus Life ── */
  .campus-arrows-row { display: flex; }
  .campus-tile {
    flex: 0 0 calc(33.33% - 10px);
    min-width: 100px;
  }
  .campus-tile img { height: 90px; }

  /* ── Info Cards (Notices/Events/Testimonials) ── */
  .info-section .row {
    display: block !important;
  }
  .info-section .row > [class*="col-"] {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: block;
  }
  .info-card-box { margin-bottom: 16px; }
  .info-card-box .card-body-content { max-height: 320px; }
  /* Testimonial card: full height, no cut-off */
  .info-card-box:last-child .card-body-content { max-height: none; overflow-y: visible; }
  /* Smaller avatar on mobile to save space */
  .testimonial-avatar img { width: 65px; height: 65px; }
  .testimonial-avatar strong { font-size: 14px; }
  .testimonial-quote-icon { font-size: 30px; margin-bottom: 8px; }
  .testimonial-card-inner { padding: 14px 16px 12px; }

  /* ── Accreditations ── */
  .accreditations-bar { padding: 24px 0 28px; }
  .accr-circle { width: 44px; height: 44px; font-size: 9px; }
  .accr-text strong { font-size: 11px; }
  .accr-text span { font-size: 9px; }
  .accr-item { padding: 8px 8px; gap: 8px; }

  /* ── Events Ticker ── */
  .events-ticker .ticker-label { padding: 0 8px; font-size: 10px; }
  .events-ticker a { font-size: 11.5px; }

  /* ── Principal photo col ── */
  .principal-section .col-xs-12.col-md-3 {
    text-align: center;
  }
}

/* Extra-small mobile (< 480px) */
@media (max-width: 480px) {
  .hero-section #heroCarousel,
  .hero-section #heroCarousel .carousel-inner,
  .hero-section #heroCarousel .carousel-inner .item {
    height: 260px;
  }
  .hero-section #heroCarousel .carousel-inner .item img { height: 300px; }
  .hero-section #heroCarousel,
  .hero-section #heroCarousel .carousel-inner,
  .hero-section #heroCarousel .carousel-inner .item { height: 300px; }
  .hero-text h1 { font-size: 22px; }
  .hero-text .hero-desc { font-size: 11.5px; }
  .hero-btns a { padding: 9px 14px; font-size: 11px; }
  .stats-bar .col-xs-6 { width: 50%; }
  /* Stats — 2 per row on very small screens */
  .stat {
    flex: 0 0 50%;
    width: 50%;
  }
  .stat:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .ach-card { flex: 0 0 calc(50% - 6px); min-width: 0; }
  .ach-img-wrap img { height: 140px; }
  .program-card-new { margin-bottom: 12px; }
  .campus-tile { flex: 0 0 calc(50% - 8px); min-width: 90px; }
  .campus-tile img { height: 80px; }
  .section-header h2 { font-size: 15px; gap: 8px; }
  .section-header h2::before,
  .section-header h2::after { display: none; }
  .section-header h2 i { width: 32px; height: 32px; font-size: 14px; }
  .principal-section { padding: 18px 12px 16px; }
  .principal-desk-header h2 { font-size: 19px; }
  .principal-photo-block { max-width: 190px; }
  .principal-img-wrap { height: auto; }
  .accreditations-bar .col-xs-6 { width: 50%; }
}
