/*
Theme Name:  ACPS Incubation Foundation
Theme URI:   https://acpsincubation.in
Author:      RNG Group of Institutions
Description: Custom theme for ACPS Incubation Foundation — Elementor compatible, Bootstrap 5 based.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: acps-incubation
Tags:        custom-background, custom-logo, full-width-template, education
*/

/* ─── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --brand:       #0D3B8E;
  --brand-dark:  #0A2D6E;
  --brand-mid:   #1565C0;
  --brand-light: #1A5CB5;
  --accent:      #89C4F4;
  --light-bg:    #EEF3FC;
  --border-clr:  #D5E3F7;
}

/* ─── GLOBAL ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a2e;
  overflow-x: hidden;
  margin: 0;
}
a { text-decoration: none; }
h1, h2, h3, .playfair { font-family: 'Playfair Display', serif; }

/* ─── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border-clr);
  padding: 0;
  min-height: 56px;
}
.navbar-brand .brand-logo {
  width: 38px;
  height: 38px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.navbar-brand .brand-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.3;
  max-width: 160px;
}
.navbar-brand .brand-sub {
  font-weight: 300;
  color: #666;
  font-size: 11px;
}
.nav-link {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #333 !important;
  padding: 5px 7px !important;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
  background: var(--light-bg) !important;
  color: var(--brand) !important;
}
.nav-link.active {
  color: var(--brand) !important;
  background: var(--light-bg) !important;
}
.btn-nav-outline {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 6px;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: transparent;
  transition: all .2s;
  display: inline-block;
  line-height: 1.5;
}
.btn-nav-outline:hover {
  background: var(--brand);
  color: #fff;
}
.btn-nav-solid {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff !important;
  border: none;
  transition: all .2s;
  display: inline-block;
  line-height: 1.5;
}
.btn-nav-solid:hover {
  background: var(--brand-dark);
  color: #fff !important;
}
.navbar-toggler {
  border: 1.5px solid var(--border-clr);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230D3B8E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── TICKER ──────────────────────────────────────────────── */
.ticker-bar {
  background: var(--brand-mid);
  color: #fff;
  font-size: 12px;
  padding: 7px 0;
  overflow: hidden;
}
.ticker-label {
  background: #fff;
  color: var(--brand-mid);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-wrap {
  overflow: hidden;
  flex: 1;
}
.ticker-text {
  white-space: nowrap;
  animation: acps-scroll 28s linear infinite;
  display: inline-block;
}
@keyframes acps-scroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer-main {
  background: #071B4A;
  padding: 32px 0;
}
.footer-brand-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.footer-brand-sub {
  font-size: 13px;
  color: #89B4E8;
  font-weight: 300;
}
.footer-link {
  font-size: 12px;
  color: #89B4E8;
  font-weight: 300;
  transition: color .2s;
  text-decoration: none;
}
.footer-link:hover {
  color: #fff;
}
.footer-copy {
  font-size: 11.5px;
  color: #4A6FA0;
}
.footer-social a {
  color: #89B4E8;
  font-size: 16px;
  transition: color .2s;
}
.footer-social a:hover {
  color: #fff;
}

/* ─── ELEMENTOR CANVAS COMPATIBILITY ─────────────────────── */
/* When Elementor Full Width is selected, remove body paddings */
.elementor-page .site-content {
  padding: 0;
  margin: 0;
}
#main-content {
  min-height: 1px;
}

/* ─── SECTIONS ───────────────────────────────────────────── */
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--brand-mid); text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3vw, 28px); color: var(--brand-dark); font-weight: 700; }
.section-sub   { font-size: 14px; color: #666; font-weight: 300; max-width: 500px; margin: 8px auto 0; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero-section { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: center; }
.hero-bg-img  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,45,110,0.93) 0%, rgba(13,59,142,0.88) 45%, rgba(26,92,181,0.65) 100%);
  z-index: 1;
}
.hero-content-wrap { position: relative; z-index: 2; padding: 64px 0 56px; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 4px 14px; font-size: 12px; color: #B8D4F8; margin-bottom: 20px; font-weight: 500; }
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: #5AC8FA; display: inline-block; flex-shrink: 0; }
.hero-section h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.hero-section h1 em { color: #89C4F4; font-style: normal; }
.hero-lead { font-size: 14.5px; color: #B8D4F8; line-height: 1.7; margin-bottom: 28px; font-weight: 300; max-width: 480px; }
.hero-stats-row { display: flex; flex-wrap: wrap; gap: 24px 36px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.stat-num { font-size: 26px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; line-height: 1; }
.stat-lbl { font-size: 11.5px; color: #89B4E8; font-weight: 400; margin-top: 3px; }
.btn-hero-primary { background: #fff; color: var(--brand); font-weight: 600; font-size: 13.5px; padding: 11px 26px; border-radius: 7px; border: none; transition: all .2s; display: inline-block; }
.btn-hero-primary:hover { background: var(--light-bg); transform: translateY(-1px); color: var(--brand); }
.btn-hero-outline { background: transparent; color: #fff; font-weight: 500; font-size: 13.5px; padding: 10px 24px; border-radius: 7px; border: 1.5px solid rgba(255,255,255,0.4); transition: all .2s; display: inline-block; }
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff; }

/* ─── ABOUT BAND ──────────────────────────────────────────── */
.about-band { background: var(--light-bg); border-bottom: 1px solid var(--border-clr); padding: 36px 0; }
.about-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--brand-mid); text-transform: uppercase; margin-bottom: 8px; }
.about-band h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--brand-dark); font-weight: 700; line-height: 1.3; }
.about-band p  { font-size: 13.5px; color: #444; line-height: 1.7; font-weight: 300; margin: 0; }

/* ─── OFFERING CARDS ──────────────────────────────────────── */
.offering-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 10px; padding: 22px 16px; text-align: center; transition: all .25s; height: 100%; }
.offering-card:hover { border-color: var(--brand-mid); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,59,142,0.1); }
.offering-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--light-bg); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.offering-icon svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.8; }
.offering-card h3 { font-size: 13px; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; }
.offering-card p  { font-size: 11.5px; color: #666; line-height: 1.5; font-weight: 300; margin: 0; }

/* ─── PROGRAM CARDS ───────────────────────────────────────── */
.programs-bg { background: #F4F8FF; padding: 52px 0; }
.prog-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-clr); transition: all .25s; height: 100%; }
.prog-card:hover { box-shadow: 0 8px 28px rgba(13,59,142,0.12); transform: translateY(-2px); }
.prog-card-top { background: var(--brand); padding: 22px 20px 18px; position: relative; }
.prog-card-top.v2 { background: var(--brand-dark); }
.prog-card-top.v3 { background: var(--brand-light); }
.prog-card-top.v4 { background: #124A9A; }
.prog-num { font-size: 32px; font-weight: 700; color: rgba(255,255,255,0.12); position: absolute; top: 10px; right: 16px; font-family: 'Playfair Display', serif; }
.prog-badge { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 8px; }
.prog-card-top h3 { font-size: 16px; font-weight: 600; color: #fff; font-family: 'Playfair Display', serif; margin: 0; }
.prog-card-body { padding: 18px 20px; }
.prog-card-body p { font-size: 12.5px; color: #555; line-height: 1.6; font-weight: 300; margin-bottom: 12px; }
.prog-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.prog-tag  { font-size: 10.5px; background: var(--light-bg); color: var(--brand-mid); padding: 3px 10px; border-radius: 12px; font-weight: 500; }
.prog-link { font-size: 12px; color: var(--brand); font-weight: 600; display: flex; align-items: center; gap: 4px; margin-top: 14px; }
.prog-link svg { width: 12px; height: 12px; stroke: var(--brand); fill: none; stroke-width: 2.5; }

/* ─── WHY CARDS ───────────────────────────────────────────── */
.why-card { display: flex; gap: 16px; padding: 22px; border-radius: 10px; border: 1px solid #e8eff8; background: #fff; transition: all .2s; height: 100%; }
.why-card:hover { border-color: var(--brand-mid); box-shadow: 0 4px 16px rgba(13,59,142,0.08); }
.why-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: var(--brand); color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; }
.why-text h4 { font-size: 14px; font-weight: 600; color: var(--brand-dark); margin-bottom: 5px; }
.why-text p  { font-size: 12px; color: #666; line-height: 1.6; font-weight: 300; margin: 0; }

/* ─── IMPACT ──────────────────────────────────────────────── */
.impact-section { background: var(--brand-dark); padding: 48px 0; }
.impact-item { text-align: center; padding: 24px 16px; border-right: 1px solid rgba(255,255,255,0.08); }
.impact-item:last-child { border-right: none; }
.impact-num { font-size: 36px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; line-height: 1; }
.impact-sub { font-size: 11.5px; color: #89B4E8; margin-top: 4px; font-weight: 300; }

/* ─── PARTNERS ────────────────────────────────────────────── */
.partners-bg { background: #F9FBFF; }
.partner-pill { padding: 10px 22px; border: 1px solid var(--border-clr); border-radius: 24px; font-size: 12.5px; font-weight: 500; color: var(--brand-dark); background: #fff; transition: all .2s; display: inline-block; margin: 5px; }
.partner-pill:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ─── CTA ─────────────────────────────────────────────────── */
.cta-section { background: linear-gradient(115deg, var(--brand-dark), var(--brand-mid)); padding: 52px 0; text-align: center; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3vw, 30px); color: #fff; font-weight: 700; margin-bottom: 10px; }
.cta-section p  { font-size: 14px; color: #B8D4F8; font-weight: 300; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─── MOBILE NAV ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .nav-link { padding: 8px 12px !important; }
  .navbar-collapse {
    padding: 12px 0;
    border-top: 1px solid var(--border-clr);
    margin-top: 8px;
  }
  .nav-btns-group {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .impact-item { border-right: none; }
}
@media (max-width: 767px) {
  .hero-content-wrap { padding: 48px 0 40px; }
  .hero-section { min-height: auto; }
  .hero-stats-row { gap: 20px 28px; }
}
@media (max-width: 576px) {
  .impact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .impact-item:last-child { border-bottom: none; }
}

/* ─── DROPDOWN MENU ───────────────────────────────────────── */
.dropdown-menu {
  border: 1px solid var(--border-clr);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(13,59,142,0.1);
  min-width: 180px;
}
.dropdown-item {
  font-size: 12.5px;
  font-weight: 500;
  color: #333;
  border-radius: 5px;
  padding: 7px 12px;
  transition: all .15s;
}
.dropdown-item:hover, .dropdown-item:focus { background: var(--light-bg); color: var(--brand); }
.dropdown-item.active { background: var(--light-bg); color: var(--brand); }

/* ─── INNER PAGE HERO ─────────────────────────────────────── */
.inner-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,45,110,0.93) 0%, rgba(13,59,142,0.88) 50%, rgba(26,92,181,0.68) 100%);
}
.inner-hero-content { position: relative; z-index: 2; padding: 56px 0 48px; }
.inner-hero h1 { font-size: clamp(24px, 3.5vw, 36px); color: #fff; font-weight: 700; margin-bottom: 10px; }
.inner-lead { font-size: 14px; color: #B8D4F8; font-weight: 300; max-width: 560px; line-height: 1.7; }
.breadcrumb-bar { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.breadcrumb-bar a { color: rgba(255,255,255,0.55); transition: color .2s; }
.breadcrumb-bar a:hover { color: #fff; }
.breadcrumb-bar .sep { font-size: 10px; }

/* ─── INNER PAGE COMPONENTS ───────────────────────────────── */

/* Info card */
.info-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 12px; padding: 28px 24px; height: 100%; transition: all .25s; }
.info-card:hover { border-color: var(--brand-mid); box-shadow: 0 6px 24px rgba(13,59,142,0.09); transform: translateY(-2px); }
.info-card-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card-icon svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.8; }
.info-card h3 { font-size: 15px; font-weight: 600; color: var(--brand-dark); margin-bottom: 8px; }
.info-card p  { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 13.5px; color: #444; font-weight: 300; border-bottom: 1px solid var(--border-clr); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-mid); flex-shrink: 0; margin-top: 6px; }

/* Benefit badge */
.benefit-badge { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #fff; border: 1px solid var(--border-clr); border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--brand-dark); margin-bottom: 8px; transition: all .2s; }
.benefit-badge:hover { border-color: var(--brand-mid); background: var(--light-bg); }
.benefit-badge .bi { color: var(--brand-mid); font-size: 16px; flex-shrink: 0; }

/* Process steps */
.process-step { display: flex; gap: 20px; padding: 22px 24px; background: #fff; border: 1px solid var(--border-clr); border-radius: 12px; margin-bottom: 12px; transition: all .2s; }
.process-step:hover { border-color: var(--brand-mid); box-shadow: 0 4px 16px rgba(13,59,142,0.08); }
.step-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: var(--brand); color: #fff; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; }
.step-content h4 { font-size: 14px; font-weight: 600; color: var(--brand-dark); margin-bottom: 4px; }
.step-content p  { font-size: 12.5px; color: #666; line-height: 1.6; font-weight: 300; margin: 0; }

/* Mentor / Team cards */
.mentor-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 12px; padding: 24px 20px; text-align: center; height: 100%; transition: all .25s; }
.mentor-card:hover { border-color: var(--brand-mid); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,59,142,0.1); }
.mentor-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--light-bg); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--brand); border: 2px solid var(--border-clr); }
.mentor-card h4 { font-size: 14px; font-weight: 600; color: var(--brand-dark); margin-bottom: 4px; }
.mentor-card .mentor-role { font-size: 11.5px; color: var(--brand-mid); font-weight: 500; margin-bottom: 8px; }
.mentor-card p { font-size: 12px; color: #666; line-height: 1.55; font-weight: 300; margin: 0; }

/* Resource cards */
.resource-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 10px; padding: 18px; display: flex; align-items: center; gap: 14px; transition: all .2s; }
.resource-card:hover { border-color: var(--brand-mid); box-shadow: 0 4px 16px rgba(13,59,142,0.08); }
.resource-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; }
.resource-icon svg { width: 20px; height: 20px; stroke: var(--brand); fill: none; stroke-width: 1.8; }
.resource-info h4 { font-size: 13px; font-weight: 600; color: var(--brand-dark); margin-bottom: 2px; }
.resource-info p  { font-size: 11.5px; color: #888; font-weight: 300; margin: 0; }
.btn-download { font-size: 11.5px; font-weight: 600; padding: 5px 14px; border-radius: 6px; border: 1.5px solid var(--brand); color: var(--brand); background: transparent; transition: all .2s; display: inline-block; white-space: nowrap; }
.btn-download:hover { background: var(--brand); color: #fff; }

/* Event cards */
.event-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 12px; overflow: hidden; height: 100%; transition: all .25s; }
.event-card:hover { box-shadow: 0 8px 28px rgba(13,59,142,0.12); transform: translateY(-2px); }
.event-card-top { background: var(--brand); padding: 16px 20px; display: flex; align-items: center; gap: 14px; }
.event-card-top.v2 { background: var(--brand-dark); }
.event-card-top.v3 { background: var(--brand-light); }
.event-card-top.v4 { background: #124A9A; }
.event-date-box { background: rgba(255,255,255,0.15); border-radius: 8px; padding: 6px 12px; text-align: center; min-width: 52px; }
.event-date-box .eday { font-size: 20px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; line-height: 1; }
.event-date-box .emon { font-size: 10px; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.event-type-badge { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.65); text-transform: uppercase; }
.event-type-badge strong { color: #fff; font-size: 13px; display: block; letter-spacing: 0; text-transform: none; font-family: 'Playfair Display', serif; margin-top: 2px; }
.event-card-body { padding: 18px 20px; }
.event-card-body h4 { font-size: 14px; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; }
.event-card-body p  { font-size: 12.5px; color: #666; line-height: 1.6; font-weight: 300; margin: 0; }
.event-meta { display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.event-meta span { font-size: 11.5px; color: #888; display: flex; align-items: center; gap: 4px; }

/* Contact */
.contact-info-card { background: var(--brand-dark); border-radius: 14px; padding: 32px 28px; height: 100%; }
.contact-info-card h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 24px; font-family: 'Playfair Display', serif; }
.contact-info-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); align-items: flex-start; }
.contact-info-item:last-child { border-bottom: none; }
.cii-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.cii-icon svg { width: 16px; height: 16px; stroke: #89C4F4; fill: none; stroke-width: 1.8; }
.cii-label { font-size: 10.5px; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.cii-val { font-size: 13.5px; color: #fff; font-weight: 400; }

/* Contact form */
.contact-form-wrap { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 32px 28px; }
.contact-form-wrap h3 { font-size: 18px; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.contact-form-wrap .form-sub { font-size: 13px; color: #888; font-weight: 300; margin-bottom: 24px; }
.form-acps label { font-size: 12px; font-weight: 600; color: var(--brand-dark); margin-bottom: 5px; display: block; }
.form-acps .form-control { border: 1.5px solid var(--border-clr); border-radius: 7px; font-size: 13.5px; color: #333; padding: 10px 14px; transition: border-color .2s; width: 100%; }
.form-acps .form-control:focus { border-color: var(--brand-mid); box-shadow: none; outline: none; }
.form-acps .form-group { margin-bottom: 18px; }
.btn-submit { background: var(--brand); color: #fff; font-size: 13.5px; font-weight: 600; padding: 11px 28px; border-radius: 7px; border: none; cursor: pointer; transition: all .2s; }
.btn-submit:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* Stat band (inner pages) */
.stat-band { background: var(--light-bg); border-top: 1px solid var(--border-clr); border-bottom: 1px solid var(--border-clr); padding: 32px 0; }
.stat-band-item { text-align: center; padding: 8px 16px; }
.stat-band-num { font-size: 28px; font-weight: 700; color: var(--brand-dark); font-family: 'Playfair Display', serif; line-height: 1; }
.stat-band-lbl { font-size: 12px; color: #666; font-weight: 300; margin-top: 3px; }

/* Page image */
.page-img-cover { width: 100%; border-radius: 14px; object-fit: cover; height: 320px; display: block; }

/* Scheme / funding cards */
.scheme-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 12px; padding: 22px 20px; height: 100%; transition: all .25s; border-left: 4px solid var(--brand-mid); }
.scheme-card:hover { box-shadow: 0 6px 20px rgba(13,59,142,0.1); transform: translateY(-2px); }
.scheme-card h4 { font-size: 14px; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; }
.scheme-card p { font-size: 12.5px; color: #666; line-height: 1.6; font-weight: 300; margin: 0; }
.scheme-badge { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand-mid); margin-bottom: 8px; }

/* Partnership tier */
.partner-tier { background: #fff; border: 1px solid var(--border-clr); border-radius: 12px; padding: 24px 20px; height: 100%; transition: all .25s; text-align: center; }
.partner-tier:hover { border-color: var(--brand-mid); box-shadow: 0 6px 20px rgba(13,59,142,0.09); transform: translateY(-2px); }
.partner-tier-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.partner-tier-icon svg { width: 26px; height: 26px; stroke: var(--brand); fill: none; stroke-width: 1.6; }
.partner-tier h3 { font-size: 15px; font-weight: 600; color: var(--brand-dark); margin-bottom: 8px; }
.partner-tier p  { font-size: 12.5px; color: #666; line-height: 1.6; font-weight: 300; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* Section spacing */
.py-section { padding: 72px 0; }
.bg-light-section { background: #F4F8FF; }

/* Shared body text */
.body-text { font-size: 14px; color: #555; line-height: 1.85; font-weight: 300; margin: 0; }

/* ── Hero tags ── */
.about-hero { min-height: 340px; }
.hero-tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero-tag { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 5px 14px; display: flex; align-items: center; gap: 6px; }
.hero-tag .bi { font-size: 11px; color: #89C4F4; }

/* ── Intro highlights ── */
.about-highlights { display: flex; flex-direction: column; gap: 8px; }
.abt-hl { font-size: 13px; color: #444; font-weight: 400; display: flex; align-items: center; gap: 9px; }
.abt-hl .bi { color: var(--brand-mid); font-size: 15px; flex-shrink: 0; }

/* ── Intro image with floating card ── */
.about-img-wrap { position: relative; }
.about-main-img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; display: block; box-shadow: 0 20px 60px rgba(13,59,142,0.13); }
.about-float-card { position: absolute; bottom: -20px; left: -20px; background: #fff; border-radius: 14px; padding: 18px 22px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 20px; border: 1px solid var(--border-clr); }
.afc-item { text-align: center; }
.afc-num { font-size: 26px; font-weight: 700; color: var(--brand); font-family: 'Playfair Display', serif; line-height: 1; }
.afc-num span { font-size: 18px; }
.afc-lbl { font-size: 10.5px; color: #888; font-weight: 400; margin-top: 3px; white-space: nowrap; }
.afc-divider { width: 1px; height: 36px; background: var(--border-clr); }

/* ── Stats band ── */
.about-stat-band { background: var(--brand); padding: 36px 0; }
.asb-item { text-align: center; padding: 8px 16px; border-right: 1px solid rgba(255,255,255,0.15); }
.asb-num { font-size: 32px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; line-height: 1; }
.asb-lbl { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 300; margin-top: 5px; letter-spacing: 0.5px; }

/* ── Vision & Mission cards ── */
.vm-card { border-radius: 16px; padding: 38px 34px; }
.vm-icon { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 26px; }

.vm-vision { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 100%); }
.vm-vision .vm-icon { background: rgba(255,255,255,0.12); color: #89C4F4; }
.vm-vision h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; font-weight: 700; margin-bottom: 14px; }
.vm-vision p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.8; font-weight: 300; margin: 0; }
.vm-quote { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 13px; color: rgba(255,255,255,0.6); font-style: italic; font-weight: 300; }

.vm-mission { background: #fff; border: 1px solid var(--border-clr); }
.vm-mission .vm-icon { background: var(--light-bg); color: var(--brand); }
.vm-mission h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--brand-dark); font-weight: 700; margin-bottom: 18px; }
.vm-list { list-style: none; padding: 0; margin: 0; }
.vm-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; font-size: 13.5px; color: #444; font-weight: 300; border-bottom: 1px solid var(--border-clr); line-height: 1.55; }
.vm-list li:last-child { border-bottom: none; }
.vm-list li .bi { color: var(--brand-mid); font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* ── Core value cards ── */
.value-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 30px 24px; text-align: center; transition: all .25s; }
.value-card:hover { border-color: var(--brand-mid); box-shadow: 0 8px 28px rgba(13,59,142,0.1); transform: translateY(-3px); }
.value-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 26px; color: var(--brand); transition: all .25s; }
.value-card:hover .value-icon { background: var(--brand); color: #fff; }
.value-card h3 { font-size: 15px; font-weight: 600; color: var(--brand-dark); margin-bottom: 10px; }
.value-card p { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; }

/* ── Milestones ── */
.milestones-grid { display: flex; flex-direction: column; gap: 0; position: relative; }
.milestones-grid::before { content: ''; position: absolute; left: 28px; top: 28px; bottom: 28px; width: 2px; background: var(--border-clr); }
.milestone-item { display: flex; align-items: flex-start; gap: 24px; padding-bottom: 32px; position: relative; }
.milestone-item:last-child { padding-bottom: 0; }
.ms-dot { flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; letter-spacing: 0; z-index: 1; box-shadow: 0 0 0 5px var(--light-bg), 0 0 0 6px var(--border-clr); font-family: 'Playfair Display', serif; line-height: 1.1; text-align: center; }
.ms-card { flex: 1; background: #fff; border: 1px solid var(--border-clr); border-radius: 12px; padding: 20px 24px; transition: all .25s; }
.ms-card:hover { border-color: var(--brand-mid); box-shadow: 0 6px 20px rgba(13,59,142,0.08); }
.ms-year-lbl { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--brand-mid); text-transform: uppercase; margin-bottom: 6px; }
.ms-card h4 { font-size: 15px; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; }
.ms-card p { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; }

/* ── Institution badges ── */
.rng-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.rng-badge { display: flex; align-items: center; gap: 8px; padding: 9px 16px; background: #fff; border: 1px solid var(--border-clr); border-radius: 8px; font-size: 12.5px; font-weight: 500; color: var(--brand-dark); transition: all .2s; }
.rng-badge:hover { border-color: var(--brand-mid); background: var(--light-bg); }
.rng-badge .bi { color: var(--brand-mid); font-size: 14px; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .py-section { padding: 48px 0; }
  .about-float-card { left: 12px; bottom: 12px; padding: 12px 16px; gap: 14px; }
  .afc-num { font-size: 20px; }
  .about-main-img { height: 260px; }
  .milestones-grid::before { left: 24px; }
  .ms-dot { width: 50px; height: 50px; font-size: 9px; }
  .vm-card { padding: 28px 22px; }
}

/* ═══════════════════════════════════════════════════════════
   PROGRAMS PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* ── Program journey bar ── */
.prog-journey { display: flex; align-items: center; justify-content: center; gap: 0; background: var(--light-bg); border: 1px solid var(--border-clr); border-radius: 14px; padding: 22px 28px; flex-wrap: wrap; gap: 8px; }
.pj-step { display: flex; align-items: center; gap: 12px; }
.pj-icon { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--border-clr); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--brand); }
.pj-label { font-size: 13px; font-weight: 600; color: var(--brand-dark); }
.pj-arrow { font-size: 13px; color: var(--border-clr); margin: 0 10px; }

/* ── Program card ── */
.prog-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 16px; overflow: hidden; transition: box-shadow .25s; }
.prog-card:hover { box-shadow: 0 12px 40px rgba(13,59,142,0.1); }

.prog-card-head { padding: 22px 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.pc-blue  .prog-card-head { background: linear-gradient(105deg, var(--brand) 0%, var(--brand-mid) 100%); }
.pc-navy  .prog-card-head { background: linear-gradient(105deg, var(--brand-dark) 0%, var(--brand) 100%); }
.pc-mid   .prog-card-head { background: linear-gradient(105deg, #1565C0 0%, #1976D2 100%); }
.pc-dark  .prog-card-head { background: linear-gradient(105deg, #0A2050 0%, var(--brand-dark) 100%); }

.prog-stage-badge { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 4px 12px; white-space: nowrap; align-self: flex-start; margin-top: 2px; }
.prog-head-main { display: flex; align-items: center; gap: 14px; flex: 1; }
.prog-head-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; flex-shrink: 0; }
.prog-card-head h3 { font-size: 18px; font-weight: 600; color: #fff; margin: 0; font-family: 'Playfair Display', serif; }

.prog-head-meta { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.prog-meta-item { text-align: right; }
.pm-label { font-size: 10px; color: rgba(255,255,255,0.6); font-weight: 500; letter-spacing: 0.5px; display: flex; align-items: center; gap: 4px; justify-content: flex-end; }
.pm-label .bi { font-size: 10px; }
.pm-val { font-size: 14px; font-weight: 700; color: #fff; margin-top: 2px; }
.prog-meta-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

.prog-card-body { padding: 28px 28px; }

/* ── Program points ── */
.prog-points-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.prog-point { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; background: var(--light-bg); border-radius: 8px; font-size: 13px; color: #444; font-weight: 400; line-height: 1.5; }
.pp-dot { flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; background: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 12px; color: #fff; margin-top: 1px; }

/* ── Program apply button ── */
.prog-apply-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--brand); border: 1.5px solid var(--brand); border-radius: 8px; padding: 9px 20px; transition: all .2s; text-decoration: none; }
.prog-apply-btn:hover { background: var(--brand); color: #fff; }
.prog-apply-btn .bi { font-size: 13px; transition: transform .2s; }
.prog-apply-btn:hover .bi { transform: translateX(3px); }

/* ── Apply steps ── */
.apply-step { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 28px 22px; text-align: center; transition: all .25s; position: relative; overflow: hidden; }
.apply-step:hover { border-color: var(--brand-mid); box-shadow: 0 8px 24px rgba(13,59,142,0.09); transform: translateY(-3px); }
.as-num { position: absolute; top: 16px; right: 18px; font-size: 32px; font-weight: 700; color: var(--light-bg); font-family: 'Playfair Display', serif; line-height: 1; }
.as-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; color: var(--brand); transition: all .25s; }
.apply-step:hover .as-icon { background: var(--brand); color: #fff; }
.apply-step h4 { font-size: 15px; font-weight: 600; color: var(--brand-dark); margin-bottom: 8px; }
.apply-step p { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .prog-journey { padding: 16px; }
  .pj-arrow { display: none; }
  .prog-card-head { gap: 12px; }
  .prog-head-meta { display: none; }
  .prog-points-grid { grid-template-columns: 1fr; }
  .prog-card-head h3 { font-size: 16px; }
  .prog-card-body { padding: 20px 18px; }
}

/* ═══════════════════════════════════════════════════════════
   STARTUPS PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* ── Apply band ── */
.apply-band { background: linear-gradient(115deg, var(--brand-dark) 0%, var(--brand-mid) 100%); padding: 52px 0; }
.ab-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #89C4F4; background: rgba(137,196,244,0.12); border: 1px solid rgba(137,196,244,0.25); border-radius: 20px; padding: 5px 14px; margin-bottom: 14px; }
.apply-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px,3vw,30px); color: #fff; font-weight: 700; margin-bottom: 10px; }
.apply-band p { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 300; line-height: 1.75; margin-bottom: 18px; }
.ab-checklist { display: flex; flex-wrap: wrap; gap: 16px; }
.ab-checklist span { font-size: 12.5px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 7px; }
.ab-checklist .bi { color: #89C4F4; font-size: 14px; }

.ab-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 28px 24px; display: inline-flex; flex-direction: column; align-items: flex-end; gap: 10px; width: 100%; }
.ab-card-label { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.ab-card-deadline { font-size: 13.5px; color: rgba(255,255,255,0.85); font-weight: 400; }
.ab-card-deadline strong { color: #fff; }
.ab-apply-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--brand-dark); font-size: 14px; font-weight: 700; padding: 12px 26px; border-radius: 8px; text-decoration: none; transition: all .2s; width: 100%; justify-content: center; }
.ab-apply-btn:hover { background: var(--light-bg); color: var(--brand-dark); }
.ab-apply-btn .bi { transition: transform .2s; }
.ab-apply-btn:hover .bi { transform: translateX(3px); }
.ab-view-link { font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; text-decoration: underline; width: 100%; display: block; transition: color .2s; }
.ab-view-link:hover { color: #fff; }

/* ── Benefit cards ── */
.benefit-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 26px 22px; display: flex; align-items: flex-start; gap: 18px; transition: all .25s; }
.benefit-card:hover { border-color: var(--brand-mid); box-shadow: 0 8px 28px rgba(13,59,142,0.09); transform: translateY(-2px); }
.bc-icon { flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--brand); transition: all .25s; }
.benefit-card:hover .bc-icon { background: var(--brand); color: #fff; }
.bc-body h3 { font-size: 14.5px; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; }
.bc-body p { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; }

/* ── Startup portfolio cards ── */
.startup-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 22px 22px; transition: all .25s; display: flex; flex-direction: column; gap: 12px; }
.startup-card:hover { border-color: var(--brand-mid); box-shadow: 0 8px 28px rgba(13,59,142,0.1); transform: translateY(-3px); }
.startup-card-top { display: flex; align-items: center; gap: 14px; }
.startup-avatar { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; }
.sc-blue   { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%); }
.sc-green  { background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%); }
.sc-teal   { background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%); }
.sc-orange { background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%); }
.sc-purple { background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%); }
.startup-card h4 { font-size: 15px; font-weight: 600; color: var(--brand-dark); margin-bottom: 3px; }
.startup-sector { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand-mid); }
.startup-card p { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; flex: 1; }
.startup-status { font-size: 11px; color: #888; display: flex; align-items: center; gap: 6px; font-weight: 400; padding-top: 8px; border-top: 1px solid var(--border-clr); }
.startup-status .bi { color: #22C55E; font-size: 7px; }
.portfolio-note { font-size: 12px; color: #bbb; font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   MENTORS PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* ── Inline stats grid ── */
.mentor-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mstat { background: var(--light-bg); border: 1px solid var(--border-clr); border-radius: 12px; padding: 18px 20px; }
.mstat-num { font-size: 28px; font-weight: 700; color: var(--brand-dark); font-family: 'Playfair Display', serif; line-height: 1; }
.mstat-lbl { font-size: 12px; color: #777; font-weight: 300; margin-top: 4px; }

/* ── Mentor profile cards ── */
.mentor-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 14px; transition: all .25s; height: 100%; }
.mentor-card:hover { border-color: var(--brand-mid); box-shadow: 0 10px 32px rgba(13,59,142,0.1); transform: translateY(-3px); }
.mentor-card-top { display: flex; align-items: flex-start; gap: 14px; }
.mentor-avatar { flex-shrink: 0; width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #fff; font-family: 'Playfair Display', serif; }
.mc-blue   { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%); }
.mc-navy   { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%); }
.mc-teal   { background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%); }
.mc-orange { background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%); }
.mc-purple { background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%); }
.mc-green  { background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%); }
.mentor-info h4 { font-size: 15px; font-weight: 600; color: var(--brand-dark); margin-bottom: 3px; }
.mentor-role { font-size: 12px; color: #777; font-weight: 400; margin-bottom: 6px; }
.mentor-domain { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand-mid); background: var(--light-bg); border-radius: 20px; padding: 3px 10px; display: inline-block; }
.mentor-card p { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; flex: 1; }
.mentor-footer { padding-top: 12px; border-top: 1px solid var(--border-clr); }
.mentor-badge { font-size: 11px; color: var(--brand-mid); font-weight: 500; display: flex; align-items: center; gap: 5px; }
.mentor-badge .bi { color: var(--brand-mid); font-size: 12px; }

/* ── Join perks list ── */
.join-perks { display: flex; flex-direction: column; gap: 14px; }
.join-perk { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: #fff; border: 1px solid var(--border-clr); border-radius: 10px; transition: all .2s; }
.join-perk:hover { border-color: var(--brand-mid); background: var(--light-bg); }
.jp-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--brand); }
.jp-title { font-size: 13.5px; font-weight: 600; color: var(--brand-dark); margin-bottom: 2px; }
.jp-desc  { font-size: 12px; color: #777; font-weight: 300; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   FACILITIES PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* ── Infrastructure feature list ── */
.fac-features { display: flex; flex-direction: column; gap: 12px; }
.fac-feature { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: var(--light-bg); border: 1px solid var(--border-clr); border-radius: 10px; transition: all .2s; }
.fac-feature:hover { border-color: var(--brand-mid); background: #fff; box-shadow: 0 4px 16px rgba(13,59,142,0.07); }
.ff-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid var(--border-clr); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--brand); }
.ff-title { font-size: 13.5px; font-weight: 600; color: var(--brand-dark); margin-bottom: 2px; }
.ff-sub   { font-size: 12px; color: #777; font-weight: 300; line-height: 1.5; }

/* ── Lab cards ── */
.lab-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 26px 22px; transition: all .25s; }
.lab-card:hover { border-color: var(--brand-mid); box-shadow: 0 8px 28px rgba(13,59,142,0.09); transform: translateY(-3px); }
.lab-card-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--brand); margin-bottom: 16px; transition: all .25s; }
.lab-card:hover .lab-card-icon { background: var(--brand); color: #fff; }
.lab-card h3 { font-size: 15px; font-weight: 600; color: var(--brand-dark); margin-bottom: 8px; }
.lab-card p  { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; }

/* ── Business support grid ── */
.fac-support-grid { display: flex; flex-direction: column; gap: 12px; }
.fac-support-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--border-clr); border-radius: 10px; transition: all .2s; }
.fac-support-item:hover { border-color: var(--brand-mid); box-shadow: 0 4px 16px rgba(13,59,142,0.07); }
.fsi-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 19px; color: var(--brand); transition: all .25s; }
.fac-support-item:hover .fsi-icon { background: var(--brand); color: #fff; }
.fsi-title { font-size: 13.5px; font-weight: 600; color: var(--brand-dark); margin-bottom: 3px; }
.fsi-desc  { font-size: 12px; color: #777; font-weight: 300; line-height: 1.5; }

/* ── Visit band ── */
.visit-band { background: #fff; border: 1px solid var(--border-clr); border-radius: 16px; padding: 28px 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.vb-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--brand); }
.vb-body { flex: 1; min-width: 200px; }
.vb-body h3 { font-size: 16px; font-weight: 600; color: var(--brand-dark); margin-bottom: 4px; }
.vb-body p  { font-size: 13px; color: #666; font-weight: 300; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   FUNDING PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* ── Funding highlights strip ── */
.funding-highlights { display: flex; align-items: center; gap: 0; background: var(--light-bg); border: 1px solid var(--border-clr); border-radius: 12px; padding: 16px 24px; }
.fh-item { flex: 1; text-align: center; }
.fh-num { font-size: 24px; font-weight: 700; color: var(--brand-dark); font-family: 'Playfair Display', serif; line-height: 1; }
.fh-lbl { font-size: 11px; color: #888; font-weight: 300; margin-top: 4px; }
.fh-sep { width: 1px; height: 36px; background: var(--border-clr); }

/* ── Scheme card icon in badge ── */
.scheme-badge .bi { margin-right: 4px; }

/* ── Investor cards ── */
.investor-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 26px 22px; text-align: center; transition: all .25s; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.investor-card:hover { border-color: var(--brand-mid); box-shadow: 0 10px 32px rgba(13,59,142,0.1); transform: translateY(-3px); }
.inv-icon { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; flex-shrink: 0; }
.inv-ticket { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand-mid); background: var(--light-bg); border-radius: 20px; padding: 3px 12px; }
.investor-card h3 { font-size: 15px; font-weight: 600; color: var(--brand-dark); margin: 0; }
.investor-card p  { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   PARTNERSHIPS PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* ── Partnership category cards ── */
.partner-cat-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 16px; overflow: hidden; transition: all .25s; }
.partner-cat-card:hover { box-shadow: 0 12px 40px rgba(13,59,142,0.1); transform: translateY(-3px); }

.pcc-head { padding: 28px 26px 24px; }
.pcc-head.pc-blue { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%); }
.pcc-head.pc-navy { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%); }
.pcc-head.pc-dark { background: linear-gradient(135deg, #0A2050 0%, var(--brand-dark) 100%); }

.pcc-icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin-bottom: 14px; }
.pcc-badge { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.pcc-head h3 { font-size: 18px; font-weight: 600; color: #fff; margin: 0; font-family: 'Playfair Display', serif; }

.pcc-body { padding: 22px 26px; }
.pcc-body p { font-size: 13px; color: #555; line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.pcc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pcc-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: #444; font-weight: 400; }
.pcc-list li .bi { color: var(--brand-mid); font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* ── Partner pills wrap ── */
.partner-pills-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; }

/* ═══════════════════════════════════════════════════════════
   RESOURCES PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* ── Resource card bi icon override ── */
.res-icon-bi { background: var(--light-bg); }
.res-icon-bi .bi { font-size: 20px; color: var(--brand); }
.btn-download { display: inline-flex; align-items: center; gap: 5px; }
.btn-download .bi { font-size: 11px; }

/* ── Blog cards ── */
.blog-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 24px 22px; display: flex; flex-direction: column; gap: 12px; transition: all .25s; }
.blog-card:hover { border-color: var(--brand-mid); box-shadow: 0 10px 32px rgba(13,59,142,0.1); transform: translateY(-3px); }
.blog-card-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--brand); transition: all .25s; }
.blog-card:hover .blog-card-icon { background: var(--brand); color: #fff; }
.blog-meta { display: flex; align-items: center; gap: 10px; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand-mid); background: var(--light-bg); border-radius: 20px; padding: 3px 10px; }
.blog-read { font-size: 11.5px; color: #aaa; display: flex; align-items: center; gap: 4px; }
.blog-read .bi { font-size: 11px; }
.blog-card h3 { font-size: 14.5px; font-weight: 600; color: var(--brand-dark); line-height: 1.5; margin: 0; }
.blog-card p  { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; flex: 1; }
.blog-read-link { font-size: 12.5px; font-weight: 600; color: var(--brand); display: flex; align-items: center; gap: 6px; margin-top: auto; transition: gap .2s; }
.blog-card:hover .blog-read-link { gap: 10px; }
.blog-read-link .bi { font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   EVENTS / UPDATES PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* ── Event register link ── */
.event-reg-link { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--brand); margin-top: 14px; transition: gap .2s; text-decoration: none; }
.event-reg-link:hover { gap: 11px; color: var(--brand-dark); }
.event-reg-link .bi { font-size: 12px; }

/* ── News cards ── */
.news-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 12px; padding: 18px 20px; display: flex; align-items: flex-start; gap: 16px; transition: all .25s; height: 100%; }
.news-card:hover { border-color: var(--brand-mid); box-shadow: 0 6px 22px rgba(13,59,142,0.09); transform: translateY(-2px); }
.news-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 19px; color: var(--brand); transition: all .25s; }
.news-card:hover .news-icon { background: var(--brand); color: #fff; }
.news-date { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand-mid); margin-bottom: 5px; }
.news-body h4 { font-size: 13.5px; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; line-height: 1.45; }
.news-body p  { font-size: 12.5px; color: #666; line-height: 1.6; font-weight: 300; margin: 0; }

/* ── Past event cards ── */
.past-event-card { background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; padding: 26px 22px; text-align: center; transition: all .25s; }
.past-event-card:hover { border-color: var(--brand-mid); box-shadow: 0 8px 28px rgba(13,59,142,0.09); transform: translateY(-3px); }
.pe-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--brand); margin: 0 auto 14px; transition: all .25s; }
.past-event-card:hover .pe-icon { background: var(--brand); color: #fff; }
.pe-stat { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand-mid); background: var(--light-bg); border-radius: 20px; padding: 3px 12px; display: inline-block; margin-bottom: 10px; }
.past-event-card h4 { font-size: 14.5px; font-weight: 600; color: var(--brand-dark); margin-bottom: 8px; }
.past-event-card p  { font-size: 13px; color: #666; line-height: 1.65; font-weight: 300; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — dedicated styles
═══════════════════════════════════════════════════════════ */

/* ── Social links in info panel ── */
.cii-social { display: flex; gap: 10px; margin-top: 6px; }
.cii-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; color: #89C4F4; transition: all .2s; }
.cii-social a:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ── Required field marker ── */
.required { color: #e74c3c; }

/* ── Form alerts ── */
.form-alert { display: flex; align-items: flex-start; gap: 10px; padding: 13px 16px; border-radius: 8px; font-size: 13.5px; margin-bottom: 20px; }
.form-alert .bi { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.form-alert-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.form-alert-error   { background: #fce4ec; border: 1px solid #ef9a9a; color: #c62828; }

/* ── Submit button icon ── */
.btn-submit { display: inline-flex; align-items: center; gap: 8px; }
.btn-submit .bi { font-size: 14px; }

/* ── Quick link cards ── */
.quick-link-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 12px; background: #fff; border: 1px solid var(--border-clr); border-radius: 14px; text-decoration: none; transition: all .25s; text-align: center; }
.quick-link-card:hover { border-color: var(--brand-mid); box-shadow: 0 6px 20px rgba(13,59,142,0.09); transform: translateY(-3px); }
.qlc-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--brand); transition: all .25s; }
.quick-link-card:hover .qlc-icon { background: var(--brand); color: #fff; }
.qlc-label { font-size: 12px; font-weight: 600; color: var(--brand-dark); line-height: 1.35; }

/* ── Map section ── */
.contact-map-wrap { height: 320px; overflow: hidden; background: var(--brand-dark); }
.contact-map-wrap iframe { width: 100%; height: 100%; display: block; border: none; }
.map-placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.map-placeholder .bi { font-size: 40px; color: rgba(255,255,255,0.3); }
.map-placeholder p { font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; }
.map-placeholder strong { color: rgba(255,255,255,0.75); }
