/* 
  FTH Skills - Enablers Theme Component Styles
*/

/* 1. TOP UTILITY ANNOUNCEMENT BAR (ANIMATED ENABLERS COLOR SHIFT) */
@keyframes topBarGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseGlowBtn {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.top-bar {
  background: linear-gradient(-45deg, #0B132B, #D90429, #0066FF, #1C2541, #EF233C);
  background-size: 400% 400%;
  animation: topBarGradientShift 8s ease infinite;
  color: #FFFFFF;
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.25);
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-tag {
  background-color: #FFFFFF;
  color: var(--accent-crimson);
  font-size: 0.725rem;
  font-weight: 900;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.ticker-register-btn {
  background-color: #FFB703;
  color: #0B132B;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseGlowBtn 2s infinite;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  margin-left: 0.5rem;
  transition: var(--transition-fast);
}

.ticker-register-btn:hover {
  background-color: #FFFFFF;
  color: var(--accent-crimson);
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.top-bar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #CBD5E1;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.top-bar-contacts a:hover {
  color: #FFFFFF;
}

/* 2. MAIN HEADER & NAVIGATION */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 25px rgba(11, 19, 43, 0.06);
  transition: var(--transition-fast);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 92px;
}

.nav-logo {
  margin-right: 3rem;
}

.nav-logo img {
  height: 88px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.05));
}

.nav-logo img:hover {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0B132B;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D90429 0%, #0066FF 100%);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #0066FF;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* HEADER RED ACCENT STRIP */
.header-red-accent-line {
  height: 3px;
  background: linear-gradient(90deg, #D90429 0%, #0066FF 60%, transparent 100%);
  width: 100%;
}

/* 3. HERO SECTION (PREMIUM TIER-1 CORPORATE LAYOUT) */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #EDF2F7 100%);
  color: var(--text-dark);
  padding: 4.8rem 0 5.8rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-left-col h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.85rem;
  font-weight: 900;
  color: #0B132B;
  line-height: 1.18;
  margin-bottom: 1.2rem;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.hero-left-col h1 span.text-highlight {
  background: linear-gradient(135deg, #0066FF 0%, #D90429 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left-col p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* 4 IMPACT STATS CARDS GRID IN HERO LEFT COLUMN */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 0.9rem 0.85rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(11, 19, 43, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(11, 19, 43, 0.1);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
}

.card-accent-red::before { background: linear-gradient(90deg, #D90429, #FF4D6D); }
.card-accent-gold::before { background: linear-gradient(90deg, #D4AF37, #FFB703); }
.card-accent-green::before { background: linear-gradient(90deg, #10B981, #34D399); }
.card-accent-blue::before { background: linear-gradient(90deg, #0066FF, #38BDF8); }

.stat-card-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.2rem;
  letter-spacing: -0.5px;
}

.stat-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.3;
}

/* 4 RECOGNITION SEALS / AWARD BADGES GRID */
.hero-seals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.seal-item {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  padding: 0.9rem 0.8rem;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 14px rgba(11, 19, 43, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.seal-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.seal-badge-crimson::before { background: linear-gradient(90deg, #D90429, #FF4D6D); }
.seal-badge-gold::before { background: linear-gradient(90deg, #D4AF37, #FFB703); }
.seal-badge-blue::before { background: linear-gradient(90deg, #0066FF, #38BDF8); }
.seal-badge-green::before { background: linear-gradient(90deg, #10B981, #34D399); }

.seal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(11, 19, 43, 0.12);
  border-color: rgba(0, 102, 255, 0.3);
}

.seal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.seal-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seal-icon-red { background: rgba(217, 4, 41, 0.1); color: #D90429; }
.seal-icon-amber { background: rgba(255, 183, 3, 0.15); color: #D4AF37; }
.seal-icon-azure { background: rgba(0, 102, 255, 0.1); color: #0066FF; }
.seal-icon-emerald { background: rgba(16, 185, 129, 0.12); color: #10B981; }

.seal-year-pill {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  text-transform: uppercase;
}

.pill-red { background: rgba(217, 4, 41, 0.1); color: #D90429; }
.pill-gold { background: rgba(212, 175, 55, 0.15); color: #B48811; }
.pill-blue { background: rgba(0, 102, 255, 0.1); color: #0066FF; }
.pill-green { background: rgba(16, 185, 129, 0.12); color: #059669; }

.seal-body-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.seal-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.725rem;
  font-weight: 900;
  color: #0B132B;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.seal-sub-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* RIGHT HERO BANNER CARD (EXACT ENABLERS ROYAL BLUE CAROUSEL CARD) */
.enablers-hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(11, 19, 43, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #0B132B 0%, #0044B3 60%, #0066FF 100%);
  color: #FFFFFF;
}

.enablers-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.enablers-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.65;
  filter: contrast(1.05) brightness(0.95);
}

.enablers-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(11, 19, 43, 0.4) 0%, rgba(11, 19, 43, 0.75) 60%, rgba(11, 19, 43, 0.95) 100%);
}

.enablers-card-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.enablers-card-title-super {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.enablers-card-title-main {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.enablers-card-title-main span.text-yellow {
  color: #FFB703;
}

.enablers-card-action {
  margin-bottom: 2.5rem;
}

.btn-hero-apply {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero-apply:hover {
  background: #FFFFFF;
  color: #0B132B;
  transform: translateY(-2px);
}

.enablers-card-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.enablers-carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.enablers-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.enablers-carousel-dots .dot.active {
  width: 24px;
  border-radius: 99px;
  background: #FFFFFF;
}

.enablers-gpt-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #0B132B;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.enablers-gpt-badge:hover {
  transform: scale(1.05);
}

/* 4. RECOGNITION SEALS & ACCREDITATION STRIP (UNDER HERO) */
.seals-overlap-bar {
  background-color: #FFFFFF;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.8rem 2rem;
  border: 1px solid var(--border-light);
}

.seals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* 4. STATS COUNTER BAR */
.stats-bar {
  background-color: #FFFFFF;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-light);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* 5. INSTITUTIONAL COLLABORATIONS SHOWCASE */
.collab-section {
  background-color: var(--bg-light);
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.4rem;
  margin: 0.75rem 0;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.collab-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.collab-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(11, 19, 43, 0.1);
  border-color: rgba(0, 102, 255, 0.3);
}

.collab-card img {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.collab-card img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.collab-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-blue);
  background-color: rgba(0, 102, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* 6. SERVICES SHOWCASE GRID (ENTERPRISE AGENCY STYLING) */
.services-section {
  background-color: #FFFFFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(11, 19, 43, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-crimson));
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(11, 19, 43, 0.12);
  border-color: rgba(0, 102, 255, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(217, 4, 41, 0.06) 100%);
  border: 1px solid rgba(0, 102, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.08);
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.service-feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
  margin-top: auto;
}

.tech-tag {
  font-size: 0.725rem;
  font-weight: 700;
  background-color: rgba(15, 23, 42, 0.05);
  color: var(--text-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* 7. TRAININGS & COURSE OUTLINE CATALOG (ENTERPRISE ACADEMY STYLING) */
.trainings-section {
  background-color: var(--bg-light);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 2.2rem;
  margin-top: 2rem;
}

.course-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(11, 19, 43, 0.06);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(11, 19, 43, 0.15);
  border-color: rgba(0, 102, 255, 0.3);
}

/* PREMIUM DARK GRADIENT CARD HEADER */
.course-card-top {
  padding: 2rem 1.8rem 1.6rem 1.8rem;
  background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  color: #FFFFFF;
  position: relative;
}

.course-card-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.course-card-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38BDF8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.course-card-icon-box svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.course-title-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.course-subtitle-text {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

/* SLEEK METRICS STRIP IN HEADER */
.course-metrics-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #E2E8F0;
}

.metric-pill svg {
  width: 15px;
  height: 15px;
  color: #38BDF8;
  flex-shrink: 0;
}

/* CARD BODY WITH CHECKLIST & ACCORDION */
.course-card-body {
  padding: 1.6rem 1.8rem 1.8rem 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.highlight-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.outline-timeline-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-blue);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.timeline-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  transition: var(--transition-fast);
  overflow: hidden;
}

.timeline-item.active {
  border-color: rgba(0, 102, 255, 0.4);
  border-left: 3px solid var(--brand-blue);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.08);
}

.timeline-header {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.timeline-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.module-num-badge {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item.active .module-num-badge {
  background: var(--brand-blue);
  color: #FFFFFF;
}

.module-title-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.timeline-item.active .module-title-text {
  color: var(--brand-blue);
}

.chevron-icon {
  width: 16px;
  height: 16px;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.timeline-item.active .chevron-icon {
  transform: rotate(180deg);
  color: var(--brand-blue);
}

.timeline-content {
  display: none;
  padding: 0.8rem 1rem 1rem 3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px dashed var(--border-light);
  background-color: #FAFAFA;
}

.timeline-item.active .timeline-content {
  display: block;
}

/* 8. REAL GALLERY & PROOF SHOWCASE */
.gallery-section {
  background-color: #FFFFFF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 260px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(11, 19, 43, 0.9) 0%, rgba(0,0,0,0) 100%);
  color: #FFFFFF;
  padding: 1.2rem 1rem 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

/* 9. MODALS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 19, 43, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #FFFFFF;
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  color: #FFFFFF;
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  color: #FFFFFF;
  font-size: 1.3rem;
}

.modal-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.8;
}

.modal-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

/* 10. FLOATING ACTION WIDGETS */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-phone {
  background-color: var(--brand-blue);
}

/* FOOTER */
.site-footer {
  background-color: var(--primary-navy);
  color: #94A3B8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* 11. WHY CHOOSE FTH SKILLS (ENTERPRISE ECOSYSTEM STYLING) */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.why-choose-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(11, 19, 43, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.why-choose-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent-crimson));
  opacity: 0;
  transition: var(--transition-fast);
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(11, 19, 43, 0.12);
  border-color: rgba(0, 102, 255, 0.25);
}

.why-choose-card:hover::after {
  opacity: 1;
}

.why-choose-icon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.why-choose-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(217, 4, 41, 0.06) 100%);
  border: 1px solid rgba(0, 102, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.08);
}

.why-choose-icon-box svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.why-choose-pillar-tag {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(0, 102, 255, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  border: 1px solid rgba(0, 102, 255, 0.15);
}

.why-choose-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.why-choose-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.why-choose-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--border-light);
}

.why-choose-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.why-choose-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* 12. WHAT WE OFFER SECTION (ENABLERS SIGNATURE SPLIT SHOWCASE) */
.what-we-offer-section {
  background-color: #FFFFFF;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.what-we-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.8rem;
}

.offer-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(11, 19, 43, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(11, 19, 43, 0.14);
  border-color: rgba(0, 102, 255, 0.3);
}

.offer-card-header {
  padding: 2.2rem 2.2rem 1.6rem 2.2rem;
  background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  color: #FFFFFF;
  position: relative;
}

.offer-card-header.header-red {
  background: linear-gradient(135deg, #0B132B 0%, #D90429 100%);
}

.offer-card-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.offer-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38BDF8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.offer-icon-box svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.offer-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  margin-bottom: 0.4rem;
}

.offer-subtitle {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.5;
}

.offer-card-body {
  padding: 2rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-desc-text {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.offer-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.offer-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.offer-bullet-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.offer-card-footer {
  margin-top: auto;
}

/* 13. CEO & FOUNDER MISSION SHOWCASE (NAEEM QAYYUM FOCUS) */
.ceo-mission-section {
  background: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  color: #FFFFFF;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-mission-section::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 4, 41, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ceo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.ceo-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: var(--secondary-navy);
}

.ceo-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}

.ceo-image-wrapper:hover img {
  transform: scale(1.03);
}

.ceo-badge-simple {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 19, 43, 0.9);
  backdrop-filter: blur(12px);
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.ceo-badge-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.ceo-badge-sub {
  font-size: 0.8rem;
  color: #FFB703;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.ceo-content-col h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.ceo-content-col h3 {
  font-size: 1.15rem;
  color: #FFB703;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.8rem;
}

.ceo-quote-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--accent-crimson);
  padding: 1.4rem 1.6rem;
  border-radius: 0 16px 16px 0;
  margin-bottom: 1.8rem;
}

.ceo-quote-text {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.6;
}

.ceo-bio-text {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.ceo-stats-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-pillar-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.ceo-pillar-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #38BDF8;
}

.ceo-pillar-lbl {
  font-size: 0.75rem;
  color: #CBD5E1;
  font-weight: 700;
  margin-top: 0.2rem;
}

/* 14. AFFILIATE PROGRAM SECTION & TWO-BOX MODAL */
.affiliate-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.affiliate-benefit-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(11, 19, 43, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.affiliate-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(11, 19, 43, 0.12);
  border-color: rgba(0, 102, 255, 0.3);
}

.affiliate-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 102, 255, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-box-card {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.6rem;
  margin-bottom: 1.6rem;
}

.form-box-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1.5px solid #E2E8F0;
}

.form-box-header h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 768px) {
  .affiliate-grid {
    grid-template-columns: 1fr !important;
  }
  .form-grid-2col {
    grid-template-columns: 1fr !important;
  }
}
