/* ==========================================================================
   TechnoBizz Paid Internship Program - Design System & Stylesheet
   Tailored for Indian Tech Demographic | Zero Emojis | Enterprise Vibe
   ========================================================================== */

:root {
  /* Brand Palette based on TechnoBizz Logo */
  --tb-red-primary: #C81E1E;
  --tb-red-dark: #991414;
  --tb-red-light: #FEE2E2;
  --tb-red-glow: rgba(200, 30, 30, 0.25);

  /* Deep Tech Neutral Palette */
  --tb-navy-950: #0A0F1D;
  --tb-navy-900: #0F172A;
  --tb-navy-800: #1E293B;
  --tb-navy-700: #334155;
  --tb-navy-600: #475569;
  --tb-navy-500: #64748B;
  --tb-navy-400: #94A3B8;
  --tb-navy-200: #E2E8F0;
  --tb-navy-100: #F1F5F9;
  --tb-navy-50: #F8FAFC;
  --tb-white: #FFFFFF;

  /* Accent Tech Colors */
  --tb-blue-accent: #0284C7;
  --tb-blue-light: #E0F2FE;
  --tb-emerald: #059669;
  --tb-emerald-light: #D1FAE5;
  --tb-amber: #D97706;
  --tb-amber-light: #FEF3C7;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(200, 30, 30, 0.18);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--tb-navy-800);
  background-color: var(--tb-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--tb-navy-950);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--tb-navy-600);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-container {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--tb-navy-700);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--tb-red-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--tb-red-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--tb-navy-900);
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--tb-red-primary);
  color: var(--tb-white);
  box-shadow: 0 4px 14px rgba(200, 30, 30, 0.3);
}

.btn-primary:hover {
  background-color: var(--tb-red-dark);
  box-shadow: 0 6px 20px rgba(200, 30, 30, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--tb-white);
  color: var(--tb-navy-800);
  border: 1px solid var(--tb-navy-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--tb-navy-50);
  border-color: var(--tb-navy-400);
  transform: translateY(-2px);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 80%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-glow:hover::before {
  transform: rotate(30deg) translateY(100%);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Pill Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-pill.pill-red {
  background-color: var(--tb-red-light);
  color: var(--tb-red-dark);
  border: 1px solid rgba(200, 30, 30, 0.2);
}

.badge-pill.pill-blue {
  background-color: var(--tb-blue-light);
  color: var(--tb-blue-accent);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.badge-pill.pill-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--tb-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(170deg, #FFFFFF 0%, #F8FAFC 50%, #EDF2F7 100%);
  padding-top: 3.5rem;
  padding-bottom: 5.5rem;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200, 30, 30, 0.05) 1px, transparent 1px), radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  pointer-events: none;
  opacity: 0.85;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3.35rem;
  font-weight: 800;
  line-height: 1.14;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--tb-navy-950);
}

.hero-title .highlight-red {
  color: var(--tb-red-primary);
  position: relative;
  display: inline-block;
}

.hero-program-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tb-navy-800);
  margin-bottom: 0.85rem;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--tb-navy-600);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-key-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--tb-navy-200);
}

.pillar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--tb-navy-700);
}

.pillar-item svg {
  color: var(--tb-red-primary);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Media Card */
.hero-media-wrapper {
  position: relative;
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.22);
  border: 4px solid var(--tb-white);
  background: var(--tb-white);
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.hero-media-card:hover .hero-image {
  transform: scale(1.02);
}

/* Floating Badges on Hero */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.9);
  z-index: 10;
  animation: floatBounce 4s ease-in-out infinite;
}

.hero-float-badge.badge-top {
  top: 24px;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-badge.badge-bottom {
  bottom: 24px;
  left: -20px;
  animation-delay: 2s;
}

.float-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--tb-red-light);
  color: var(--tb-red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-badge-icon.blue-bg {
  background: var(--tb-blue-light);
  color: var(--tb-blue-accent);
}

.float-badge-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tb-navy-950);
  line-height: 1.2;
}

.float-badge-sub {
  font-size: 0.75rem;
  color: var(--tb-navy-500);
}

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

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tb-red-primary);
  margin-bottom: 0.75rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--tb-red-primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--tb-navy-950);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--tb-navy-600);
  line-height: 1.65;
}

/* Highlights Grid (A Stronger Tomorrow - 8 Cards) */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background: var(--tb-white);
  border: 1px solid var(--tb-navy-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tb-red-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200, 30, 30, 0.3);
}

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

.highlight-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--tb-navy-50);
  border: 1px solid var(--tb-navy-200);
  color: var(--tb-red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
}

.highlight-card:hover .highlight-icon-box {
  background-color: var(--tb-red-primary);
  color: var(--tb-white);
  border-color: var(--tb-red-primary);
}

.highlight-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tb-navy-900);
  margin-bottom: 0.6rem;
}

.highlight-card-desc {
  font-size: 0.9rem;
  color: var(--tb-navy-600);
  line-height: 1.55;
}

/* Why TechnoBizz - Connected Ecosystem (Dark Section) */
.ecosystem-section {
  background-color: var(--tb-navy-950);
  color: var(--tb-white);
  position: relative;
  overflow: hidden;
}

.ecosystem-section .section-title {
  color: var(--tb-white);
}

.ecosystem-section .section-desc {
  color: var(--tb-navy-400);
}

.ecosystem-pipeline-wrapper {
  margin-top: 3rem;
  position: relative;
}

.pipeline-nodes-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pipeline-node {
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 70px 240px 1fr 200px;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
}

.pipeline-node:hover,
.pipeline-node.active {
  background: rgba(30, 41, 59, 0.95);
  border-color: var(--tb-red-primary);
  box-shadow: 0 10px 25px rgba(200, 30, 30, 0.2);
  transform: translateX(6px);
}

.node-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--tb-red-primary);
  opacity: 0.9;
}

.node-title-group h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--tb-white);
  margin-bottom: 0.25rem;
}

.node-title-group .node-scope {
  font-size: 0.8rem;
  color: var(--tb-navy-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.node-description {
  font-size: 0.92rem;
  color: var(--tb-navy-300);
  line-height: 1.5;
}

.node-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.tech-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.07);
  color: var(--tb-navy-200);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 6-Month Program Journey (Roadmap Step 1 to 6) */
.journey-section {
  background-color: var(--tb-navy-50);
}

.journey-timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative;
  margin-top: 3rem;
}

.journey-step-card {
  background: var(--tb-white);
  border: 1px solid var(--tb-navy-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.journey-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--tb-red-primary);
}

.step-badge-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tb-red-primary);
  color: var(--tb-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(200, 30, 30, 0.3);
}

.step-month-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tb-red-primary);
  margin-bottom: 0.4rem;
}

.step-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tb-navy-950);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-card-desc {
  font-size: 0.85rem;
  color: var(--tb-navy-600);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.step-outcomes {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--tb-navy-200);
  list-style: none;
}

.step-outcomes li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--tb-navy-700);
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.step-outcomes li svg {
  color: var(--tb-red-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Learning Tracks / Curriculum Section */
.curriculum-section {
  background-color: var(--tb-white);
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.curriculum-card {
  border: 1px solid var(--tb-navy-200);
  border-radius: var(--radius-lg);
  background: var(--tb-white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.curriculum-card:hover {
  transform: translateY(-6px);
  border-color: var(--tb-red-primary);
  box-shadow: var(--shadow-xl);
}

.curriculum-number {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tb-red-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.curriculum-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tb-navy-950);
  margin-bottom: 0.75rem;
}

.curriculum-intro {
  font-size: 0.92rem;
  color: var(--tb-navy-600);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.curriculum-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.curriculum-topic-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--tb-navy-700);
}

.curriculum-topic-item svg {
  color: var(--tb-red-primary);
  flex-shrink: 0;
}

/* Guaranteed Pipeline Banner / Talent-to-Employment */
.pipeline-commitment-box {
  margin-top: 4rem;
  background: linear-gradient(135deg, var(--tb-navy-900) 0%, var(--tb-navy-950) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: var(--tb-white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.commitment-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--tb-white);
  margin-bottom: 1rem;
}

.commitment-desc {
  font-size: 1.05rem;
  color: var(--tb-navy-300);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.commitment-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.c-step {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tb-white);
}

.c-arrow {
  color: var(--tb-red-primary);
}

.commitment-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.commitment-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--tb-navy-200);
}

.commitment-checklist li svg {
  color: #10B981;
  flex-shrink: 0;
}

/* Who Can Apply - Profiles */
.profiles-section {
  background-color: var(--tb-navy-50);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.profile-card {
  background: var(--tb-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--tb-navy-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200, 30, 30, 0.3);
}

.profile-photo-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--tb-navy-100);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.profile-card:hover .profile-photo {
  transform: scale(1.05);
}

.profile-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.profile-category-tag {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tb-red-primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.profile-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--tb-navy-950);
  margin-bottom: 0.65rem;
}

.profile-desc {
  font-size: 0.88rem;
  color: var(--tb-navy-600);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.profile-tags-row {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.p-tag {
  font-size: 0.72rem;
  background-color: var(--tb-navy-50);
  border: 1px solid var(--tb-navy-200);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--tb-navy-700);
  font-weight: 500;
}

/* Values Pill Row */
.values-container {
  margin-top: 3.5rem;
  background: var(--tb-white);
  border: 1px solid var(--tb-navy-200);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
}

.values-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tb-navy-900);
  margin-bottom: 1.25rem;
}

.values-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.value-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tb-navy-800);
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--tb-red-primary);
}

/* FAQs Section */
.faqs-section {
  background-color: var(--tb-white);
}

.faq-accordion {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--tb-navy-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--tb-red-primary);
}

.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--tb-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--tb-navy-900);
  transition: background-color var(--transition-fast);
}

.faq-header:hover {
  background-color: var(--tb-navy-50);
}

.faq-icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--tb-navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tb-navy-600);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.faq-item.open .faq-icon-toggle {
  transform: rotate(180deg);
  background-color: var(--tb-red-light);
  color: var(--tb-red-primary);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.5rem;
  background-color: var(--tb-navy-50);
}

.faq-item.open .faq-body {
  padding: 1.25rem 1.5rem;
}

.faq-body p {
  font-size: 0.95rem;
  color: var(--tb-navy-700);
  line-height: 1.65;
}

/* Bottom CTA Banner (with celebrating students) */
.bottom-cta-section {
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  background-color: var(--tb-navy-950);
  color: var(--tb-white);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.32) contrast(1.1);
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.8) 50%, rgba(10, 15, 29, 0.92) 100%);
  z-index: 2;
}

.cta-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--tb-white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-banner-desc {
  font-size: 1.15rem;
  color: var(--tb-navy-200);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Site Footer */
.site-footer {
  background-color: #080C16;
  color: var(--tb-navy-400);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
  background: white;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--tb-navy-400);
  margin-bottom: 1.25rem;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tb-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--tb-navy-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--tb-white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--tb-navy-400);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  color: var(--tb-red-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* Modal Overlay & Form */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 15, 29, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background-color: var(--tb-white);
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: scale(0.95) translateY(15px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-overlay.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--tb-navy-200);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.modal-header-text h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--tb-navy-950);
}

.modal-header-text p {
  font-size: 0.88rem;
  color: var(--tb-navy-600);
  margin-top: 0.25rem;
}

.modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--tb-navy-500);
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--tb-navy-100);
  color: var(--tb-navy-900);
}

.modal-body {
  padding: 2rem;
}

.application-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tb-navy-800);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--tb-navy-200);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--tb-navy-900);
  background-color: var(--tb-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--tb-red-primary);
  box-shadow: 0 0 0 3px rgba(200, 30, 30, 0.12);
}

.form-phone-group {
  display: flex;
  gap: 0.5rem;
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  background-color: var(--tb-navy-50);
  border: 1px solid var(--tb-navy-200);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tb-navy-700);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--tb-navy-600);
  cursor: pointer;
}

.form-checkbox-label input {
  margin-top: 3px;
  accent-color: var(--tb-red-primary);
}

.modal-footer {
  padding: 1.25rem 2rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Success Modal State */
.modal-success-content {
  text-align: center;
  padding: 3rem 2rem;
  display: none;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--tb-emerald-light);
  color: var(--tb-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.reveal-fade.revealed {
  opacity: 1;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Responsive Media Queries */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-media-wrapper {
    max-width: 580px;
    margin: 0 auto;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .commitment-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pipeline-node {
    grid-template-columns: 60px 180px 1fr;
  }
  .node-tags {
    grid-column: span 3;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--tb-white);
    border-bottom: 1px solid var(--tb-navy-200);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.mobile-active {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .mobile-toggle {
    display: block;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .journey-timeline-grid {
    grid-template-columns: 1fr;
  }
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
  .profiles-grid {
    grid-template-columns: 1fr;
  }
  .pipeline-node {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .pipeline-commitment-box {
    padding: 2rem 1.5rem;
  }
  .application-form {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-float-badge.badge-top,
  .hero-float-badge.badge-bottom {
    position: static;
    margin-top: 1rem;
    animation: none;
  }
}
