:root {
  --blue: #23558c;
  --navy: #111e3b;
  --red: #d3141b;
  --light: #f4f7fc;
  --text: #1f2937;
  --muted: #535e73;
  --white: #fff;
  --shadow: 0 12px 40px rgba(23, 40, 77, 0.1);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.container { width: min(1200px, 90%); margin: auto; }

/* Topbar */
.topbar { background: var(--navy); color: #fff; font-size: 13px; font-weight: 500; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 12px 0; flex-wrap: wrap; }

/* Navbar */
.navbar { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.brand img {
  height: 90px;   /* FIXED - was 160px */
  width: auto;     
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
}

.brand img:hover {
  transform: scale(1.03);
}

/* MASSIVE navbar to fit it */
.nav-inner {
  height: 110px;  /* FIXED - was 180px */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px; 
  gap: 50px;
}

/* Adjust menu so it centers with big logo */
.nav-links {
  margin-top: 20px; /* pushes links down to middle of logo */
  gap: 28px;
}

/* Tablet */
@media (max-width: 1024px) {
  .nav-inner { height: 100px; padding: 0 30px; }
  .brand img { height: 80px; }
  .nav-links { margin-top: 10px; }
}

@media (max-width: 900px) {
  .nav-inner {
    height: 80px;
    padding: 0 20px;
  }
  .brand img {
    height: 70px;
  }
  .nav-links { margin-top: 0; }
}
.nav-links { display: flex; align-items: center; gap: 32px; font-weight: 600; font-size: 15px; list-style: none; }
.nav-links a { text-decoration: none; position: relative; }
.nav-links a:hover { color: var(--red); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.nav-links a.active { color: var(--blue); }
.nav-cta { background: var(--red); color: #fff !important; padding: 10px 22px; border-radius: 999px; font-weight: 700; }
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); color: #fff !important; }

/* Hamburger */
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; flex-direction: column; gap: 6px; }
.menu-toggle .bar { display: block; width: 26px; height: 3px; background-color: var(--navy); transition: var(--transition); border-radius: 2px; }
.menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* HERO BACKGROUND SLIDER */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  color: #fff;
  background: none!important;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(17,30,59,0.94) 0%, rgba(35,85,140,0.85) 100%);
  z-index: 2; /* FIX: was 1 */
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1; /* FIX: was 0 */
}
.hero-bg-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1; /* FIX: was missing */
}
.hero-bg-slide.active { opacity: 1; z-index: 1; } /* FIX: added z-index */
.hero .hero-grid { position: relative; z-index: 2; }

.hero-grid, .split-grid, .contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.eyebrow { color: var(--red); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin-bottom: 8px; }
.hero .eyebrow, .dark .eyebrow { color: #ffccd0; }
.hero h1 { font-size: clamp(36px, 5vw, 62px); line-height: 1.1; margin: 12px 0 24px; letter-spacing: -.03em; font-weight: 900; }
.hero-text { font-size: 19px; color: #f0f5ff; max-width: 620px; margin-bottom: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 28px; font-weight: 700; border: 2px solid transparent; cursor: pointer; transition: var(--transition); font-size: 15px; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--white); color: var(--navy); }
.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-row div { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 14px 20px; border-radius: 12px; backdrop-filter: blur(4px); }
.trust-row strong { display: block; font-size: 24px; font-weight: 800; }
.trust-row span { font-size: 13px; color: #d0e0f5; }
.hero-card { position: relative; }

.hero-photo { 
  min-height: 480px; 
  border-radius: 24px; 
background: url('assets/hero-new.png') center right/cover;
  box-shadow: var(--shadow);
  filter: brightness(1.05) contrast(1.02);
}
.floating-box { position: absolute; left: -24px; bottom: 32px; background: #fff; color: var(--navy); padding: 24px; border-radius: 16px; box-shadow: var(--shadow); max-width: 340px; border-left: 5px solid var(--blue); }
.floating-box strong { display: block; font-size: 18px; margin-bottom: 4px; }
.floating-box span { color: var(--muted); font-size: 14px; font-weight: 500; }

/* Content Sections */
.quick-services { margin-top: -40px; position: relative; z-index: 10; }
.cards-3, .cards-4, .program-grid { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.info-card, .program, .cards-4 > div, .feature-panel, .contact-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; transition: var(--transition); }
.info-card:hover, .cards-4 > div:hover { transform: translateY(-4px); }
.info-card span { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; margin-bottom: 16px; }
.section { padding: 100px 0; }
.section.light { background: var(--light); }
.section-title { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-title h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin: 8px 0 16px; color: var(--navy); letter-spacing: -.02em; font-weight: 800; }

.feature-panel { background: var(--navy); color: #fff; }
.feature-panel h3 { font-size: 26px; margin-top: 0; }
.feature-panel ul { padding-left: 20px; }
.feature-panel li { margin: 16px 0; font-size: 16px; }

.program-grid { grid-template-columns: repeat(4, 1fr); }
.program { border: 1px solid transparent; }
.program:hover { transform: translateY(-6px); border-color: rgba(35,85,140,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.icon { font-size: 36px; margin-bottom: 12px; }
.program h3 { color: var(--navy); margin: 12px 0 8px; font-size: 20px; font-weight: 700; }

/* Timeline - FIXED */
.timeline { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 24px; 
  margin-top: 40px;
}
.timeline-step {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border-left: 5px solid var(--blue);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 16px;
  transition: var(--transition);
}
.timeline-step h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.2rem; font-weight: 700; }
.timeline-step p { color: var(--muted); line-height: 1.6; }
.timeline-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(23, 40, 77, 0.15);
  border-left-color: var(--red);
  background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}
.timeline-step:hover span { background: var(--red); transform: scale(1.1); }
.timeline-step:hover h3 { color: var(--red); }

/* Dark Section & Checklist */
.dark { background: var(--navy); color: #fff; }
.dark h2 { color: #fff; }
.dark p { color: #d0e0f5; }
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.checklist div { background: rgba(255,255,255,0.05); padding: 18px; border-radius: 12px; border-left: 3px solid var(--red); font-weight: 500; }

.contact-section { background: linear-gradient(135deg, #f4f7fc, #fff); }
.notice { background: #fff5f5; border-left: 4px solid var(--red); padding: 20px; border-radius: 12px; margin-top: 24px; font-size: 14px; color: #4b5563; }

/* Contact Form */
.contact-form { display: grid; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d1d5db; border-radius: 10px; padding: 14px 16px; font: inherit; transition: var(--transition); background-color: #fafafa; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { background-color: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(35,85,140,0.1); outline: none; }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* Footer */
.footer { background: #0b1325; color: #fff; padding: 64px 0 24px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr; gap: 40px; }
.footer img { height: 64px; background: #fff; border-radius: 8px; padding: 6px; margin-bottom: 12px; }
.footer h4 { color: #fff; margin: 0 0 16px; font-size: 17px; font-weight: 700; }
.copyright { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding-top: 24px; color: #708599; font-size: 14px; text-align: center; }

/* FOOTER LINKS ANIMATED UNDERLINE */
.footer-links a {
  position: relative;
  display: inline-block;
  color: #9ca3af;
  margin: 10px 0;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--red);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::after { width: 100%; }

/* SECTORS SCROLLER */
.sectors-scroller-section { padding: 80px 0; background: var(--light); }
.sectors-scroller-wrapper { position: relative; overflow: hidden; padding: 20px 0; }
.sectors-scroller-track { display: flex; gap: 24px; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); padding: 0 40px; }
.sector-slide {
  position: relative;
  min-width: 320px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: grab;
  transition: var(--transition);
}
.sector-slide:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(23, 40, 77, 0.18); }
.sector-slide img { width: 100%; height: 100%; object-fit: cover; }
.sector-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(17,30,59,0.92) 100%);
  color: #fff;
}
.sector-emoji { font-size: 28px; display: block; margin-bottom: 8px; }
.sector-overlay h3 { font-size: 20px; font-weight: 800; margin: 0; color: #fff; }
.sector-overlay p { font-size: 13px; font-weight: 700; color: #fff; background: var(--red); display: inline-block; padding: 4px 10px; border-radius: 999px; margin-top: 8px; }

/* ANIMATIONS - SINGLE SOURCE OF TRUTH */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; will-change: transform, opacity; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.timeline-step.reveal:nth-child(1) { transition-delay: 0.1s; }
.timeline-step.reveal:nth-child(2) { transition-delay: 0.2s; }
.timeline-step.reveal:nth-child(3) { transition-delay: 0.3s; }
.timeline-step.reveal:nth-child(4) { transition-delay: 0.4s; }
.timeline-step.reveal:nth-child(5) { transition-delay: 0.5s; }
.timeline-step.reveal:nth-child(6) { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 1024px) {
  .cards-3, .program-grid, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 80px; background: #fff; padding: 32px; box-shadow: var(--shadow); flex-direction: column; gap: 20px; border-top: 1px solid #f0f0f0; }
  .nav-links.active { display: flex; }
  .nav-cta { width: 100%; text-align: center; }
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  
  .floating-box { left: 16px; bottom: -16px; right: 16px; max-width: none; }
  .quick-services { margin-top: 40px; }
  .sector-slide { min-width: 280px; height: 320px; }
  .scroller-btn { display: none; }
}
@media (max-width: 600px) {
  .cards-3, .cards-4, .program-grid, .timeline, .footer-grid, .checklist { grid-template-columns: 1fr; }
  .topbar-inner { display: none; }
  .section { padding: 60px 0; }
  .hero { padding: 60px 0; }
}
/* STORIES STYLE ANIMATION */
.reveal { 
  opacity: 0; 
  transform: translateY(40px) scale(0.95); 
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); 
  will-change: transform, opacity; 
}
.reveal.visible { 
  opacity: 1; 
  transform: translateY(0) scale(1); 
}

/* STAGGER FOR TIMELINE - STORIES STYLE */
.timeline-step.reveal:nth-child(1) { transition-delay: 0.1s; }
.timeline-step.reveal:nth-child(2) { transition-delay: 0.2s; }
.timeline-step.reveal:nth-child(3) { transition-delay: 0.3s; }
.timeline-step.reveal:nth-child(4) { transition-delay: 0.4s; }
.timeline-step.reveal:nth-child(5) { transition-delay: 0.5s; }
.timeline-step.reveal:nth-child(6) { transition-delay: 0.6s; }

/* Make timeline cards pop more on hover like stories */
.timeline-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 50px rgba(23, 40, 77, 0.18);
  border-left-color: var(--red);
  background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}
.contact-section {
  padding: 80px 0;
  background: var(--light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* PROCESS-STYLE ANIMATION BLOCKS */
.contact-info {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}
.contact-info:hover {
  transform: translateX(8px);
  border-left-color: var(--red);
  box-shadow: 0 20px 40px rgba(23, 40, 77, 0.12);
}
.contact-info h2 {
  font-size: 2rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.contact-email {
  margin: 20px 0;
  font-weight: 700;
  color: var(--blue);
  font-size: 1.1rem;
}

.form-wrapper {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: var(--transition);
}
.form-wrapper:hover {
  transform: translateY(-6px);
  border-top-color: var(--red);
  box-shadow: 0 20px 40px rgba(23, 40, 77, 0.12);
}

/* FILE UPLOAD STYLE */
.file-upload {
  margin-bottom: 16px;
}
.file-upload label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.file-upload input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  background: #fafafa;
  cursor: pointer;
  transition: var(--transition);
}
.file-upload input[type="file"]:hover {
  border-color: var(--blue);
  background: #f4f7fc;
}

/* STAGGER LIKE PROCESS PAGE */
.contact-info.reveal { transition-delay: 0.1s; }
.form-wrapper.reveal { transition-delay: 0.2s; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
/* CLIENT EVAL - RED EYEBROW LIKE SCREENSHOT */
.contact-info .eyebrow {
  color: var(--red); /* #d3141b */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 12px;
  display: block;
}
.contact-info h2 {
  font-size: clamp(28px, 3vw, 36px);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
#schools .partner-left { position: relative; }

.plane-wrapper {
  position: relative;
  width: 180px;
  height: 140px;
  margin-top: 30px;
}

.plane-img {
  width: 160px;
  height: auto;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 2;
  transform: rotate(-25deg);
  /* makes your black png white + adds glow for dark bg */
  filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(35, 85, 140, 1));
  animation: planeFly 3s ease-in-out infinite;
}

.plane-glow {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 140px;
  height: 100px;
  background: radial-gradient(circle, rgba(35, 85, 140, 0.7) 0%, transparent 70%);
  border-radius: 50%;
  animation: planePulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes planePulse {
 0%, 100% { transform: scale(1); opacity: 0.6; }
 50% { transform: scale(1.5); opacity: 1; }
}

@keyframes planeFly {
 0%, 100% { transform: rotate(-25deg) translateY(0px); }
 50% { transform: rotate(-20deg) translateY(-10px); }
}
.global-search-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 80px;
  z-index: 99;
}

.global-search-form {
  max-width: 800px;  /* BIGGER */
  width: 100%; /* TAKE ALL SPACE */
  margin: 0 auto;
  display: flex;
  align-items: center;
  border: 2px solid #000;
  border-radius: 999px;
  background: #f9f9f9;
  overflow: hidden;
  transition: var(--transition);
}

.global-search-form:focus-within {
  box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
  border-color: var(--navy);
}

.global-search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text);
}

.global-search-form input::placeholder {
  color: #b0b0b0;
  font-weight: 500;
}

.global-search-form button {
  background: #000;
  border: none;
  padding: 16px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 0 999px 999px 0;
}

.global-search-form button:hover {
  background: var(--red);
  transform: scale(1.05);
}

/* Search Results Dropdown */
.global-results {
  max-width: 1200px;  /* MATCH SEARCH BAR */
  width: 100%;
  margin: 12px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-height: 400px;
  overflow-y: auto;
  display: none;
}
.global-results.active { display: block; }
.global-result-item {
  padding: 14px 20px;
  border-bottom: 1px solid var(--light);
  cursor: pointer;
  transition: var(--transition);
  display: block;
  text-decoration: none;
}
.global-result-item:hover { background: var(--light); }
.global-result-item h4 { margin: 0 0 4px; color: var(--navy); font-size: 16px; font-weight: 700; }
.global-result-item p { margin: 0; color: var(--muted); font-size: 13px; }
.global-result-item span { color: var(--red); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.global-search-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 80px;
  z-index: 99;
  transition: transform 0.4s ease, opacity 0.4s ease; /* ADD THIS */
}
.brand {
  background: transparent !important;
  padding: 0 !important;
  cursor: default;
  display: flex;
  align-items: center;
}

.brand img:hover {
  transform: scale(1.03);
}

/* FIX FOOTER LOGO TOO - you had white bg on it */
.footer img {
  background: transparent !important; /* was #fff */
  border-radius: 0;
  padding: 0;
  height: 64px;
}

/* OPTIONAL: Make navbar less massive now that logo has space */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(0,0,0,.08); /* stronger shadow when scrolled */
}

.navbar.scrolled .nav-inner {
  height: 80px; /* shrinks from 180px to 80px */
  padding: 0 40px;
}

.navbar.scrolled .brand img {
  height: 60px; /* shrinks from 160px to 60px */
}

.navbar.scrolled .nav-links {
  margin-top: 0; /* centers links again */
}

/* Tablet + Mobile shrink too */
@media (max-width: 1024px) {
  .navbar.scrolled .nav-inner { height: 70px; }
  .navbar.scrolled .brand img { height: 50px; }
}

@media (max-width: 900px) {
  .navbar.scrolled .nav-inner { height: 65px; }
  .navbar.scrolled .brand img { height: 45px; }
}
.video-showcase {
  background: var(--light);
  padding: 70px 0; 
}

.video-wrapper {
  max-width: 600px; /* was 720px - now compact */
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(23, 40, 77, 0.14);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-showcase {
  background: var(--red); /* was var(--light) */
  padding: 70px 0;
  color: #fff; /* make text white on red */
}

.video-wrapper {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35); /* darker shadow for red bg */
  border: 3px solid #fff; /* optional: white border around video */
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Make the eyebrow/title/paragraph white */
.video-showcase .eyebrow {
  color: #ffccd0; /* light pink for contrast */
}
.video-showcase .section-title h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
}
.video-showcase .section-title p {
  color: #f0f5ff;
}
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none; /* stops people from right-clicking "save video" */
}
.floating-box span {
  line-height: 1.5;
}
/* FOOTER LOGO BOX - logo bigger inside tighter box */
.footer-logo-box {
  background: #ffffff;
  padding: 10px 14px; /* even tighter white background */
  border-radius: 14px; 
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.footer-logo-box img {
  height: 64px; /* bigger logo inside */
  width: auto;
  display: block;
}
.sector-slide {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.sector-slide:hover .sector-overlay {
  background: linear-gradient(to top, rgba(17,30,59,0.95) 0%, rgba(17,30,59,0.4) 100%);
}
.page-header {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
  text-align: center;
  background: none!important;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(17,30,59,0.94) 0%, rgba(35,85,140,0.90) 100%);
  z-index: 1;
}
.page-header-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.page-header-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.page-header-slide.active { opacity: 1; }
.page-header .container { position: relative; z-index: 2; }

.page-header .eyebrow {
  color: #ffccd0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: block;
}
.page-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}
.page-header p {
  color: #d0e0f5;
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* CATALOG SECTION */
.catalog-section { padding: 80px 0; background: var(--light); }

.sector-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--blue);
  transition: var(--transition);
}
.sector-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(23, 40, 77, 0.12);
  border-left-color: var(--red);
}

.sector-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  color: var(--navy);
  border-bottom: 2px solid var(--light);
  padding-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 800;
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.course-item {
  background: var(--light);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--blue);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.course-item:hover {
  background: #fff;
  border-left-color: var(--red);
  transform: translateX(4px);
}
.course-duration { color: var(--muted); font-size: 0.9rem; font-weight: 600; }

/* PARTNER LOGO GRID */
.partners-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
}
.partner-logo {
  background: var(--light);
  padding: 20px;
  border-radius: 12px;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  filter: grayscale(100%);
}
.partner-logo:hover {
  filter: grayscale(0%);
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow);
}
.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* STAGGER DELAY FOR 6 SECTORS */
.sector-block.reveal:nth-child(1) { transition-delay: 0.1s; }
.sector-block.reveal:nth-child(2) { transition-delay: 0.2s; }
.sector-block.reveal:nth-child(3) { transition-delay: 0.3s; }
.sector-block.reveal:nth-child(4) { transition-delay: 0.4s; }
.sector-block.reveal:nth-child(5) { transition-delay: 0.5s; }
.sector-block.reveal:nth-child(6) { transition-delay: 0.6s; }
.result-category {
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.global-result-item:hover.result-category { color: var(--blue); }
.video-showcase {
  padding: 80px 0;
  background: #f8f9fa;
}
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.hero-photo {
  background-position: center center !important;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Topbar Social - BRAND COLORS */
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: white; font-size: 18px; transition: 0.3s; }
.topbar-social a:hover { color: var(--blue); }

/* Footer Social - BRAND COLORS */
.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a {
  font-size: 20px;
  color: white;
  background: var(--blue);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.social-icons a:hover { background: var(--red); transform: scale(1.1); }
/* WHATSAPP - BIGGER ICON + SUPER CLOSE TO TEXT */
.search-with-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 2px; /* SUPER TIGHT - ALMOST TOUCHING */
  color: #25D366;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Inter', Arial, sans-serif;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.08);
  border: 2px solid rgba(37, 211, 102, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-cta img {
  width: 48px !important; /* EVEN BIGGER ICON */
  height: 48px !important;
  object-fit: contain;
  margin-right: -2px; /* PULLS TEXT EVEN CLOSER */
}

.whatsapp-cta:hover {
  color: #128C7E;
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .search-with-whatsapp {
    flex-direction: column;
    align-items: stretch;
  }
  .whatsapp-cta {
    justify-content: center;
  }
}
/* WHATSAPP + ALL COURSES BUTTONS - FINAL */
.search-with-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #25D366;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Inter', Arial, sans-serif;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.08);
  border: 2px solid rgba(37, 211, 102, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-cta img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
  margin-right: -2px;
}

.whatsapp-cta:hover {
  color: #128C7E;
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ALL COURSES - NO ICON, BIGGER PADDING */
.all-courses-cta {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 18px;
  font-family: 'Inter', Arial, sans-serif;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 14px 28px; /* BIGGER TO MATCH WHATSAPP HEIGHT */
  border-radius: 12px;
  background: rgba(35, 85, 140, 0.08);
  border: 2px solid rgba(35, 85, 140, 0.2);
  transition: all 0.3s ease;
}

.all-courses-cta:hover {
  color: var(--blue);
  background: rgba(35, 85, 140, 0.15);
  border-color: var(--blue);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(35, 85, 140, 0.3);
}
/* OVERRIDE the display:none from your 900px media query */
.gallery-item img { object-fit: cover; }
/* SCROLLER ARROWS - WHITE NAVY BUTTONS */
.sectors-scroller-wrapper { position: relative; }

.sectors-scroller-wrapper .scroller-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 30, 59, 0.75); /* Navy transparent */
  backdrop-filter: blur(10px);
  border: 2px solid #fff; /* White border */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  color: #fff; /* WHITE ARROW */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1!important;
}
.sectors-scroller-wrapper .scroller-btn:hover {
  background: var(--red); /* Red on hover */
  border-color: var(--red);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(211, 20, 27, 0.4);
}
.sectors-scroller-wrapper .scroller-btn.prev { left: 20px; }
.sectors-scroller-wrapper .scroller-btn.next { right: 20px; }

/* MOBILE - FORCE SHOW */
@media (max-width: 900px) {
 .sectors-scroller-wrapper .scroller-btn {
    display: flex!important;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
 .sectors-scroller-wrapper .scroller-btn.prev { left: 10px; }
 .sectors-scroller-wrapper .scroller-btn.next { right: 10px; }
}
/* ===== FORCE NAVY ARROWS - FINAL OVERRIDE ===== */
.sectors-scroller-wrapper .scroller-btn {
  background: rgba(17, 30, 59, 0.9) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 56px !important;
  height: 56px !important;
}
.sectors-scroller-wrapper .scroller-btn:hover {
  background: #d3141b !important;
  border-color: #d3141b !important;
}
@media (max-width: 900px) {
  .sectors-scroller-wrapper .scroller-btn {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
  }
}
/* ===== PRO CARDS + STAGGER ANIMATION ===== */
.pro-card { 
  background:#fff; 
  border:1px solid #E5E7EB; 
  border-radius:16px; 
  padding:28px 24px; 
  text-decoration:none; 
  color:inherit; 
  transition:all 0.3s ease; 
  text-align:left; 
  display:block;
  border-top: 4px solid var(--blue);
}
.pro-card:hover { 
  transform:translateY(-6px); 
  box-shadow:0 20px 40px rgba(23, 40, 77, 0.12); 
  border-top-color:var(--red);
}
.card-icon-flat { 
  font-size:40px; 
  color:var(--navy); 
  margin-bottom:16px; 
  display:block; 
}
.pro-card strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
}

/* STAGGER FOR THE 4 CARDS */
.overview-grid .pro-card.reveal:nth-child(1) { transition-delay: 0.1s; }
.overview-grid .pro-card.reveal:nth-child(2) { transition-delay: 0.2s; }
.overview-grid .pro-card.reveal:nth-child(3) { transition-delay: 0.3s; }
.overview-grid .pro-card.reveal:nth-child(4) { transition-delay: 0.4s; }