/* ============================================
   ITECH SKILL BHARAT – MAIN STYLESHEET
   Color Palette:
   - Navy:  #001b3a
   - Gold:  #f8b502
   - Red:   #dc3545
   - White: #ffffff
   - Gray:  #f5f7fa
   - Text:  #333333
============================================ */

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

:root {
  --navy: #001b3a;
  --navy-light: #002a5c;
  --gold: #f8b502; 
  --gold-dark: #d99a00;
  --red: #dc3545;
  --white: #ffffff;
  --gray-bg: #f5f7fa;
  --text: #2c3a55;
  --text-light: #6b7a99;
  --border: #e0e6f0;
  --shadow: 0 4px 24px rgba(0,27,58,0.10);
  --shadow-lg: 0 8px 40px rgba(0,27,58,0.18);
  --radius: 10px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cdd9f0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.top-bar-left i { color: var(--gold); }
.top-bar-right {
  display: flex;
  align-items: center;
}
.btn-register {
  background: var(--red);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.btn-register:hover { background: #b02030; transform: translateY(-1px); }

/* ---- BRAND BAR ---- */
.brand-bar {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.contact-icon {
  font-size: 2rem;
  color: var(--navy);
  background: rgba(0,27,58,0.08);
  padding: 12px;
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
}
.contact-text .label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-text a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.contact-text a:hover { color: var(--gold); }
.brand-logo img {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.brand-contact.right { justify-content: flex-end; }

/* ---- MAIN NAVIGATION ---- */
.main-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}
.nav-links li { position: relative; }
.nav-link {
  display: block;
  padding: 16px 14px;
  color: #cdd9f0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { left: 0; right: 0; }

.nav-second-row {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-second-row .nav-link {
  padding: 10px 14px 12px;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0.2px;
}

.hamburger-icon {
  margin-left: auto;
  display: none;
}
.hamburger {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 12px;
  transition: var(--transition);
}
.hamburger:hover { color: var(--gold); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-light);
  padding: 8px 0;
}
.mobile-menu a {
  padding: 12px 24px;
  color: #cdd9f0;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(0,0,0,0.2); }
.mobile-menu.open { display: flex; }

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  height: 540px;
  overflow: hidden;
}
.slider-track { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover !important;
  background-position: center !important;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-content {
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 0 40px;*/
  width: 100%;
}
.slide-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  max-width: 700px;
}
.slide-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.btn-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-block;
}
.btn-cta:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(248,181,2,0.4); }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dot {
  width: 28px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); width: 40px; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,27,58,0.6);
  color: white;
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gold); color: var(--navy); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--navy);
  padding: 32px 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-item > i {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: 1.4rem; font-weight: 900; color: var(--gold); }
.stat-item p { font-size: 0.85rem; color: #adc0df; font-weight: 600; margin-top: 2px; }

/* ---- SECTION COMMON ---- */
.section {
  padding: 80px 0;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.column-layout { display: block; }
.section-tag {
  display: inline-block;
  background: rgba(248,181,2,0.15);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(248,181,2,0.3);
}
.section-tag.centered {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.section-heading {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-heading.centered { text-align: center; }
.highlight { color: var(--gold-dark); }
.section-divider {
  width: 50px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 24px;
}
.section-divider.centered { margin: 0 auto 24px; }

/* ---- INTRODUCTION ---- */
.introduction-section { background: var(--gray-bg); }
.intro-image-wrap { position: relative; }
.intro-img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.badge-text { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.intro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.feature-chip {
  background: rgba(0,27,58,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.feature-chip i { color: var(--gold-dark); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid var(--navy);
}
.btn-primary:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(248,181,2,0.3); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.88rem;
  transition: var(--transition);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---- WHAT WE DO ---- */
.what-we-do-section { background: var(--white); }
.home-offerings {
  padding-bottom: 42px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.section-cta.centered {
  text-align: center;
  margin-top: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.service-icon i { font-size: 1.8rem; color: var(--gold); }
.service-card:hover .service-icon { background: var(--gold); }
.service-card:hover .service-icon i { color: var(--navy); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ---- CERTIFICATE ---- */
.certificate-section { background: var(--gray-bg); }
.cert-features { list-style: none; margin: 20px 0; }
.cert-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.cert-features li i { color: var(--gold-dark); font-size: 1rem; }
.cert-card-preview {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 2px solid var(--gold);
}
.cert-header {
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cert-logo { height: 44px; }
.cert-header h4 { color: var(--white); font-size: 1rem; font-weight: 700; }
.cert-body {
  padding: 28px;
  text-align: center;
}
.cert-label { font-size: 0.85rem; color: var(--text-light); }
.cert-name { font-size: 1.8rem; font-weight: 700; color: var(--navy); font-style: italic; border-bottom: 2px solid var(--gold); display: inline-block; padding: 0 20px; margin: 8px 0; }
.cert-course { font-size: 0.88rem; color: var(--text); margin-top: 14px; }
.cert-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.cert-sign { text-align: center; }
.sign-line { border-top: 2px solid var(--navy); width: 120px; margin-bottom: 4px; }
.cert-sign span { font-size: 0.75rem; color: var(--text-light); font-weight: 600; }
.cert-qr i { font-size: 3rem; color: var(--navy); opacity: 0.6; }

/* ---- MENTORS ---- */
.mentors-section { background: var(--white); }
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.mentor-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.mentor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mentor-img-wrap { position: relative; overflow: hidden; }
.mentor-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.mentor-card:hover .mentor-img { transform: scale(1.05); }
.mentor-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,27,58,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}
.mentor-card:hover .mentor-overlay { opacity: 1; }
.social-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--white); }
.mentor-info {
  padding: 16px;
  text-align: center;
}
.mentor-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.mentor-role { font-size: 0.82rem; color: var(--gold-dark); font-weight: 600; margin-top: 4px; }
.mentor-exp { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }

/* ---- EVENTS ---- */
.events-section { background: var(--gray-bg); }
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.event-featured {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.event-feat-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.event-feat-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,27,58,0.92));
  padding: 30px 24px 24px;
  color: var(--white);
}
.event-feat-overlay h3 { font-size: 1.1rem; font-weight: 700; margin: 10px 0 8px; }
.event-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.event-badge.upcoming { background: var(--gold); color: var(--navy); }
.event-badge.past { background: rgba(255,255,255,0.2); color: var(--white); }
.event-meta { display: flex; gap: 16px; font-size: 0.82rem; opacity: 0.85; flex-wrap: wrap; }
.event-meta span { display: flex; align-items: center; gap: 5px; }

.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-list-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.event-list-item:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.evt-thumb { width: 80px; height: 70px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.evt-info { flex: 1; }
.evt-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin: 6px 0 4px; }
.evt-info .event-meta { color: var(--text-light); }

/* ---- GALLERY ---- */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,27,58,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold);
  font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 100%; max-height: 85vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* ---- PARTNERS ---- */
.partners-section { background: var(--gray-bg); }
.partners-ticker {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 24px;
  animation: ticker 20s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo {
  min-width: 160px;
  height: 120px;
  background: var(--white);
  border-radius: 8px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.partner-logo:hover { border-color: var(--gold); transform: translateY(-3px); }
.partner-logo span { font-size: 0.82rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }

/* ---- TEST SECTION ---- */
.test-section { background: var(--navy); }
.test-section .section-inner { color: var(--white); }
.test-section .section-heading { color: var(--white); }
.test-section .highlight { color: var(--gold); }
.test-section p { color: #cdd9f0; margin-bottom: 28px; }
.test-section .section-divider { background: var(--gold); }
.test-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.test-card h3 { color: var(--navy); font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.test-card h3 i { color: var(--gold); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(248,181,2,0.15);
}

/* ---- CAREER ---- */
.career-section { background: var(--white); }
.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.career-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.career-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.career-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.job-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.job-icon i { font-size: 1.3rem; color: var(--gold); }
.job-type { padding: 4px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.job-type.full-time { background: rgba(0,27,58,0.1); color: var(--navy); }
.job-type.part-time { background: rgba(248,181,2,0.15); color: #a67800; }
.job-type.internship { background: rgba(220,53,69,0.1); color: var(--red); }
.career-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.career-card p { font-size: 0.87rem; color: var(--text-light); margin-bottom: 16px; }
.job-meta { display: flex; flex-direction: column; gap: 6px; font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; }
.job-meta span { display: flex; align-items: center; gap: 6px; }
.job-meta i { color: var(--gold-dark); }

/* ---- TESTIMONIALS ---- */
.student-section { background: var(--gray-bg); }
.home-testimonials {
  padding-top: 42px;
}
.home-testimonials .testimonials-carousel {
  max-width: 1020px;
  margin: 28px auto 0;
}
.home-testimonials .section-heading {
  margin-bottom: 0;
}
.testimonials-carousel { position: relative; margin-top: 40px; }
.testimonial-track { position: relative; min-height: 260px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: none;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card.active { display: block; }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.testi-quote { font-size: 1.02rem; color: var(--text); font-style: italic; line-height: 1.8; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.testi-name { display: block; font-weight: 800; color: var(--navy); font-size: 0.95rem; }
.testi-role { display: block; font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; }
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); }
.testi-dot.active { background: var(--gold); }

/* ---- INSURANCE ---- */
.insurance-section { background: var(--white); }
.ins-img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.ins-plans { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.ins-plan {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 14px 18px;
  transition: var(--transition);
}
.ins-plan:hover { background: rgba(248,181,2,0.1); transform: translateX(4px); }
.ins-plan > i { font-size: 1.5rem; color: var(--gold); width: 32px; flex-shrink: 0; }
.ins-plan h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ins-plan p { font-size: 0.82rem; color: var(--text-light); }

/* ---- CONTACT ---- */
.contact-section { background: var(--gray-bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-top: 40px;
}
.contact-block { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon-wrap {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-block h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-block p, .contact-block a { font-size: 0.88rem; color: var(--text-light); }
.contact-block a:hover { color: var(--gold-dark); }
.social-links { display: flex; gap: 10px; margin-top: 8px; }
.soc {
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.soc:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.contact-form h3 i { color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: #cdd9f0;
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
/* footer-logo style is defined in the refresh section below */
.footer-col p { font-size: 0.87rem; line-height: 1.9; color: #adc0df; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #cdd9f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.footer-links-grid a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  font-size: 0.87rem;
  color: #adc0df;
  transition: var(--transition);
}
.footer-links-grid a i { font-size: 0.6rem; color: var(--gold); }
.footer-links-grid a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 18px; }
.footer-contact-item > i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: #adc0df; font-size: 0.87rem; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item span { font-size: 0.87rem; color: #adc0df; line-height: 1.7; }
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.84rem; color: #8da0bc; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.84rem; color: #8da0bc; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(248,181,2,0.4);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 80px;
  right: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 9999;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast i { color: #4caf88; font-size: 1.1rem; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mentors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-second-row { display: none; }
  .hamburger-icon { display: block; margin-left: 0; }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 16px; }
  .brand-bar { padding: 10px 0; }
  .brand-inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }
  .brand-logo img { width: min(220px, 58vw); min-width: 0; max-height: 76px; }
  .brand-contact { justify-content: center; text-align: center; }
  .brand-contact.right { display: none; }
  .hero-slider { height: 380px; }
  .slide-title { font-size: 1.6rem; }
  /*.slide-content { padding: 0 20px; }*/
  .section { padding: 56px 0; }
  .section-inner { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .events-layout { grid-template-columns: 1fr; }
  .career-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mentors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 16px; }
}
@media (max-width: 480px) {
  .top-bar-inner { padding: 0 14px; }
  .top-bar-left { font-size: 0.78rem; }
  .btn-register { padding: 6px 14px; font-size: 0.78rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mentors-grid { grid-template-columns: 1fr; }
  .slide-title { font-size: 1.3rem; }
  .section-heading { font-size: 1.6rem; }
  .stats-inner { grid-template-columns: 1fr; }
  .brand-logo img { width: min(190px, 66vw); }
  .brand-contact.left { display: none; }
}

/* ============================================
   UI REFRESH: SHARED INNER PAGES + FOOTER
============================================ */
:root {
  --success: #2fb36b;
}

.bg-gray { background: var(--gray-bg); }
.text-center { text-align: center; }
.section-compact { padding: 60px 0; }
.inner-page-section { padding-top: 60px; }
.section-align-top { align-items: flex-start; }
.section-lead {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
  color: var(--text-light);
  line-height: 1.85;
  font-size: 0.98rem;
}
.section-lead-narrow { max-width: 600px; margin-bottom: 30px; }
.section-action { margin-top: 8px; }
.accent-icon { color: var(--gold); margin-right: 10px; }

.page-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,247,250,0.96)),
    radial-gradient(circle at top right, rgba(248,181,2,0.12), transparent 18%);
  border-bottom: 1px solid var(--border);
}
.page-header .container {
  padding-top: 34px;
  padding-bottom: 34px;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.92rem;
  padding: 0;
  margin: 0;
}
.breadcrumb li + li::before {
  content: '/';
  margin-right: 10px;
  color: #9aa8c0;
}
.breadcrumb a {
  color: var(--navy);
  font-weight: 600;
}

.top-bar {
  padding: 10px 0;
}
.brand-bar {
  padding: 12px 0;
  box-shadow: 0 6px 18px rgba(0,27,58,0.05);
}
.brand-logo img {
  height: 80px;
  width: auto;
  max-width: min(280px, 40vw);
  object-fit: contain;
}
.contact-icon {
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
  background: rgba(0,27,58,0.06);
}
.contact-text a {
  font-size: 0.98rem;
}
.main-nav {
  box-shadow: 0 8px 22px rgba(0,27,58,0.14);
}
.nav-link {
  padding-top: 17px;
  padding-bottom: 17px;
}

.content-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.content-media {
  width: 100%;
  display: flex;
  align-items: center;
}

.rich-text-block {
  font-size: 1.03rem;
  line-height: 1.88;
  color: var(--text);
}
.rich-text-block p {
  margin-bottom: 16px;
}
.signature-label {
  font-weight: 700;
  color: var(--navy);
  margin-top: 24px;
}
.signature-name {
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--gold-dark);
}
.signature-role {
  font-size: 0.92rem;
  color: var(--text-light);
}

.info-grid {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}
.info-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.info-card {
  background: var(--white);
  padding: 34px 30px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(224,230,240,0.9);
  text-align: center;
}
.info-card-icon {
  font-size: 2.7rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.info-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.info-card p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.93rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.check-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.check-list-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 3px;
}
.check-list-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.04rem;
  margin-bottom: 4px;
}
.check-list-item p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-layout-spaced {
  margin-top: 40px;
}
.social-links-spaced {
  margin-top: 30px;
}
.contact-form-panel,
.verify-card,
.test-card-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.contact-form-panel {
  padding: 34px;
}
.form-row-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group-spaced {
  margin-top: 20px;
}
.form-submit-spaced {
  margin-top: 20px;
}
.map-section {
  height: 420px;
  width: 100%;
  background: var(--gray-bg);
}
.map-frame {
  border: 0;
  filter: grayscale(20%) contrast(1.08);
}

.feature-points {
  list-style: none;
  padding: 0;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8e3f3;
  font-weight: 600;
}
.feature-points i {
  color: var(--gold);
}
.test-card-panel {
  padding: 34px;
}

.verify-card {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  padding: 36px;
}
.verify-card-field {
  margin-bottom: 20px;
  text-align: left;
}
.verify-card-field label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.verify-card-field input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: 8px;
  outline: none;
  font: inherit;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
  width: 100%;
}
.event-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(224,230,240,0.9);
  display: flex;
  flex-direction: column;
}
.event-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.event-card-placeholder {
  width: 100%;
  height: 220px;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card-placeholder i {
  font-size: 3rem;
  color: var(--border);
}
.event-card-body {
  padding: 22px;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-badge-inline {
  margin-bottom: 12px;
  display: inline-block;
  align-self: flex-start;
}
.event-card-title {
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.45;
}
.event-meta-muted {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.event-card-action {
  margin-top: auto;
}
.btn-small {
  padding: 7px 16px;
  font-size: 0.8rem;
}
.gallery-grid-spaced {
  margin-top: 30px;
}

.site-footer {
  background: linear-gradient(180deg, #01162f, #001128);
  color: #cdd9f0;
  padding: 0;
}
.footer-top {
  padding: 58px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
  gap: 34px;
}
.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-logo {
  display: inline-block;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 180px;
  max-width: 100%;
}
.footer-about {
  color: #adc0df;
  font-size: 0.9rem;
  line-height: 1.9;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cdd9f0;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-contact-list li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #adc0df;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover,
.footer-contact-list a:hover {
  color: var(--gold);
}
.footer-links i {
  color: var(--gold);
  font-size: 0.7rem;
}
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #adc0df;
  font-size: 0.88rem;
  line-height: 1.75;
}
.footer-contact-list i {
  color: var(--gold);
  margin-top: 5px;
}
.footer-newsletter {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.footer-newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--white);
  padding: 12px 14px;
  font: inherit;
}
.footer-newsletter input::placeholder {
  color: rgba(255,255,255,0.46);
}
.footer-newsletter button {
  width: 48px;
  border: none;
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
}
.footer-partners {
  margin-top: 18px;
}
.partner-logos-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.partner-logo-badge {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}
.footer-bottom {
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.footer-bottom-inner p {
  font-size: 0.84rem;
  color: #8da0bc;
}

@media (max-width: 1024px) {
  .footer-grid,
  .info-grid-two {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-header .container {
    padding-top: 26px;
    padding-bottom: 26px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .brand-logo img {
    width: min(220px, 58vw);
    max-height: 72px;
  }
  .form-row-wide,
  .footer-grid,
  .info-grid-two {
    grid-template-columns: 1fr;
  }
  .contact-form-panel,
  .test-card-panel,
  .verify-card {
    padding: 26px;
  }
  .map-section {
    height: 340px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .section-lead {
    margin-bottom: 34px;
    font-size: 0.92rem;
  }
  .event-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-panel,
  .test-card-panel,
  .verify-card {
    padding: 22px 18px;
  }
}

/* ============================================
   UI REFRESH 2: HEADER + FOOTER REDESIGN
============================================ */
.top-bar {
  background: linear-gradient(90deg, #041a36, #07264f);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
  min-height: 48px;
  gap: 18px;
}
.top-bar-left {
  font-size: 0.9rem;
  color: #d7e3f7;
}
.top-bar-left i {
  color: var(--gold);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d7e3f7;
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
}
.top-bar-link:hover {
  color: var(--gold);
}

.brand-bar {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,27,58,0.08);
  box-shadow: 0 6px 16px rgba(0,27,58,0.05);
}
.brand-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo-img {
  width: clamp(72px, 8vw, 106px);
  height: auto;
  flex: 0 0 auto;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-kicker {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.brand-name {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.02;
}

.main-nav {
  background: linear-gradient(90deg, #062146, #0a2d5f);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 10px 26px rgba(0,27,58,0.18);
}
.nav-shell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links {
  flex: 1;
  gap: 0 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar {
  display: none;
}
.nav-link {
  padding: 15px 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link::after {
  height: 2px;
}
.nav-utility {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #dce8fa;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-utility:hover {
  background: rgba(248,181,2,0.16);
  color: var(--gold);
}
.hamburger {
  display: none;
}

.breadcrumb {
  list-style: none;
}
.breadcrumb li {
  list-style: none;
}

.site-footer {
  background: linear-gradient(180deg, #03162d, #001327);
}
.footer-grid-redesign {
  grid-template-columns: 1.35fr 0.9fr 0.95fr 1.1fr;
  gap: 36px;
}
.footer-brand-col .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 18px;
  height: auto;
  box-shadow: none;
  filter: none;
}
.footer-brand-col .footer-logo img {
  display: block;
  width: 152px;
  height: auto;
  max-width: 100%;
  filter: none;
  border-radius:20px;
}
.footer-brand-col .footer-about {
  max-width: 290px;
}
.footer-news-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 14px;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-bottom-links a {
  color: #8da0bc;
  font-size: 0.84rem;
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .brand-shell {
    justify-content: center;
  }
  .footer-grid-redesign {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-right {
    display: none;
  }
  .brand-bar {
    padding: 8px 0;
  }
  .brand-lockup {
    align-items: center;
  }
  .brand-logo-img {
    width: 72px;
  }
  .brand-name {
    font-size: 1.08rem;
  }
  .nav-shell {
    justify-content: space-between;
  }
  .nav-links,
  .nav-utility {
    display: none;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
  }
  .mobile-menu.open {
    display: flex;
  }
  .footer-grid-redesign {
    grid-template-columns: 1fr;
  }
  .footer-brand-col .footer-logo img {
    width: 138px;
      border-radius:20px;
  }
}

@media (max-width: 480px) {
  .top-bar-left {
    font-size: 0.8rem;
  }
  .brand-lockup {
    gap: 10px;
  }
  .brand-logo-img {
    width: 58px;
  }
  .brand-name {
    font-size: 0.98rem;
  }
  .brand-kicker {
    font-size: 0.58rem;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-brand-col .footer-logo img {
    width: 126px;
      border-radius:20px;
  }
}

/* ============================================
   NEW HOMEPAGE STYLES - MSME FOCUS
============================================ */

/* ---- HERO SECTION ---- */
.hero-section {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, #001b3a 0%, #002a5c 50%, #001b3a 100%);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(248,181,2,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(248,181,2,0.05) 0%, transparent 35%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(248,181,2,0.15);
  border: 1px solid rgba(248,181,2,0.3);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--gold);
  font-size: 1rem;
}

.hero-badge span {
  color: #d7e3f7;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #adc0df;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248,181,2,0.35);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-trust {
  font-size: 0.9rem;
  color: #8da0bc;
  font-style: italic;
}

.hero-visual {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 30px;
  left: -40px;
  animation-delay: 1.5s;
}

.hero-float-card i {
  font-size: 1.8rem;
  color: var(--gold);
}

.float-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.float-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- VALUE PROPOSITION SECTION ---- */
.value-prop-section {
  background: var(--gray-bg);
  padding: 80px 0;
}

.value-prop-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.value-header {
  text-align: center;
  margin-bottom: 50px;
}

.value-lead {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

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

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon i {
  font-size: 2rem;
  color: var(--gold);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- FOCUS AREAS SECTION ---- */
.focus-section {
  background: var(--white);
  padding: 80px 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.focus-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.focus-card:hover::before {
  transform: scaleX(1);
}

.focus-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transform: rotate(45deg);
}

.focus-icon i {
  font-size: 1.6rem;
  color: var(--gold);
  transform: rotate(-45deg);
}

.focus-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.focus-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- FLAGSHIP SECTION ---- */
.flagship-section {
  background: linear-gradient(135deg, #f8fbff 0%, #f0f5fa 100%);
  padding: 80px 0;
}

.flagship-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.flagship-content {
  max-width: 560px;
}

.flagship-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.flagship-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.highlight-item i {
  width: 36px;
  height: 36px;
  background: rgba(248,181,2,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.flagship-visual {
  display: flex;
  justify-content: center;
}

.flagship-image-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.flagship-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.flagship-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}

.flagship-badge i {
  font-size: 2rem;
  color: var(--gold);
}

.badge-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

.badge-sub {
  display: block;
  font-size: 0.8rem;
  color: #adc0df;
}

/* ---- PROGRAMS SECTION ---- */
.programs-section {
  background: var(--white);
  padding: 80px 0;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.program-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.program-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.program-icon i {
  font-size: 2rem;
  color: var(--gold);
}

.program-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.program-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.program-courses {
  text-align: left;
}

.program-courses .program-icon {
  margin: 0 auto 24px;
}

.program-courses h3 {
  text-align: center;
}

.program-courses p {
  text-align: center;
  margin-bottom: 16px;
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.course-list li:last-child {
  border-bottom: none;
}

.course-list i {
  color: var(--gold);
  font-size: 0.8rem;
}

.section-cta {
  margin-top: 40px;
}

.section-cta.centered {
  text-align: center;
}

/* ---- WHY SECTION ---- */
.why-section {
  background: var(--gray-bg);
  padding: 80px 0;
}

.section-lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: -10px;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- PARTNERS SECTION ---- */
.partners-section {
  background: var(--white);
  padding: 80px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.partner-item {
  background: var(--gray-bg);
  padding: 40px 24px;
  border-radius: 14px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.partner-item:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.partner-item i {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 16px;
  display: block;
}

.partner-item span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

/* ---- TESTIMONIAL SECTION ---- */
.testimonial-section {
  background: linear-gradient(135deg, var(--navy) 0%, #002a5c 100%);
  padding: 80px 0;
}

.testimonial-section .section-tag {
  background: rgba(248,181,2,0.15);
  color: var(--gold);
  border-color: rgba(248,181,2,0.3);
}

.testimonial-section .section-heading {
  color: var(--white);
}

.testimonial-section .section-divider {
  background: var(--gold);
}

.testimonial-card-large {
  max-width: 800px;
  margin: 50px auto 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-quote {
  position: relative;
  margin-bottom: 30px;
}

.quote-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

.testimonial-quote p {
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i {
  font-size: 1.5rem;
  color: var(--navy);
}

.author-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.author-role {
  display: block;
  font-size: 0.9rem;
  color: #8da0bc;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--gold);
  padding: 100px 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(0,27,58,0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-cta-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,27,58,0.3);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-cta-secondary:hover {
  background: var(--gray-bg);
  /*transform: translateY(-2px);*/
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--navy);
  transition: var(--transition);
}

.btn-cta-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---- FOOTER SEO KEYWORDS ---- */
.footer-seo-keywords {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 24px;
  text-align: center;
}

.footer-seo-keywords p {
  font-size: 0.8rem;
  color: #5a7aa8;
  line-height: 1.6;
}

/* ---- HERO INNER LAYOUT ---- */
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 24px;
}

/* ---- PARTNERS COLLAB GRID ---- */
.partners-collab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.partner-collab-item {
  background: var(--white);
  padding: 36px 24px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.partner-collab-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.partner-collab-item i {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 14px;
  display: block;
}

.partner-collab-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.partner-collab-item p {
  font-size: 0.84rem;
  color: var(--text-light);
}

/* ---- SECTION SUBLEAD ---- */
.section-sublead {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: -10px;
  margin-bottom: 40px;
}

/* ---- PROGRAM LINK ---- */
.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 16px;
  transition: var(--transition);
}

.prog-link:hover {
  color: var(--navy);
  gap: 10px;
}

/* ---- RESPONSIVE UPDATES ---- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .hero-visual { display: none; }
  .partners-collab-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .partners-collab-grid { grid-template-columns: 1fr; }
  .footer-seo-keywords { padding: 0 16px; }
}

/* ---- RESPONSIVE FOR NEW SECTIONS ---- */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    padding: 60px 40px;
    max-width: 100%;
  }
  
  .hero-visual {
    display: none;
  }
  
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flagship-section .section-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .flagship-content {
    max-width: 100%;
  }
  
  .flagship-highlights {
    align-items: center;
  }
  
  .flagship-visual {
    order: -1;
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 50px 24px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
  }
  
  .focus-grid {
    grid-template-columns: 1fr;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .flagship-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    justify-content: center;
  }
  
  .testimonial-card-large {
    padding: 30px;
  }
  
  .testimonial-quote p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-cta-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ============================================
   HERO SLIDER STYLES
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: var(--navy);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,27,58,0.92) 0%, rgba(0,27,58,0.75) 50%, rgba(0,27,58,0.5) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  /*padding: 0 80px;*/
  color: var(--white);
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(248,181,2,0.15);
  border: 1px solid rgba(248,181,2,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-badge i {
  font-size: 1rem;
}

.slide-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
}

.slide-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

.slide-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-slide-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--gold);
}

.btn-slide-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-slide-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-slide-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-slider {
    height: 550px;
  }
  
  .slide-content {
    /*padding: 0 60px;*/
    max-width: 600px;
  }
  
  .slide-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 500px;
  }
  
  .slide-content {
    /*padding: 0 24px;*/
    text-align: center;
    max-width: 100%;
  }
  
  .slide-title {
    font-size: 1.5rem;
  }
  .btn-slide-primary{
      padding:14px 20px;
      font-size:0.75rem;
  }
  .btn-slide-secondary{
      padding:14px 15px;
      font-size:0.75rem;
  }
  .slide-subtitle {
    font-size: 1rem;
  }
  
  .slide-cta {
    justify-content: center;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .slider-prev {
    left: 12px;
  }
  
  .slider-next {
    right: 12px;
  }
}

/* ============================================================
   MEGA RESPONSIVE + POLISH OVERHAUL
   Fixes: nav overflow, mobile menu, hero, cards, footer
============================================================ */

/* ── GLOBAL POLISH ─────────────────────────────────────── */
:root {
  --primary:    #0d4f8b;
  --secondary:  #0d948b;
  --accent:     #f8b502;
  --navy:       #001b3a;
  --navy-light: #002a5c;
  --gold:       #f8b502;
  --gold-dark:  #d99a00;
  --bg-hover:   #f0f4fa;
  --border:     #e0e6f0;
  --text-dark:  #1a2840;
  --text-light: #6b7a99;
  --shadow-sm:  0 2px 12px rgba(0,27,58,0.07);
  --shadow-md:  0 8px 32px rgba(0,27,58,0.12);
  --shadow-lg:  0 16px 48px rgba(0,27,58,0.16);
  --radius:     12px;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* ── TOP BAR ──────────────────────────────────────────── */
.top-bar {
  background: linear-gradient(90deg, #011428 0%, #062750 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c8d8f0;
  font-size: 0.84rem;
  font-weight: 500;
}
.top-bar-left i { color: var(--gold); font-size: 0.9rem; }
.btn-register {
  background: linear-gradient(135deg, #e02030, #c01020);
  color: #fff;
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(220,53,69,0.35);
  white-space: nowrap;
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(220,53,69,0.45);
}

/* ── BRAND BAR ────────────────────────────────────────── */
.brand-bar {
  background: #ffffff;
  border-bottom: 2px solid rgba(0,27,58,0.07);
  padding: 10px 0;
}
.brand-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.brand-logo img {
  height: clamp(64px, 9vw, 88px);
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.brand-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.brand-contact.right { justify-content: flex-end; }
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(0,27,58,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
}
.contact-text .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-text a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.contact-text a:hover { color: var(--gold-dark); }

/* ── MAIN NAVIGATION ──────────────────────────────────── */
.main-nav {
  background: linear-gradient(90deg, #001d40 0%, #002f68 50%, #001d40 100%);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 52px;
}
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  overflow: visible;
}
.nav-links li {
  display: flex;
  align-items: stretch;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 0 11px;
  color: rgba(255,255,255,0.85);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  height: 52px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 0;
  right: 0;
}
/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgba(248,181,2,0.2);
  border-color: var(--gold);
  color: var(--gold);
}
/* Mobile Drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: linear-gradient(180deg, #012040, #001328);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open {
  display: flex;
  max-height: 800px;
}
.mobile-menu a {
  padding: 13px 24px;
  color: #b8ccec;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu a i {
  width: 20px;
  color: var(--gold);
  font-size: 0.85rem;
}
.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
  padding-left: 32px;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── SECTION SHARED ────────────────────────────────────── */
.section { padding: clamp(48px, 7vw, 80px) 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  width: 100%;
}
.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

/* ── HERO SLIDER ───────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: clamp(340px, 55vw, 580px);
  background: var(--navy);
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,20,50,0.78) 0%, rgba(0,30,70,0.55) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(20px, 5vw, 60px) clamp(20px, 5vw, 60px);
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248,181,2,0.18);
  border: 1px solid rgba(248,181,2,0.35);
  color: #ffd666;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.slide-title {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.slide-subtitle {
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}
.slide-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-slide-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: clamp(10px, 2vw, 14px) clamp(18px, 3vw, 28px);
  border-radius: 6px;
  font-weight: 800;
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-slide-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248,181,2,0.4);
}
.btn-slide-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: clamp(10px, 2vw, 14px) clamp(18px, 3vw, 28px);
  border-radius: 6px;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-slide-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--gold);
  color: var(--gold);
}
/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,10,30,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1rem;
  transition: var(--transition);
}
.slider-arrow:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}
.dot:hover { background: rgba(255,255,255,0.7); }

/* ── STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(90deg, #001b3a 0%, #003060 50%, #001b3a 100%);
  padding: clamp(20px, 4vw, 36px) 0;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  padding: 0 clamp(8px, 2vw, 20px);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-item > i { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold); flex-shrink: 0; }
.stat-num {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-plus { font-size: 1rem; font-weight: 900; color: var(--gold); }
.stat-item p { font-size: clamp(0.72rem, 1.2vw, 0.85rem); color: #adc0df; font-weight: 600; margin-top: 3px; }

/* ── VALUE CARDS ───────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
}
.value-card {
  background: #fff;
  padding: clamp(24px, 4vw, 44px) clamp(18px, 3vw, 32px);
  border-radius: clamp(10px, 1.5vw, 16px);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.value-icon {
  width: clamp(60px, 9vw, 80px);
  height: clamp(60px, 9vw, 80px);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(16px, 2vw, 24px);
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.value-icon i { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--gold); transition: var(--transition); }
.value-card:hover .value-icon i { color: var(--navy); }
.value-card h3 { font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: clamp(0.85rem, 1.2vw, 0.95rem); color: var(--text-light); line-height: 1.65; }

/* ── FOCUS GRID ────────────────────────────────────────── */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-top: 50px;
}
.focus-card {
  padding: clamp(24px, 3.5vw, 40px) clamp(16px, 2.5vw, 26px);
  border-radius: clamp(10px, 1.5vw, 16px);
  text-align: center;
  border: 1px solid var(--border);
  background: #fff;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.focus-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 0 0 8px 8px;
}
.focus-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.focus-card:hover::before { transform: scaleX(1); }

/* ── PROGRAMS GRID ─────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
  margin-top: 40px;
}
.program-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: clamp(10px, 1.5vw, 16px);
  padding: clamp(24px, 3.5vw, 40px) clamp(18px, 2.5vw, 30px);
  transition: var(--transition);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.program-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.program-card:hover .program-icon { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.program-icon i { font-size: 1.6rem; color: var(--gold); transition: var(--transition); }
.program-card:hover .program-icon i { color: var(--navy); }
.program-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.program-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.prog-link:hover { color: var(--gold-dark); gap: 12px; }

/* ── CTA SECTION ───────────────────────────────────────── */
.cta-section {
  background: var(--gold);
  padding: clamp(48px, 7vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(248,181,2,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(13,148,136,0.06) 0%, transparent 50%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: #adc0df;
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248,181,2,0.4);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.2);
  /*border-color: var(--gold);*/
  /*color: var(--gold);*/
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-outline:hover {
  /*border-color: var(--gold);*/
  /*color: var(--gold);*/
}

/* ── WHY ITECH SECTION ─────────────────────────────────── */
.why-section { background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
  margin-bottom: 40px;
}
.why-card {
  background: #fff;
  padding: clamp(24px, 3.5vw, 42px) clamp(18px, 2.5vw, 30px);
  border-radius: clamp(10px, 1.5vw, 16px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  cursor: default;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.why-icon {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon { color: var(--gold-dark); }
.why-card h3 { font-size: clamp(0.95rem, 1.5vw, 1.2rem); color: var(--navy); font-weight: 700; margin-bottom: 12px; }
.why-card p { font-size: clamp(0.82rem, 1.2vw, 0.92rem); color: var(--text-light); line-height: 1.65; }

/* ── PARTNERS TICKER ───────────────────────────────────── */
.partners-ticker { overflow: hidden; margin-top: 40px; position: relative; }
.partners-ticker::before,
.partners-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}
.partners-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #f7fafd, transparent);
}
.partners-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #f7fafd, transparent);
}
.ticker-track {
  display: flex;
  gap: 20px;
  animation: ticker 22s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo {
  min-width: 150px;
  height: 120px;
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  transition: var(--transition);
  padding: 0 16px;
}
.partner-logo:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.partner-logo span {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── TESTIMONIAL ───────────────────────────────────────── */
.testimonial-card-large {
  background: #fff;
  border-radius: 20px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card-large::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.18;
  font-family: Georgia, serif;
  line-height: 1;
}
.quote-icon {
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}
.testimonial-quote p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.author-name { display: block; font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.author-role { display: block; font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }

/* ── FLAGSHIP SECTION ──────────────────────────────────── */
.flagship-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.flagship-img {
  width: 100%;
  height: clamp(260px, 35vw, 400px);
  object-fit: cover;
  border-radius: clamp(12px, 2vw, 20px);
  box-shadow: var(--shadow-lg);
}
.flagship-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.flagship-badge i { font-size: 1.6rem; color: var(--gold); }
.badge-title { display: block; font-size: 1rem; font-weight: 800; }
.badge-sub { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.75); margin-top: 2px; }

/* ── INTRODUCTION (intro-text layout) ─────────────────── */
.section-inner.section-align-top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}
.intro-text-wrap {
  flex: 1.5;
}
.intro-image-wrap {
  flex: 1;
  text-align: center;
}
.intro-img.content-image {
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0,27,58,0.15);
  width: 100%;
  max-width: 360px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #01162e 0%, #000e1f 100%);
}
.footer-inner,
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(20px, 3vw, 40px);
}
.site-footer .footer-bottom {
  padding: 18px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── PARTNERS COLLAB GRID ──────────────────────────────── */
.partners-collab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.partner-collab-item {
  background: #fff;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.partner-collab-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

/* ── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,27,58,0.3);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
──────────────────────────────────────────────────────── */

/* 1200px – large tablet / small desktop */
@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-collab-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner,
  .footer-grid,
  .footer-grid-redesign {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px;
  }
}

/* 1024px – tablet landscape */
@media (max-width: 1024px) {
  .nav-link { padding: 0 9px; font-size: 0.73rem; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .flagship-section .section-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(3),
  .stat-item:last-child { border-bottom: none; }
}

/* 900px – show hamburger */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: space-between; min-height: 52px; }
  /* Show logo text on mobile nav */
  .nav-inner::before {
    content: 'Itech Innovation Foundation';
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }
  .brand-contact.right { display: none; }
  .brand-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* 768px – tablet portrait */
@media (max-width: 768px) {
  .section { padding: clamp(40px, 8vw, 56px) 0; }

  /* Brand */
  .brand-contact { display: none !important; }
  .brand-inner { justify-content: center; }
  .brand-logo img { height: 68px; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.1) !important; }
  .stat-item:last-child,
  .stat-item:nth-last-child(2) { border-bottom: none !important; }

  /* Intro / Founder layout – stack */
  .section-inner.section-align-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro-img.content-image {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  /* Flagship */
  .flagship-section .section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .flagship-badge { right: 0; bottom: -16px; }

  /* Why Itech */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Focus areas */
  .focus-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Value cards */
  .value-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Partners collab */
  .partners-collab-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Footer */
  .footer-inner,
  .footer-grid,
  .footer-grid-redesign {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .footer-bottom-inner,
  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Contact layout */
  .contact-layout,
  .contact-layout-spaced {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Form rows */
  .form-row,
  .form-row-wide { grid-template-columns: 1fr; gap: 12px; }

  /* CTA buttons */
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-cta-outline { width: 100%; max-width: 320px; justify-content: center; }

  /* Hero slider */
  .hero-slider { height: clamp(320px, 70vw, 480px); }
  .slide-content { padding: 20px 24px; }

  /* Services / career grids */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .career-grid { grid-template-columns: 1fr; gap: 16px; }
  .mentors-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Section inner generic */
  .section-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* 480px – mobile */
@media (max-width: 480px) {
  .top-bar-right { display: none; }
  .top-bar-left { font-size: 0.78rem; }

  .brand-logo img { height: 56px; }

  .hero-slider { height: clamp(280px, 80vw, 380px); }
  .slide-title { font-size: clamp(1.2rem, 6vw, 1.6rem); }
  .slide-subtitle { font-size: 0.82rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .slide-badge { font-size: 0.68rem; padding: 4px 10px; }
  .slide-cta { gap: 10px; }
  .btn-slide-primary,
  .btn-slide-secondary { padding: 10px 16px; font-size: 0.74rem; }
  .slider-arrow { width: 36px; height: 36px; font-size: 0.85rem; }

  .stats-inner { grid-template-columns: 1fr 1fr; }

  .why-grid,
  .focus-grid { grid-template-columns: 1fr; gap: 14px; }

  .value-grid { grid-template-columns: 1fr; gap: 14px; }
  .programs-grid { grid-template-columns: 1fr; gap: 14px; }
  .partners-collab-grid { grid-template-columns: 1fr; gap: 14px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .mentors-grid { grid-template-columns: 1fr; gap: 14px; }

  .section-heading { font-size: clamp(1.4rem, 7vw, 1.8rem); }

  .flagship-badge { position: static; margin-top: 16px; border-radius: 12px; width: fit-content; }

  .cta-title { font-size: clamp(1.3rem, 7vw, 1.8rem); }

  .testimonial-card-large { padding: 24px 20px; }

  /* Partner logos ticker */
  .partner-logo { min-width: 120px; height: 64px; }

  /* Back to top */
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }

  /* Intro/founder section */
  .intro-img.content-image {
    max-width: 220px;
    aspect-ratio: 1;
    object-position: top;
  }
}

/* 360px – small mobile */
@media (max-width: 360px) {
  .brand-logo img { height: 48px; }
  .nav-link { font-size: 0.7rem; padding: 0 8px; }
  .section-heading { font-size: 1.3rem; }
}

/* ============================================
   CTA SECTION — GOLD/YELLOW BACKGROUND
   (Restores "Ready to Scale" gold banner)
============================================ */
.cta-section {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #001b3a;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(0,27,58,0.72);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.btn-cta-primary {
  background: #001b3a;
  color: #fff;
  padding: 15px 36px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.97rem;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(0,27,58,0.25);
}
.btn-cta-primary:hover {
  background: #002a5c;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,27,58,0.35);
}
.btn-cta-secondary {
  background: rgba(0,27,58,0.1);
  color: #001b3a;
  border: 2px solid rgba(0,27,58,0.5);
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.97rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-cta-secondary:hover {
  background: rgba(0,27,58,0.2);
  transform: translateY(-3px);
}
.btn-cta-outline {
  background: transparent;
  color: #001b3a;
  border: 2px solid rgba(0,27,58,0.35);
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.97rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-cta-outline:hover {
  background: rgba(0,27,58,0.1);
  border-color: rgba(0,27,58,0.6);
  transform: translateY(-3px);
}
@media (max-width: 600px) {
  .cta-section { padding: 56px 0; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-cta-primary, .btn-cta-secondary, .btn-cta-outline {
    justify-content: center;
  }
}

/* ============================================
   BACK-TO-TOP BUTTON — GOLD
============================================ */
.back-to-top {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.back-to-top:hover {
  background: var(--gold-dark) !important;
}

