
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
                                
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(26,43,74,0.97);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: var(--nav-height);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  overflow: hidden;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta:hover { background: #e0a82f; color: var(--navy) !important; }

/* ── PAGE HEADER (used on inner pages) ── */
.page-header {
  min-height: 40vh;
  background-color: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(15,25,45,0.78) 0%, rgba(10,20,38,0.78) 60%, rgba(15,35,30,0.78) 100%),
    url('../images/9.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex; align-items: center;
  padding: 140px 5% 60px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}
.page-header .section-label {
  color: var(--teal-lt);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.page-header h1 {
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.page-header p {
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.breadcrumb {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.breadcrumb a { color: var(--teal-lt); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

.page-header .ph-sub {
  color: #FFFFFF;
  max-width: 780px;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background-color: var(--navy);
  background-image: url('../images/10.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; max-width: 680px; }
.hero-badge {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--navy);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: white;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--teal-lt); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(0,0,0,0.3);
  color: #111111;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── ACCREDITATION STRIP ── */
.accred-strip {
  background: var(--teal);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.accred-strip span {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.accred-strip span::before { content: '✓'; font-weight: 700; color: var(--gold); }

/* ── SECTIONS ── */
section { padding: var(--section-padding); }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.about-visual { position: relative; }
.about-img-box {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-img-box::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  z-index: -1;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  border: 1px solid #E5E7EB;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mv-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.mv-icon-mission { background: rgba(58,78,201,0.12); }
.mv-icon-vision  { background: rgba(42,127,111,0.12); }
.mv-icon-values  { background: rgba(201,149,42,0.15); }
.mv-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.mv-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 3px solid var(--teal);
}
.value-card h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.value-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

/* ── PROGRAMS ── */
.programs { background: var(--white); }
.programs-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.program-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  cursor: pointer;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.program-card-top { padding: 40px 28px 28px; position: relative; }
.prog-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.program-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.program-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.program-card-bottom {
  padding: 16px 28px;
  background: var(--light);
  display: flex; justify-content: space-between; align-items: center;
}
.prog-duration { font-size: 0.8rem; color: var(--gray); font-weight: 500; }
.prog-link { font-size: 0.85rem; font-weight: 600; color: var(--teal); text-decoration: none; }

.prog-basic .program-card-top { background: linear-gradient(135deg, #EEF7F5, #F8FFFD); }
.prog-basic .prog-icon { background: rgba(42,127,111,0.15); }
.prog-comm .program-card-top { background: linear-gradient(135deg, #EEF2F7, #F5F8FF); }
.prog-comm .prog-icon { background: rgba(26,43,74,0.1); }
.prog-mid .program-card-top { background: linear-gradient(135deg, #FDF7EE, #FFFDF5); }
.prog-mid .prog-icon { background: rgba(201,149,42,0.15); }
.prog-cmid .program-card-top { background: linear-gradient(135deg, #FBEFF2, #FFF6F8); }
.prog-cmid .prog-icon { background: rgba(190,60,90,0.14); }
.prog-peri .program-card-top { background: linear-gradient(135deg, #EEF2FB, #F6F8FF); }
.prog-peri .prog-icon { background: rgba(58,78,201,0.14); }

/* ── ADMISSIONS ── */
.admissions { background: var(--navy); }
.admissions .section-label { color: var(--teal-lt); }
.admissions .section-title { color: var(--white); }
.admissions .section-sub { color: rgba(255,255,255,0.6); }
.adm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
}
.adm-steps { display: flex; flex-direction: column; gap: 28px; }
.adm-step { display: flex; gap: 20px; }
.step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  color: var(--white);
}
.step-body h4 { color: var(--white); font-weight: 600; margin-bottom: 4px; }
.step-body p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }


.adm-howto { margin-top: 64px; }
.adm-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  column-gap: 56px;
  row-gap: 28px;
}

.adm-dates-header { background: var(--teal); padding: 20px 28px; }
.adm-dates-header h3 { color: var(--white); font-size: 1rem; font-weight: 600; }
.date-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.date-row:last-child { border-bottom: none; }
.date-event { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.date-val { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

/* ── FACULTY ── */
.faculty { background: var(--cream); }
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.faculty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition-slow);
}
.faculty-card:hover { transform: translateY(-4px); }
.faculty-avatar {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.faculty-avatar img { width: 100%; height: 100%; object-fit: cover; }
.faculty-info { padding: 16px 16px 24px; }
.faculty-info h4 { font-weight: 600; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.faculty-info p { font-size: 0.8rem; color: var(--teal); font-weight: 500; }

/* ── NEWS ── */
.news { background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: box-shadow var(--transition-slow);
}
.news-card:hover { box-shadow: 0 12px 32px rgba(26,43,74,0.1); }
.news-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 24px; }
.news-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42,127,111,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.news-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.news-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.news-date { font-size: 0.78rem; color: var(--gray); margin-top: 16px; }


/* ── LEADERSHIP ── */
.leadership { background: var(--white); }
.leader-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 56px;
}
.leader-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch; 
}
.leader-row:not(:last-child) {
  padding-bottom: 56px;
  border-bottom: 1px solid #E5E7EB;
}
.leader-row-reverse .leader-text { order: 2; }
.leader-row-reverse .leader-photo-box { order: 1; }
.leader-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.leader-title {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.leader-bio {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.leader-bio:last-child { margin-bottom: 0; }

.leader-photo-box {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius-md);
  height: 100%;              
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.leader-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;   
}

/* ── CONTACT ── */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item h4 { font-weight: 600; color: var(--navy); margin-bottom: 4px; font-size: 0.9rem; }
.contact-item p { color: var(--gray); font-size: 0.88rem; line-height: 1.5; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition-fast);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition-fast);
}
.form-submit:hover { background: var(--teal-lt); }
.form-success {
  display: none;
  background: rgba(42,127,111,0.1);
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 64px 5% 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; margin-top: 16px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color var(--transition-fast); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.social-link:hover { background: var(--teal); color: var(--white); }

/* ── MOBILE MENU TOGGLE (base state; sizing/behaviour in responsive.css) ── */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: transform var(--transition-fast), opacity var(--transition-fast); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SCROLL REVEAL (used by assets/js/animations.js) ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
