/* ====================================================
   BILBOB INTERNATIONAL SCHOOL — STYLESHEET
   ==================================================== */

/* ---- VARIABLES ---- */
:root {
  --navy:    #1A3A6B;
  --gold:    #E8B44E;
  --orange:  #FF6B35;
  --green:   #2E7D52;
  --cream:   #FDF8F2;
  --white:   #FFFFFF;
  --dark:    #0D1F3C;
  --gray:    #6B7280;
  --light:   #F3F6FB;
  --border:  #E2E8F0;
  

  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-block:   'Bebas Neue', cursive;

  --radius:  12px;
  --radius-lg: 24px;
  --shadow:  0 4px 30px rgba(26,58,107,0.12);
  --shadow-lg: 0 12px 60px rgba(26,58,107,0.18);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: 40px;}
input, select, textarea, button { font-family: var(--font-body); }

/* ---- UTILITIES ---- */
.section { padding: 100px 6vw; }
.section-label {
  font-family: var(--font-block);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--orange);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: #e55a25;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.45);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}
.btn-text:hover { gap: 14px; }
.full-btn { width: 100%; justify-content: center; }

/* ---- FADE-IN ANIMATION ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.prog-card:nth-child(2).fade-in.visible  { transition-delay: 0.1s; }
.prog-card:nth-child(3).fade-in.visible  { transition-delay: 0.2s; }
.prog-card:nth-child(4).fade-in.visible  { transition-delay: 0.3s; }
.campus-feature:nth-child(2).fade-in.visible { transition-delay: 0.07s; }
.campus-feature:nth-child(3).fade-in.visible { transition-delay: 0.14s; }
.campus-feature:nth-child(4).fade-in.visible { transition-delay: 0.21s; }
.campus-feature:nth-child(5).fade-in.visible { transition-delay: 0.28s; }
.campus-feature:nth-child(6).fade-in.visible { transition-delay: 0.35s; }

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 6vw;
  display: flex;
  align-items: center;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  padding: 14px 6vw;
  box-shadow: 0 4px 24px rgba(26,58,107,0.25);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-emblem {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,180,78,0.4);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-block);
  letter-spacing: 0.12em;
  font-size: 2.25rem;
  color: var(--white);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  position: relative;
  font-size: 18px;
}
.logo-sub {
  font-size: 1 rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.dropdown {
      position: relative;
      display: inline-block;
      
    }
    .dropdown .btn{
      background: none;
      text-decoration: white;
      color: #E2E8F0;
    }
    
   .dropdown-content {
     position: absolute;
     top: 100%;
     left: 0;
     background: var(--dark);
     min-width: 160px;

     opacity: 0;
     transform: translateY(-10px);
     transition: all 0.3s;
     pointer-events: none;
     border-radius: 0.5rem;
   }

    .dropdown:hover .dropdown-content {
      opacity: 5;
      transform: translateY(0);
      pointer-events: auto;
    }

    .dropdown-content a {
      color: #e55a25;
      padding: 0.5rem 1rem;
      text-decoration: navy;
      display: block;
    }

    .dropdown-content a:hover {
      background: #d4983a;
      
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  margin-left: 8px;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.nav-cta:hover {
  background: #e55a25 !important;
  box-shadow: 0 6px 22px rgba(255,107,53,0.45);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================
   HERO
   ==================================================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden; 
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img{
  width: 100%;
  border-radius: 0%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7));
  background-size: 100%;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: floatBlob 8s ease-in-out infinite;
}
.blob1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.blob2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -100px; left: 20%;
  animation-delay: 3s;
}
.blob3 {
  width: 300px; height: 300px;
  background: var(--green);
  top: 30%; left: -100px;
  animation-delay: 5s;
}
@keyframes floatBlob {
  0%, 100% { transform: scale(1) translate(0,0); }
  50%       { transform: scale(1.08) translate(20px,-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,180,78,0.2);
  border: 1px solid rgba(232,180,78,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.line { display: block; }
.line1 { animation: fadeUp 0.8s 0.1s ease both; font-size: 55px;}
.line2 { animation: fadeUp 0.8s 0.2s ease both; font-size: 45px;}
.line3 { animation: fadeUp 0.8s 0.3s ease both; font-size: 45px;}
.accent-line { color: var(--gold); font-style: italic; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.4s ease both;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.8s 0.5s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-block);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* HERO VISUAL */
.hero-visual {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s 0.3s ease both, spin-slow 25s linear infinite;
  position: relative;
}
@keyframes spin-slow {
  from { border-color: rgba(232,180,78,0.3); }
  50%  { border-color: rgba(255,107,53,0.4); }
  to   { border-color: rgba(232,180,78,0.3); }
}

.school-shield {
  width: 200px; height: 200px;
  position: relative;
  animation: floatShield 4s ease-in-out infinite;
}
@keyframes floatShield {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.shield-body {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold), #d4983a);
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(232,180,78,0.5);
}
.shield-letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.shield-stripe {
  width: 60%; height: 2px;
  background: rgb(244, 246, 250);
  margin-bottom: 6px;
}
.shield-motto {
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.floating-badge i { color: var(--orange); }
.fb1 { top: 20px; left: -80px; animation: floatBadge 5s 0s ease-in-out infinite; }
.fb2 { bottom: 40px; left: -60px; animation: floatBadge 5s 1.5s ease-in-out infinite; }
.fb3 { top: 60px; right: -40px; animation: floatBadge 5s 3s ease-in-out infinite; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.scroll-line {
  width: 50px; height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s linear infinite;
}
@keyframes scrollLine {
  to { left: 200%; }
}

/* ====================================================
   ABOUT
   ==================================================== */
.about {
  background: var(--white);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 20px;
}
.about-visual {
  position: relative;
}
.about-img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.main-img {
  height: 420px;
}
.side-img {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 180px;
  border: 4px solid var(--white);
  border-radius: var(--radius);
}
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy), #2a5298);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
}
.img-placeholder2 {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy), #2a5298);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  position: absolute;
  bottom: -1500px; right: 50px;
  width: 700px; height: 680px;
  border: 4px solid var(--white);
  border-radius: var(--radius);
}
.img-placeholder i { font-size: 3.5rem; color: var(--gold); opacity: 0.6; }
.img-placeholder img {margin-bottom: 40px; width: 100%; height: 500px;}

.img-placeholder span { font-weight: 700; letter-spacing: 0.08em; font-size: 0.85rem; text-align: start;}
.img-placeholder.small {align-items: center; background: linear-gradient(135deg, var(--orange), #d4510a);}
.img-placeholder.small i { font-size: 2rem; width: 500px; height: 500px; padding: 20px 0px 0px 0px;} 
.img-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.about-accent-box {
  position: absolute;
  top: -30px; right: 80px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 40px rgba(255,107,53,0.35);
}
.accent-num {
  font-family: var(--font-block);
  font-size: 3.5rem;
  line-height: 1;
}
.accent-text {
  font-size: 0.75rem;
  opacity: 0.9;
  text-align: center;
  line-height: 1.4;
}
.about-lead {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 16px;
}
.about-lead2 {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 16px;
  padding: 0%;
}
.about-text p {
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.75;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,53,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1rem;
}
.pillar strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 600;
}
.pillar p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/*=====================================================
STAFF SECTION
=======================================================*/

.staff-section {
  padding: 100px 0;
  background: var(--cream);
}

.sections-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.sections-header.light { color: var(--white); }
.sections-header.light .section-subtitle { color: rgba(255,255,255,0.75); }

.sections-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 12px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sections-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--indigo);
  margin-bottom: 16px;
}

.sections-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

.sections-staff {
  background: var(--cream);
}

.staff-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.staff-filter {
  background: var(--white);
  border: 2px solid var(--gray-light);
  color: var(--ink-2);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.staff-filter:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
  
}

.staff-filter.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.3);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.staff-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  animation: galleryIn 0.5s ease both;
}

.staff-card.hidden {
  display: none;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--coral);
}

.staff-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--g, linear-gradient(135deg, var(--indigo), var(--coral)));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.staff-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,15,26,0.25));
}

.staff-photo span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  transition: transform 0.4s ease;
}

.staff-card:hover .staff-photo span {
  transform: scale(1.15) rotate(-3deg);
}

.staff-info {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.staff-role {
  display: inline-block;
  background: var(--amber);
  color: var(--indigo-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.staff-info h3 {
  font-size: 1.25rem;
  color: var(--indigo);
  margin-bottom: 12px;
}

.staff-bio {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.staff-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.staff-meta span {
  font-size: 0.8rem;
  color: var(--ink-2);
  font-weight: 500;
}

@media (max-width: 992px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .staff-grid { grid-template-columns: 1fr; }
}


/* ====================================================
   PROGRAMMES
   ==================================================== */
.programmes {
  background: var(--white);
}
.programmes-header {
  margin-top: 8px;
  margin-bottom: 56px;
  max-width: 500px;
}
.programmes-header p { color: var(--gray); font-size: 1.05rem; }
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.prog-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition);
  overflow: hidden;
}
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-color);
  border-radius: 4px 4px 0 0;
}
.prog-card:hover {
  border-color: var(--card-color);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prog-card.featured {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.prog-card.featured p { color: rgba(255,255,255,0.7); }
.prog-card.featured .prog-features li { color: rgba(255,255,255,0.8); }
.prog-card.featured .prog-link { color: var(--gold); }
.prog-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.prog-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--card-color);
  margin-bottom: 20px;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.prog-card.featured .prog-icon {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}
.prog-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--card-color);
  margin-bottom: 10px;
}
.prog-card.featured .prog-tag { color: var(--gold); }
.prog-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.prog-card.featured h3 { color: var(--white); }
.prog-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.prog-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.prog-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
}
.prog-features li i { color: var(--card-color); font-size: 0.75rem; }
.prog-card.featured .prog-features li i { color: var(--gold); }
.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--card-color);
  transition: gap var(--transition);
}
.prog-link:hover { gap: 14px; }

/* ====================================================
   CAMPUS
   ==================================================== */
.campus {
  background: coral;
  background-image: url(bg.jpg);
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.campus::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100px 100px;
}
.campus .section-label { color: var(--gold); position: relative; }
.campus-header { margin-bottom: 60px; position: relative; }
.campus-header .section-title { color: var(--white); }
.campus-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  margin-bottom: 60px;
}
.campus-feature {
  background: rgba(255,255,255,0.05);
  background-size: cover;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  font-style: var(--orange);
  font: 800;
  
}

.campus-feature:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
}
.cf-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--fi-color);
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.campus-feature h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.campus-feature p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.65;
}
.campus-banner {
  background: linear-gradient(135deg, var(--orange), #d4510a);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.campus-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.banner-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.banner-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials {
  background: var(--cream);
}
.testimonials .section-title { margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.testi-card.featured-testi {
  background: var(--navy);
  border-color: var(--navy);
}
.testi-quote {
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 16px;
}
.testi-card.featured-testi .testi-quote { color: var(--gold); }
.testi-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-card.featured-testi p { color: rgba(255,255,255,0.8); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}
.testi-card.featured-testi .testi-author strong { color: var(--white); }
.testi-author span {
  font-size: 0.78rem;
  color: var(--gray);
}
.testi-card.featured-testi .testi-author span { color: rgba(255,255,255,0.5); }

.awards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.award {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: var(--transition);
}
.award:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.award i { font-size: 2rem; color: var(--gold); }
.award span { font-size: 0.82rem; color: var(--gray); line-height: 1.5; font-weight: 500; }

/* ====================================================
   NEWS
   ==================================================== */
.news { background: var(--white); }
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  margin-top: 8px;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.news-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.news-card.big-card { grid-row: span 2; }
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img-placeholder {
  height: 260px;
  background: linear-gradient(135deg, var(--navy), #2a5298);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
}
.news-img-placeholder.small-ph { height: 160px; }
.news-img-placeholder i { font-size: 3rem; }
.news-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.08em;
}
.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-date {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}
.news-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), var(--dark);
  line-height: 1.3;
}
.news-card:not(.big-card) .news-body h3 { font-size: 1.05rem; }
.news-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; }

/* ===== ADMISSIONS ===== */
.admissions {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.admissions-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.adm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.adm-orb-1 {
  width: 500px; height: 500px;
  background: var(--navy);
  top: -100px; left: -100px;
}

.adm-orb-2 {
  width: 400px; height: 400px;
  background: var(--navy);
  bottom: -100px; right: -50px;
}

.admissions-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  position: relative;
}

.admission-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

.step { display: flex; gap: 1.25rem; align-items: flex-start; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A3A6B;
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 55px;
}

.step strong { display: block; font-size: 0.95rem; font-weight: 700; color: #2a5298; margin-bottom: 0.3rem; }
.step p { font-size: 0.85rem; color: #1A3A6B; line-height: 1.65; margin: 0; }

.admissions-downloads h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: navy;
  margin-bottom: 1.5rem;
}

.download-cards { display: flex; flex-direction: column; gap: 0.85rem; }

.download-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: brown;
  border: 1px solid rgba(226, 136, 17, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.download-card:hover {
  background: orangered;
  border-color: var(--orange);
  transform: translateY(-2px);
}

.dl-icon {
  width: 42px; height: 42px;
  background:rgba(193,141,0,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-400);
  flex-shrink: 0;
}

.dl-info { flex: 1; }
.dl-info strong { display: block; font-size: 0.875rem; color: var(--white); margin-bottom: 0.2rem; }
.dl-info span { font-size: 0.72rem; color: navy; }

.dl-btn {
  width: 32px; height: 32px;
  background: rgba(33,153,79,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--green-400);
  transition: var(--transition-fast);
}

.download-card:hover .dl-btn {
  background: var(--green-500);
  color: var(--white);
}


/* ====================================================
   CONTACT
   ==================================================== */
.contact {
  background: var(--light);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-top: 20px;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,53,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.cd-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.cd-item span {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.55;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--light);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--dark);
  padding: 80px 6vw 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-light .logo-name { color: var(--white); }
.footer-brand > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links h5 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ====================================================
   RESPONSIVE
   ==================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-content { max-width: 100%; }
  .about-layout { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 360px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 70px 5vw; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 30px;
    gap: 8px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; width: 100%; padding: 12px 16px; border-radius: 10px; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; }
  .hero-title { font-size: 2.8rem; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 1.6rem; }
  .about-visual { height: 280px; }
  .side-img { display: none; }
  .about-accent-box { right: 10px; top: -20px; }
  .programmes-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.big-card { grid-row: auto; }
  .campus-banner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .scroll-indicator { display: none; }
  .hero-desc { text-align: left; }
  .hero-badge { display: inline-block; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.3rem; }
  .section-title { font-size: 1.8rem; }
  .stat-divider:nth-child(4),
  .stat:nth-child(5) { display: none; }
  .awards-row { grid-template-columns: 1fr 1fr; }
}
