/* ===========================
   NIC Sialkot — Brand Redesign 2026
   Light theme: White + Navy #11274A
   Fonts: Outfit (headings) + Poppins (body)
   =========================== */

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

:root {
  /* Core brand */
  --navy:         #11274A;
  --navy-dark:    #0D1F3C;
  --navy-mid:     #162D55;
  --navy-card:    #1C3560;
  --navy-light:   #F0F4FA;   /* very light navy tint for alt sections */

  --red:          #BD2430;
  --gold:         #FBAD18;
  --orange:       #F07E22;

  /* Gradients */
  --gradient:          linear-gradient(135deg, #BD2430 0%, #F07E22 100%);
  --gradient-navy:     linear-gradient(135deg, #11274A 0%, #1C3560 100%);
  --gradient-gold:     linear-gradient(135deg, #FBAD18 0%, #F07E22 100%);

  /* Text — on white */
  --text-heading:  #11274A;
  --text-body:     #3A4F6B;
  --text-muted:    #6B80A0;

  /* Text — on navy */
  --text-light:      #F7F2EC;
  --text-light-sec:  #B8CADC;
  --text-light-muted:#7A96B5;

  /* Borders */
  --border-light: rgba(17, 39, 74, 0.1);
  --border-navy:  rgba(255, 255, 255, 0.1);

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(17, 39, 74, 0.1);
  --shadow-lg: 0 12px 48px rgba(17, 39, 74, 0.15);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Loader ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(251,173,24,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient);
  color: #fff;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(189,36,48,0.3);
}
.btn-primary.full-width { width: 100%; text-align: center; display: block; }

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(251,173,24,0.08);
}

.btn-apply {
  padding: 10px 24px;
  background: var(--gradient);
  color: #fff;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.btn-apply:hover { opacity: 0.88; }

/* ---- Red & gold accent text ---- */
.red-text   { color: var(--red); }
.gold-text  { color: var(--gold); }

/* ---- Section Header — on white ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Section tag variant for navy sections */
.on-navy .section-tag { color: var(--gold); }
.on-navy .section-tag::before { background: var(--gradient-gold); }

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 14px auto 16px;
}
.on-navy .section-header h2 { color: #fff; }
.on-navy .section-header h2::after { background: var(--gradient-gold); }
.on-navy .section-header p  { color: var(--text-light-sec); }

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- Gradient text ---- */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   HEADER / NAV — white bg
   =========================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
#navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(17,39,74,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navbar partner logos — right side */
.nav-partner-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  padding-right: 20px;
}

.nav-partner-logo {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-divider {
  width: 1px;
  height: 26px;
  background: var(--border-light);
  flex-shrink: 0;
}

.logo-img-wrap { display: flex; align-items: center; }
.nav-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--navy-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   PROMO BANNER
   =========================== */
.promo-banner {
  margin-top: 68px;
  margin-bottom: 1px;
  width: 100%;
  line-height: 0;
}
.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   HERO — navy background
   =========================== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,31,60,0.88) 0%, rgba(17,39,74,0.75) 40%, rgba(13,31,60,0.92) 100%),
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(189,36,48,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 80%;
  padding: 0 24px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(251,173,24,0.12);
  border: 1px solid rgba(251,173,24,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-light-sec);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light-muted);
  font-size: 0.68rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ===========================
   HERO FORGE TEXT
   =========================== */
.hero-forge {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.92;
  user-select: none;
}

/* ===========================
   STATS BAR — navy
   =========================== */
.stats-bar {
  background: var(--navy);
  padding: 52px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-plus {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item p {
  font-size: 0.78rem;
  color: var(--text-light-muted);
  margin-top: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   WHY NIC SIALKOT — white
   =========================== */
.why-nic {
  padding: 100px 0;
  background: #fff;
}

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

.card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(17,39,74,0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }

.card-icon { font-size: 2rem; margin-bottom: 16px; }
.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-heading);
}
.card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.75; }

/* ===========================
   INCUBATION PROGRAMME — navy
   =========================== */
.impact-section {
  padding: 100px 0;
  background: var(--navy);
}

.impact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.impact-text .section-tag { margin-bottom: 16px; }
.impact-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.impact-text p { color: var(--text-light-sec); line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }

.impact-list { margin: 28px 0 36px; }
.impact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--text-light-sec);
  border-bottom: 1px solid var(--border-navy);
}
.impact-list li:last-child { border-bottom: none; }
.check { color: var(--gold); font-weight: 700; font-size: 1rem; }

.impact-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visual-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.visual-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(251,173,24,0.3);
  transform: translateY(-4px);
}

.vc-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}
.visual-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.visual-card p { font-size: 0.82rem; color: var(--text-light-sec); line-height: 1.6; }

/* ===========================
   WHAT WE OFFER — navy
   =========================== */
.offerings-section {
  padding: 100px 0;
  background: var(--navy);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offering-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.offering-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(251,173,24,0.25);
  transform: translateY(-4px);
}

.offering-card:hover::before { opacity: 1; }

.offering-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.offering-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.offering-card p {
  font-size: 0.85rem;
  color: var(--text-light-sec);
  line-height: 1.7;
}

/* ===========================
   INDUSTRY VERTICALS — white
   =========================== */
.verticals-section {
  padding: 100px 0;
  background: #fff;
}

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

.vertical-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vertical-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}
.vertical-card:hover {
  border-color: rgba(17,39,74,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.vertical-card:hover::before { opacity: 1; }

.vertical-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.vertical-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-heading);
}
.vertical-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}
.vertical-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--navy-light);
  border: 1px solid rgba(17,39,74,0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.4px;
}

/* ===========================
   PARTNERS — light navy tint
   =========================== */
.partners-section {
  padding: 100px 0;
  background: var(--navy-light);
}

.partners-tiers {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.partner-tier {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.partner-tier:last-child { border-bottom: none; }

.tier-label {
  flex-shrink: 0;
  width: 180px;
  font-size: 0.72rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.tier-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid rgba(17,39,74,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 120px;
  height: 80px;
  transition: var(--transition);
}
.partner-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(17,39,74,0.25);
}
.partner-logo-card img {
  max-width: 120px; max-height: 48px;
  width: auto; height: auto;
  object-fit: contain; display: block;
}
.partner-featured-card {
  min-width: 160px; height: 96px;
  padding: 16px 28px;
  border-color: rgba(17,39,74,0.2);
}
.partner-featured-card img { max-width: 140px; max-height: 64px; }

/* ===========================
   TESTIMONIALS — navy
   =========================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--navy);
}

.testimonials-carousel { position: relative; min-height: 240px; }

.testimonial {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
  pointer-events: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial.active { opacity: 1; transform: translateX(0); pointer-events: all; }

.quote {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: var(--text-light-sec);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 32px;
  padding: 0 24px;
}
.quote::before { content: '"'; color: var(--gold); font-size: 2.2rem; font-style: normal; line-height: 0; vertical-align: -0.4rem; margin-right: 4px; }
.quote::after  { content: '"'; color: var(--gold); font-size: 2.2rem; font-style: normal; line-height: 0; vertical-align: -0.4rem; margin-left: 4px; }

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.author-avatar {
  width: 50px; height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: #fff; }
.testimonial-author span  { font-size: 0.82rem; color: var(--text-light-muted); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-light-muted);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ===========================
   HAPPENINGS — white
   =========================== */
.happenings-section {
  padding: 100px 0;
  background: #fff;
}

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

.event-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(17,39,74,0.2);
}

.event-img {
  height: 180px;
  display: flex;
  align-items: flex-start;
  padding: 20px;
}
.event-category {
  padding: 6px 14px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.event-body { padding: 28px; }
.event-date {
  font-size: 0.75rem;
  color: var(--red);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.event-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.event-body p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }
.event-link {
  font-size: 0.88rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.event-link:hover { color: var(--red); }

/* ===========================
   FACILITY — light navy tint
   =========================== */
.facility-section {
  padding: 100px 0;
  background: var(--navy-light);
}

.facility-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.facility-text .section-tag { margin-bottom: 16px; }
.facility-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.facility-text > p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.facility-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 9px 0;
  border-bottom: 1px solid var(--border-light);
}
.ff-item:last-child { border-bottom: none; }

.facility-visual { display: flex; flex-direction: column; gap: 16px; }
.facility-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 340px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow);
}

.facility-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.zone-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
  text-align: center;
}
.zone-card:hover {
  border-color: rgba(17,39,74,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.zone-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.zone-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.zone-card p { font-size: 0.8rem; color: var(--text-body); line-height: 1.6; }

/* ===========================
   APPLY — navy
   =========================== */
.apply-section {
  padding: 100px 0;
  background: var(--navy);
}

.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.apply-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.apply-text p { color: var(--text-light-sec); line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }
.apply-note {
  font-size: 0.88rem !important;
  color: var(--text-light-sec) !important;
  padding: 16px 20px;
  background: rgba(251,173,24,0.08);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.apply-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.apply-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #F9FAFB;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-heading);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group textarea { resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: #fff;
}
.form-group select option { background: #fff; color: var(--text-heading); }

/* ===========================
   NEWSLETTER — white
   =========================== */
.newsletter-section {
  padding: 64px 0;
  background: #fff;
  border-top: 1.5px solid var(--border-light);
  border-bottom: 1.5px solid var(--border-light);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-inner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.newsletter-inner p { color: var(--text-muted); font-size: 0.92rem; }

.newsletter-form {
  display: flex;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
}
.newsletter-form input {
  padding: 14px 20px;
  background: #F9FAFB;
  border: none;
  color: var(--text-heading);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  width: 300px;
  outline: none;
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--gradient);
  color: #fff;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { opacity: 0.88; }

/* ===========================
   FOOTER — navy
   =========================== */
.footer {
  padding: 80px 0 0;
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-navy);
}

.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.footer-logo-wrap:hover { opacity: 0.9; }
.footer-logo { height: 48px; width: auto; display: block; }

.footer-brand p { font-size: 0.85rem; color: var(--text-light-muted); line-height: 1.7; max-width: 300px; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  color: var(--text-light-muted);
  transition: var(--transition);
}
.social-links a:hover { background: var(--red); border-color: var(--red); color: #fff; }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.86rem;
  color: var(--text-light-muted);
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-light-muted); }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: #fff; }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .cards-grid      { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid  { grid-template-columns: repeat(2, 1fr); }
  .verticals-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .impact-inner    { grid-template-columns: 1fr; gap: 48px; }
  .apply-inner     { grid-template-columns: 1fr; gap: 48px; }
  .facility-inner  { grid-template-columns: 1fr; gap: 48px; }
  .tier-label      { width: 140px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(17,39,74,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; color: var(--text-heading); }

  .hamburger { display: flex; }
  .nav-partner-logos { display: none; }

  .cards-grid      { grid-template-columns: 1fr; }
  .offerings-grid  { grid-template-columns: 1fr; }
  .events-grid     { grid-template-columns: 1fr; }
  .verticals-grid  { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form  { width: 100%; }
  .newsletter-form input { width: 100%; }
  .impact-visual   { grid-template-columns: 1fr; }
  .carousel-dots   { margin-top: 320px; }
  .partner-tier    { flex-direction: column; align-items: flex-start; gap: 12px; }
  .tier-label      { width: auto; }
  .facility-zones  { grid-template-columns: 1fr; }
  .hero-forge      { letter-spacing: -2px; }
}

@media (max-width: 480px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .hero-btns    { flex-direction: column; align-items: center; }
  .apply-form   { padding: 28px 20px; }
  .carousel-dots { margin-top: 360px; }
}
