:root {
  --navy: #244b7d;
  --navy-dark: #1a3559;
  --navy-light: #31517a;
  --accent: #2eaed5;
  --accent2: #d12b2b;
  --grey: #8c939a;
  --light-bg: #eef1f6;
  --mid-bg: #e2e6eb;
  --white: #ffffff;
  --text-dark: #2d3748;
  --text-mid: #4a5568;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--mid-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,53,89,0.97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-circle {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1rem;
  color: #fff; letter-spacing: 1px; flex-shrink: 0;
}

.nav-brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: #fff; letter-spacing: 0.5px; line-height: 1.1;
}

.nav-brand-text span {
  display: block; font-weight: 300; font-size: 0.75rem;
  color: var(--accent); letter-spacing: 2px; text-transform: uppercase;
}

.nav-links { display: flex; gap: 4px; list-style: none; }

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 6px 12px; border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(46,174,213,0.2);
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all 0.28s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  display: none; position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(26,53,89,0.99);
  z-index: 999; flex-direction: column;
  overflow: hidden; max-height: 0;
  transition: max-height 0.32s ease;
}
.mobile-drawer.open { max-height: 400px; }
.mobile-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1.05rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background 0.2s;
}
.mobile-drawer a:hover { color: var(--accent); background: rgba(255,255,255,0.04); }

/* ─── PAGE WRAPPER (all inner pages) ─── */
.page-wrap {
  padding-top: 60px;
  min-height: 100vh;
}

/* ─── PAGE HERO BANNER ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a6895 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%);
  background-size: 30px 30px;
}
.page-hero-inner {
  width: 90%; max-width: 960px; margin: auto;
  position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2.5rem,6vw,4.5rem);
  text-transform: uppercase; color: #fff; line-height: 1;
  letter-spacing: 2px;
}
.page-hero h1 span { color: var(--accent); font-weight: 300; }
.page-hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 10px;
}

/* ─── SECTION WRAPPER ─── */
.section-inner { width: 90%; max-width: 960px; margin: auto; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem,5vw,3.8rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; margin-bottom: 40px;
  display: flex; align-items: baseline;
  gap: 14px; flex-wrap: wrap;
}
.sl-blue { color: var(--navy); }
.sl-grey { color: var(--grey); font-weight: 300; }

/* ─── HERO (index only) ─── */
#hero {
  min-height: 100vh;
  background-image: url('banner/new-banner.jpeg');
  background-repeat: no-repeat; background-size: cover;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 60px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%);
  background-size: 30px 30px;
}
.hero-shape  { position:absolute; bottom:-80px; right:-80px;  width:500px; height:500px; background:rgba(46,174,213,0.12); border-radius:50%; }
.hero-shape2 { position:absolute; top:-100px;  left:-100px;  width:400px; height:400px; background:rgba(255,255,255,0.04); border-radius:50%; }

.hero-content {
  text-align: center; position: relative; z-index: 2;
  padding: 40px 20px;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(46,174,213,0.2);
  border: 1px solid rgba(46,174,213,0.5);
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(2.8rem,7vw,5.5rem);
  color: #fff; line-height: 0.95;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.hero-title .light { font-weight: 300; color: rgba(255,255,255,0.55); }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem,2vw,1.4rem);
  color: rgba(255,255,255,0.6);
  letter-spacing: 5px; text-transform: uppercase; margin-bottom: 10px;
}
.hero-approval {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--accent); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 36px;
}
.hero-phones { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.hero-phone-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 8px 20px; border-radius: 30px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px;
}
.hero-cta-row { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:36px; }
.hero-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 28px; border-radius: 4px; text-decoration: none; transition: all 0.2s;
}
.hero-cta-primary { background: var(--accent); color: #fff; }
.hero-cta-primary:hover { background: #1d96bc; }
.hero-cta-outline { border: 2px solid rgba(255,255,255,0.4); color: #fff; }
.hero-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-scroll {
  position: absolute; bottom:30px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  color:rgba(255,255,255,0.4); font-size:0.7rem; letter-spacing:2px; text-transform:uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after { content:''; width:1px; height:40px; background:linear-gradient(to bottom,rgba(255,255,255,0.4),transparent); }
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(6px); }
}

/* ─── ABOUT PAGE ─── */
.director-layout { display:flex; gap:40px; align-items:flex-start; }
.director-sidebar {
  width:240px; flex-shrink:0; background:#fff;
  padding:30px 20px; box-shadow:0 4px 20px rgba(0,0,0,0.07);
}
.profile-card { text-align:center; margin-bottom:24px; }
.profile-card img {
  width:90px; height:110px; object-fit:cover;
  border:3px solid var(--navy); padding:2px; background:#fff; margin-bottom:10px;
}
.profile-name { font-size:0.82rem; font-weight:700; color:var(--navy-dark); margin-bottom:3px; }
.profile-title { font-size:0.75rem; color:var(--grey); }
.director-text p {
  font-size:0.92rem; line-height:1.75; color:var(--text-mid);
  margin-bottom:18px; text-align:justify;
}
.mv-row { display:flex; gap:24px; margin-top:40px; }
.mv-box {
  flex:1; background:var(--navy); color:#fff;
  padding:28px 24px; text-align:center;
  position:relative; overflow:hidden;
}
.mv-box::before {
  content:''; position:absolute; top:-30px; right:-30px;
  width:80px; height:80px; background:rgba(255,255,255,0.05); border-radius:50%;
}
.mv-box-title {
  font-family:'Barlow Condensed',sans-serif;
  font-size:1.4rem; font-weight:800; letter-spacing:2px;
  text-transform:uppercase; margin-bottom:12px; color:var(--accent);
}
.mv-box p { font-size:0.85rem; line-height:1.6; color:rgba(255,255,255,0.8); }

/* ─── COURSES PAGE ─── */
.courses-table {
  width:100%; border-collapse:collapse; font-size:0.88rem;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.courses-table th {
  background:var(--navy); color:#fff;
  font-family:'Barlow Condensed',sans-serif;
  font-weight:600; letter-spacing:1px; text-transform:uppercase;
  padding:13px 12px; border:1px solid rgba(255,255,255,0.1);
}
.courses-table td {
  padding:11px 12px; color:var(--text-mid);
  border:1px solid #d0d8e4; text-align:center;
}
.courses-table tr:nth-child(odd) td  { background:#e2e8f0; }
.courses-table tr:nth-child(even) td { background:#edf2f7; }
.courses-table tr:hover td { background:#d4e0ef; transition:background 0.2s; }

.eligibility-box {
  margin-top:32px; background:#fff;
  border-left:4px solid var(--accent);
  padding:20px 24px; box-shadow:0 2px 10px rgba(0,0,0,0.06);
}
.eligibility-box h3 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:1.2rem; font-weight:700; color:var(--navy);
  letter-spacing:1px; text-transform:uppercase; margin-bottom:12px;
}
.eligibility-box li {
  list-style:none; font-size:0.92rem; color:var(--text-mid);
  line-height:2; padding-left:18px; position:relative;
}
.eligibility-box li::before { content:'▸'; position:absolute; left:0; color:var(--accent2); }
.info-quote {
  margin-top:24px; padding:16px 20px; background:var(--navy);
  color:rgba(255,255,255,0.85); font-style:italic; font-size:0.9rem;
  line-height:1.6; border-radius:2px;
}

/* ─── FACILITIES PAGE ─── */
.facilities-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:14px; margin-bottom:48px;
}
.fac-item {
  background:#fff; border-left:3px solid var(--accent2);
  padding:14px 16px; font-weight:600; font-size:0.9rem; color:var(--text-dark);
  box-shadow:0 2px 8px rgba(0,0,0,0.05); transition:transform 0.2s,box-shadow 0.2s;
}
.fac-item:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,0.1); }

.fac-desc {
  background:var(--navy); color:rgba(255,255,255,0.8);
  padding:20px 24px; font-style:italic; font-size:0.88rem;
  line-height:1.6; margin-bottom:48px; border-left:4px solid var(--accent);
}
.labs-section-label {
  font-family:'Barlow Condensed',sans-serif; font-size:2.4rem;
  font-weight:900; text-transform:uppercase;
  display:flex; align-items:baseline; gap:10px; margin-bottom:28px;
}
.hex-grid { display:flex; flex-direction:column; align-items:center; }
.hex-row { display:flex; justify-content:center; margin-bottom:-25px; }
.hex-item {
  width:120px; height:138px; margin:0 3px;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background:var(--navy); position:relative;
  display:flex; justify-content:center; align-items:center; transition:transform 0.3s;
}
.hex-item:hover { transform:scale(1.06); }
.hex-item img {
  width:96%; height:96%; object-fit:cover;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.hex-label {
  position:absolute; bottom:18px; left:0; width:100%;
  text-align:center; color:#fff; font-size:0.6rem; font-weight:700;
  text-shadow:1px 1px 3px rgba(0,0,0,0.9); z-index:2; line-height:1.3;
}

.subsection-title {
  font-family:'Barlow Condensed',sans-serif; font-size:1.5rem;
  color:var(--grey); text-transform:uppercase; letter-spacing:2px; margin-bottom:16px;
}
.image-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-bottom:32px; }
.image-grid-5 { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }
.grid-item img {
  width:100%; aspect-ratio:4/3; object-fit:cover;
  border:2px solid #ddd; transition:border-color 0.2s;
}
.grid-item img:hover { border-color:var(--navy); }
.grid-label { text-align:center; font-size:0.72rem; color:#555; margin-top:6px; line-height:1.3; }
.skills-strip {
  background:#3174b6;
  margin-left:calc(-5vw); margin-right:calc(-5vw);
  padding:24px 5vw 16px; margin-top:-8px;
}

/* ─── SPORTS PAGE ─── */
.sc { position:relative; height:300px; margin:30px 0 60px; }
.d {
  position:absolute; transform:rotate(45deg); overflow:hidden;
  background:#d8d8d8; box-shadow:0 4px 16px rgba(0,0,0,.20); transition:transform 0.3s;
}
.d:hover { transform:rotate(45deg) scale(1.05); }
.d img {
  position:absolute; top:50%; left:50%; width:150%; height:150%;
  object-fit:cover; transform:translate(-50%,-50%) rotate(-45deg) scale(1.1);
}
.s1 { width:180px; height:180px; left:0;    top:120px; }
.s2 { width:180px; height:180px; left:190px; top:40px; }
.s3 { width:180px; height:180px; left:400px; top:-20px; }
.s4 { width:180px; height:180px; left:365px; top:136px; }
.ec { position:relative; height:730px; max-width:500px; margin:0 auto; }
.e1  { width:140px; height:140px; left:-192px; top:31px;  }
.e2  { width:140px; height:140px; left:183px;  top:102px; }
.e3  { width:140px; height:140px; left:-161px; top:219px; }
.e4  { width:140px; height:158px; left:69px;   top:209px; }
.e5  { width:140px; height:140px; left:356px;  top:48px;  }
.e6  { width:140px; height:140px; left:-46px;  top:105px; }
.e7  { width:140px; height:140px; left:304px;  top:215px; }
.e8  { width:140px; height:140px; left:-49px;  top:331px; }
.e9  { width:140px; height:135px; left:185px;  top:329px; }
.e10 { width:140px; height:140px; left:418px;  top:321px; }
.e12 { width:140px; height:140px; left:308px;  top:437px; }
.evsub {
  color:#666; font-size:1rem; font-weight:600;
  margin:6px 0 28px; letter-spacing:0.5px; text-transform:uppercase;
}

/* ─── RECRUITERS PAGE ─── */
.recruiters-wrap { display:flex; flex-direction:column; align-items:center; gap:28px; }
.sector-block { width:100%; display:flex; flex-direction:column; align-items:center; }
.sector-title {
  font-family:'Barlow Condensed',sans-serif; font-size:0.95rem; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; color:var(--grey);
  margin-bottom:10px; position:relative; padding-bottom:8px;
}
.sector-title::after {
  content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width:40px; height:2px; background:var(--accent);
}
.logo-row { display:flex; justify-content:center; flex-wrap:wrap; gap:8px; margin-bottom:6px; }
.logo-item {
  background:#fff; padding:6px 14px; border-radius:3px;
  box-shadow:0 1px 4px rgba(0,0,0,0.08);
  display:flex; align-items:center; justify-content:center;
}
.logo-item img { height:28px; object-fit:contain; }
.split-sectors { display:flex; justify-content:center; gap:60px; width:100%; }
.split-sector-block { display:flex; flex-direction:column; align-items:center; }

/* ─── CONTACT PAGE ─── */
.contact-page {
  background: var(--navy-dark);
  padding: 60px 0 0;
  min-height: calc(100vh - 60px);
}
.contact-top { padding:20px 0 40px; text-align:center; color:#fff; }
.contact-top h2 {
  font-family:'Barlow Condensed',sans-serif; font-size:3rem; font-weight:900;
  text-transform:uppercase; letter-spacing:2px; color:#fff; margin-bottom:6px;
}
.contact-top .college-sub {
  font-family:'Barlow Condensed',sans-serif; font-size:1.1rem;
  color:rgba(255,255,255,0.5); letter-spacing:4px; text-transform:uppercase; margin-bottom:20px;
}
.contact-info-row {
  display:flex; justify-content:center; align-items:center;
  gap:20px; flex-wrap:wrap; color:rgba(255,255,255,0.7); font-size:0.92rem;
}
.contact-info-row a { color:rgba(255,255,255,0.7); text-decoration:none; }
.contact-info-row a:hover { color:var(--accent); }
.contact-info-row .sep { color:rgba(255,255,255,0.25); }
.footer-strip {
  background:rgba(0,0,0,0.4); padding:28px 20px; text-align:center;
  border-top:3px solid rgba(46,174,213,0.3);
}
.footer-strip p { color:#fff; margin-bottom:6px; }
.footer-numbers {
  color:#f1c40f; font-family:'Barlow Condensed',sans-serif;
  font-size:1.4rem; font-weight:700; letter-spacing:1px;
}
.footer-approval {
  font-family:'Barlow Condensed',sans-serif; font-size:1rem; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.7);
}

/* ─── SHARED FOOTER STRIP ─── */
.site-footer {
  background: var(--navy-dark);
  padding: 28px 20px;
  text-align: center;
  border-top: 3px solid rgba(46,174,213,0.3);
}
.site-footer p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 8px; }
.site-footer .footer-numbers {
  color: #f1c40f; font-family:'Barlow Condensed',sans-serif;
  font-size: 1.2rem; font-weight: 700;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-drawer { display: flex; }

  .director-layout { flex-direction: column; }
  .director-sidebar { width: 100%; }
  .mv-row { flex-direction: column; }

  .courses-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .image-grid-4 { grid-template-columns: repeat(2,1fr); }
  .image-grid-5 { grid-template-columns: repeat(2,1fr); }

  .hex-item { width:80px; height:92px; }
  .hex-label { font-size:0.5rem; bottom:12px; }

  .sc { height:420px; overflow:visible; }
  .s3,.s4 { display:none; }
  .s1 { left:10px; top:200px; }
  .s2 { left:200px; top:60px; }

  .ec { overflow-x:auto; max-width:100%; }
  .split-sectors { flex-direction:column; gap:24px; align-items:center; }
  .footer-numbers { font-size:1rem; line-height:2; }
}

@media (max-width: 480px) {
  .hex-item { width:64px; height:74px; }
  .hex-label { display:none; }
  .hero-badge { font-size:0.65rem; letter-spacing:1.5px; padding:5px 12px; }
}
