/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  /* Typography */
  --font-family: 'Poppins', sans-serif;
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Color Palette */
  --primary-blue: #4f72b8;
  --primary-green: #4f72b8;
  --primary-hover: #3d5a94;
  --primary-dark: #030213;
  --dark-forest: #030213;
  --secondary-mint: #f0f4fa;
  --background-white: #FFFFFF;
  --bg-white: #ffffff;
  --bg-alternate: #F8F8F8;
  --bg-light: #F8F8F8;
  --bg-dark: #030213;
  --soft-gray: #F5F5F5;
  --muted-gray: #ECECF0;
  --border-color: rgba(0, 0, 0, 0.1);
  --border-light: rgba(0, 0, 0, 0.1);
  --border-mint: rgba(79, 114, 184, 0.15);
  --accent-gold: #e3a539;
  --text-main: #030213;
  --text-muted: #666666;
  --text-light: #9ca3af;

  /* Gradients */
  --apply-gradient: linear-gradient(135deg, #5274b9 0%, #e3a539 100%);
  --cta-gradient: linear-gradient(135deg, #5274b9 0%, #e3a539 100%);
  --stats-bg: linear-gradient(135deg, #4e71b7 0%, #3d5a94 100%);
  --gradient-green: linear-gradient(135deg, #5274b9 0%, #e3a539 100%);
  --gradient-dark: linear-gradient(135deg, #4e71b7 0%, #3d5a94 100%);
  --gradient-soft: linear-gradient(180deg, #F8F8F8 0%, #ffffff 100%);
  --gradient-glow: radial-gradient(circle, rgba(79,114,184,0.15) 0%, rgba(255,255,255,0) 70%);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-default: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(79, 114, 184, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 14px 30px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 25px rgba(79, 114, 184, 0.2);

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

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
}

/* ==========================================================================
   GLOBAL RESET & BASICS
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--primary-dark);
  background-color: var(--background-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   UTILITY CLASSES & REUSABLE COMPONENTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 50px 0;
}

/* Section Background Alternation */
.bg-white {
  background-color: var(--background-white);
}

.bg-alt {
  background-color: var(--bg-alternate);
}

/* Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary-blue);
}

.section-subtitle {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn i {
  margin-left: 8px;
  font-size: 12px;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--background-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-apply {
  background: linear-gradient(135deg, #4f72b8 0%, #e3a539 100%);
  color: var(--background-white) !important;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(79, 114, 184, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-apply i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--background-white);
}

.btn-white {
  background-color: var(--background-white);
  color: var(--primary-blue) !important;
  font-weight: 700;
  border: 2px solid var(--background-white);
  border-radius: 30px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white i {
  margin-left: 8px;
  color: var(--primary-blue) !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-white:hover {
  background-color: transparent !important;
  color: var(--background-white) !important;
  border-color: var(--background-white) !important;
}

.btn-white:hover i {
  color: var(--background-white) !important;
}

.btn-white-outline {
  background-color: transparent;
  color: var(--background-white);
  border: 2px solid var(--background-white);
}

.btn-white-outline:hover {
  background-color: var(--background-white) !important;
  color: var(--primary-blue) !important;
}


/* Card Styling */
.card {
  background-color: var(--background-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-default);
  padding: 24px;
}

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ==========================================================================
   SECTION 1: NAVBAR
   ========================================================================== */
.top-bar {
  background-color: var(--primary-blue);
  color: var(--background-white);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 20px;
}

.top-bar-left a, .top-bar-right a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left i, .top-bar-right i {
  color: var(--background-white);
  opacity: 0.8;
}

.header-nav {
  background-color: var(--background-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

.header-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 48px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

/* Navbar Dropdown styling (Desktop hover) */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-trigger i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1120px, calc(100vw - 32px));
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  z-index: 999;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 25px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-column h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1.5px solid rgba(79, 114, 184, 0.12);
  padding-bottom: 6px;
}

.dropdown-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-column ul li a {
  font-size: 13px;
  color: #555;
  font-weight: 400;
  transition: all 0.2s ease;
  display: block;
}

.dropdown-column ul li .course-name {
  font-size: 13px;
  color: #555;
  font-weight: 400;
  display: block;
  line-height: 1.35;
}

.dropdown-column ul li a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}


.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-dark);
  cursor: pointer;
}

/* ==========================================================================
   SECTION 2: HERO
   ========================================================================== */
.hero-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.hero-left h1 span.blue-text {
  color: var(--primary-blue);
}

.hero-left h1 span.gold-text {
  color: var(--accent-gold);
}

.hero-left .hero-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.bullet-item i {
  color: var(--primary-blue);
  background-color: rgba(94, 121, 176, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Hero Right Image & Stat Overlay */
.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image-container {
  position: relative;
  width: 90%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  overflow: visible;
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

/* Stat Cards overlay style */
.stat-card-overlay {
  position: absolute;
  background-color: var(--background-white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.stat-card-overlay .stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(94, 121, 176, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.stat-card-overlay:nth-child(2) .stat-icon {
  background-color: rgba(216, 166, 58, 0.1);
  color: var(--accent-gold);
}

.stat-card-overlay:nth-child(3) .stat-icon {
  background-color: rgba(75, 180, 94, 0.1);
  color: #4bb45e;
}

.stat-card-overlay .stat-info {
  display: flex;
  flex-direction: column;
}

.stat-card-overlay .stat-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.stat-card-overlay .stat-label {
  font-size: 11px;
  color: #666;
  font-weight: 500;
}

/* Floating Card Positions */
.stat-card-overlay.card-1 {
  top: 15%;
  right: -5%;
}

.stat-card-overlay.card-2 {
  bottom: 25%;
  right: -8%;
}

.stat-card-overlay.card-3 {
  bottom: 8%;
  left: -8%;
}

/* ==========================================================================
   LOGO TICKER SECTION (Infinite scrolling partner logos)
   ========================================================================== */
.logo-ticker-section {
  padding: 24px 0;
  background-color: var(--background-white);
  border-top: 1px solid var(--muted-gray);
  border-bottom: 1px solid var(--muted-gray);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-ticker-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scroll-left-logo 30s linear infinite;
}

.logo-ticker-track:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 28px;
  width: auto;
}

.logo-item img {
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll-left-logo {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 30px));
  }
}

/* ==========================================================================
   SECTION 3: FEATURES
   ========================================================================== */
.features-section {
  padding: 30px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.feature-box {
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-default);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-box .icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(94, 121, 176, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.feature-box p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 4: WHY CHOOSE US
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 50px;
  align-items: center;
}

.why-us-image-col {
  position: relative;
  width: 100%;
}

.why-us-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.collage-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.collage-frame {
  background-color: var(--soft-gray);
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.collage-frame::after {
  content: '\f03e'; /* FontAwesome image icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 24px;
  color: rgba(0, 0, 0, 0.15);
}

.collage-frame.frame-1 { height: 150px; }
.collage-frame.frame-2 { height: 210px; }
.collage-frame.frame-3 { height: 210px; }
.collage-frame.frame-4 { height: 150px; }

.why-us-content .section-tag {
  margin-bottom: 8px;
}

.why-us-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.why-us-content h2 span {
  color: var(--primary-blue);
}

.why-us-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.6;
}

.why-us-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.point-item i {
  color: var(--primary-blue);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.point-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* ==========================================================================
   SECTION 5: PROGRAMS (TRAINING DOMAINS)
   ========================================================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.programs-grid.bottom-row {
  grid-template-columns: repeat(2, 1fr);
  width: 68%;
  margin: 0 auto;
}

.program-card {
  background-color: var(--background-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-default);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.program-card .program-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.program-card.tech .program-icon { background-color: #edf2ff; color: #3b82f6; }
.program-card.web .program-icon { background-color: #f3e8ff; color: #a855f7; }
.program-card.data .program-icon { background-color: #d1fae5; color: #10b981; }
.program-card.business .program-icon { background-color: #ffedd5; color: #f97316; }
.program-card.creative .program-icon { background-color: #e0f2fe; color: #0ea5e9; }

.program-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.program-courses {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.program-courses li {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
  white-space: nowrap;
}

.program-courses li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-size: 14px;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tag-pill {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--primary-blue);
  background-color: rgba(79, 114, 184, 0.08);
  padding: 5px 10px;
  border-radius: 50px;
  border: 1px solid rgba(79, 114, 184, 0.15);
}

.program-card .btn {
  width: 100%;
  justify-content: space-between;
  padding: 10px 20px;
}

/* ==========================================================================
   SECTION: CAREER PROSPECTS & SALARY TRENDS
   ========================================================================== */
.career-prospects {
  padding: 80px 0;
}

.career-card {
  background-color: var(--background-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-default);
  padding: 40px;
}

.col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.career-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.career-tab {
  background-color: transparent;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.career-tab:hover {
  background-color: rgba(79, 114, 184, 0.08);
  transform: translateY(-1px);
}

.career-tab.active {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--background-white);
  box-shadow: 0 4px 12px rgba(79, 114, 184, 0.2);
}

/* Salary Chart */
.salary-chart-wrapper {
  padding: 20px 10px 10px;
}

.salary-chart {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 180px;
  margin-bottom: 12px;
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 8px;
}

.chart-bar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 15%;
  height: 100%;
  justify-content: flex-end;
  transform: translateZ(0);
}

.chart-bar {
  background-color: var(--primary-blue);
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: height;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  opacity: 0.85;
}

.chart-bar.bar-avg {
  background-color: var(--accent-gold);
}

.bar-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
  white-space: nowrap;
}

.invisible-value {
  visibility: hidden;
}

.bar-label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  margin-top: 8px;
  white-space: nowrap;
}

.chart-source {
  font-size: 12px;
  font-weight: 500;
  color: #777;
  margin-top: 10px;
}

/* Companies Image Wrapper */
.companies-image-wrapper {
  padding: 10px;
  min-height: 242px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.companies-group-img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.companies-group-img:hover {
  transform: scale(1.02);
}

/* Custom styled text logos for placeholders */
.company-logo-accenture,
.company-logo-capgemini,
.company-logo-ibm,
.company-logo-deloitte,
.company-logo-google,
.company-logo-microsoft,
.company-logo-amazon,
.company-logo-meta,
.company-logo-aws,
.company-logo-redhat,
.company-logo-oracle,
.company-logo-cisco,
.company-logo-adobe,
.company-logo-figma,
.company-logo-canva,
.company-logo-salesforce {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.company-logo-card i {
  font-size: 14px;
  opacity: 0.8;
}

/* Brands color specific tweaks */
.company-logo-accenture i { color: #a124db; }
.company-logo-capgemini { color: #0070ad; }
.company-logo-ibm { font-family: 'Impact', 'Arial Black', sans-serif; font-size: 20px; color: #0f62fe; letter-spacing: 0.5px; }
.company-logo-deloitte { font-family: 'Georgia', serif; font-size: 16px; }
.deloitte-dot { color: #86bc25; font-weight: 900; }
.company-logo-google i { color: #4285f4; }
.company-logo-microsoft i { color: #f25022; }
.company-logo-amazon i { color: #ff9900; }
.company-logo-meta i { color: #0668e1; }
.company-logo-aws i { color: #ff9900; }
.company-logo-redhat i { color: #cc0000; }
.company-logo-oracle { color: #ff0000; font-family: 'Georgia', serif; font-style: italic; }
.company-logo-cisco i { color: #00b4d8; }
.company-logo-adobe i { color: #ff0000; }
.company-logo-figma i { color: #f24e1e; }
.company-logo-canva i { color: #00c4cc; }
.company-logo-salesforce i { color: #00a1e0; }

/* ==========================================================================
   SECTION 6: CERTIFICATION
   ========================================================================== */
.certificate-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.certificate-container:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
}

.certificate-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(216, 166, 58, 0) 0%,
    rgba(216, 166, 58, 0.02) 25%,
    rgba(216, 166, 58, 0.14) 50%,
    rgba(255, 223, 120, 0.10) 55%,
    rgba(216, 166, 58, 0.02) 75%,
    rgba(216, 166, 58, 0) 100%
  );
  transform: skewX(-30deg);
  pointer-events: none;
  z-index: 3;
  animation: sweep-shine 6s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes sweep-shine {
  0% {
    left: -150%;
  }
  45% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.certificate-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* Cert Features Grid */
.cert-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cert-feat-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cert-feat-card i {
  color: var(--accent-gold);
  background-color: rgba(216, 166, 58, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cert-feat-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.cert-feat-info p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.cert-actions {
  margin-top: 28px;
}

.cert-actions .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 114, 184, 0.25);
}

.cert-actions .btn i {
  transition: transform 0.3s ease;
}

.cert-actions .btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .cert-actions {
    text-align: center;
  }
  .cert-actions .btn {
    width: 100%;
  }
}

.download-certificate {
  min-height: 60vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

/* Certificate Directory Card */
.certificate-directory-card {
  background: var(--background-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-default);
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.certificate-directory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--apply-gradient);
}

.directory-header {
  margin-bottom: 24px;
}

.directory-header .directory-icon {
  font-size: 40px;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.directory-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.directory-header p {
  font-size: 14px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.directory-search-form {
  display: flex;
  gap: 12px;
  max-width: 750px;
  margin: 0 auto 10px auto;
}

@media (max-width: 768px) {
  .directory-search-form {
    flex-direction: column;
    gap: 12px;
  }
}


.search-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
}

.search-input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--primary-dark);
  background-color: var(--soft-gray);
  transition: all 0.3s ease;
  outline: none;
}

.search-input-wrapper input:focus {
  border-color: var(--primary-blue);
  background-color: var(--background-white);
  box-shadow: 0 0 0 4px rgba(79, 114, 184, 0.15);
}

.btn-search-cert {
  padding: 14px 28px;
}

/* Result styles */
.directory-result {
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  border: 1px solid var(--border-color);
  animation: fadeIn 0.4s ease;
  background-color: #fafafa;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.result-status {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.status-live {
  background-color: rgba(75, 180, 94, 0.1);
  color: #2e7d32;
}

.status-pending {
  background-color: rgba(216, 166, 58, 0.1);
  color: #b7791f;
}

.result-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
}

.result-actions {
  display: flex;
  gap: 12px;
}

.result-pending-message {
  font-size: 13px;
  color: #64748b;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-pending-message i {
  color: var(--accent-gold);
}

.result-error {
  text-align: center;
  padding: 20px;
  color: #ef4444;
}

.result-error i {
  font-size: 30px;
  margin-bottom: 10px;
}

.result-error p {
  font-weight: 500;
  margin-bottom: 4px;
}

.result-error span {
  font-size: 13px;
  color: #64748b;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   SECTION 7: INTERNSHIP JOURNEY
   ========================================================================== */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.journey-card {
  background-color: var(--background-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-default);
  padding: 32px 24px;
  position: relative;
  overflow: visible;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 16px 36px rgba(3, 2, 19, 0.12);
  border-color: rgba(79, 114, 184, 0.2);
}

@media (min-width: 992px) {
  .journey-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -24px;
    width: 24px;
    height: 2px;
    background-color: #c9cfdc;
    z-index: -1;
  }
  
  .col-lg-4:nth-child(3n) .journey-card::after {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .journey-card::after {
    display: none !important;
  }
}

.journey-card .step-num {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #8b92a5 0%, #c49c5e 100%);
  color: var(--background-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.journey-card .icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: #f3f6f9;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 6px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, background-color 0.3s ease;
}

.journey-card:hover .icon-wrapper {
  transform: scale(1.15) rotate(8deg);
  background-color: rgba(79, 114, 184, 0.1);
  color: var(--primary-blue);
}

.journey-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.journey-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 8: STATS (OUR RECORD OF EXCELLENCE)
   ========================================================================== */
.stats-section {
  background-color: var(--primary-blue);
  color: var(--background-white);
  text-align: center;
  padding: 85px 0;
}

.stats-section .section-header h2{
  color: var(--background-white);
}

.stats-section .section-header h2 span{
  color: var(--accent-gold);
}

.stats-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

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

.stat-box {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}

.stat-box i {
  font-size: 24px;
  color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.stat-box h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--background-white);
}

.stat-box p {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   SECTION 9: TESTIMONIALS
   ========================================================================== */
.section-header h2 span {
  color: var(--primary-blue);
}

.header-line {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 12px auto 20px auto;
  width: 80px;
  height: 4px;
}

.header-line .line-blue {
  width: 50%;
  height: 100%;
  background-color: var(--primary-blue);
  border-radius: 4px 0 0 4px;
}

.header-line .line-orange {
  width: 50%;
  height: 100%;
  background-color: var(--accent-gold);
  border-radius: 0 4px 4px 0;
}

.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 40px 10px 40px 10px;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.testimonial-card-container {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  --card-theme-color: #4F72B8;
}

.testimonial-card-container.active {
  transform: scale(1.12);
  --card-theme-color: #e3a539;
  z-index: 5;
}

.testimonial-card {
  background-color: var(--background-white);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 46px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card-container.active .testimonial-card {
  box-shadow: 0 15px 40px rgba(227, 165, 57, 0.12);
  border-color: rgba(227, 165, 57, 0.15);
}

.testimonial-card-container::before,
.testimonial-card-container::after {
  content: '';
  position: absolute;
  background-color: var(--card-theme-color);
  border-radius: 24px;
  z-index: 1;
  transition: background-color 0.4s ease, transform 0.4s ease;
}

/* Top Right Accent */
.testimonial-card-container::before {
  top: 4px;
  right: 4px;
  width: 58%;
  height: 58%;
  border-radius: 0 24px 0 24px;
}

/* Bottom Left Accent */
.testimonial-card-container::after {
  bottom: 4px;
  left: 4px;
  width: 58%;
  height: 58%;
  border-radius: 24px 0 24px 0;
}

/* Floating User Info Badge at the Top */
.test-user-badge {
  position: absolute;
  top: -24px;
  left: 28px;
  background-color: var(--background-white);
  border-radius: 50px;
  padding: 6px 24px 6px 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card-container.active .test-user-badge {
  box-shadow: 0 8px 24px rgba(227, 165, 57, 0.15);
  border-color: rgba(227, 165, 57, 0.2);
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--card-theme-color);
  color: var(--background-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background-color 0.4s ease;
}

.test-user-info {
  text-align: left;
}

.test-user-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1.2;
}

.test-user-info p {
  font-size: 11px;
  font-weight: 600;
  color: var(--card-theme-color);
  margin: 2px 0 0 0;
  transition: color 0.4s ease;
}

/* Testimonial Elements */
.quote-icon-left {
  color: var(--card-theme-color);
  opacity: 0.2;
  font-size: 26px;
  text-align: left;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.test-text {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 0;
  font-style: normal;
  flex-grow: 1;
}

.card-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  border-top: 1px solid #ECECF0;
  padding-top: 16px;
}

.test-stars {
  color: var(--accent-gold);
  font-size: 12px;
  display: flex;
  gap: 3px;
}

.quote-icon-right {
  color: var(--card-theme-color);
  opacity: 0.2;
  font-size: 26px;
  transition: color 0.4s ease;
}

/* Navigation Buttons */
.slider-btn {
  background-color: var(--background-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-blue);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.slider-btn:hover {
  background-color: var(--primary-blue);
  color: var(--background-white);
  box-shadow: 0 8px 20px rgba(79, 114, 184, 0.25);
  transform: translateY(-50%) translateY(-2px);
}

.slider-btn:active {
  transform: translateY(-50%);
}

.slider-btn.prev-btn {
  left: -15px;
}

.slider-btn.next-btn {
  right: -15px;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E2E8F0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: var(--primary-blue);
  transform: scale(1.3);
}

/* Responsive Styles for Testimonials */
@media (min-width: 768px) {
  .testimonial-card-container {
    flex: 0 0 calc(33.333% - 20px);
  }
  .testimonials-track {
    justify-content: flex-start;
  }
  .slider-btn.prev-btn {
    left: -20px;
  }
  .slider-btn.next-btn {
    right: -20px;
  }
}

@media (max-width: 767px) {
  .testimonials-slider-wrapper {
    padding: 0 10px;
  }
  .slider-btn {
    display: none; /* Hide arrow buttons on mobile to allow swipe */
  }
}

/* ==========================================================================
   SECTION 10: CTA
   ========================================================================== */
.cta-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left,rgba(255,255,255,0.12) 0%, transparent 28%),
    radial-gradient(circle at bottom right,rgba(226,161,45,0.45) 0%, transparent 32%),
    linear-gradient(135deg,#5D80D2 0%,#4E6FC0 45%,#7F8FB8 75%,#C79B4E 100%);  
  color: var(--background-white);
  box-shadow: 0 15px 35px rgba(94, 121, 176, 0.2);
}

.cta-container {
  padding: 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-container h2 span {
  color: #fff;
}

.cta-container p {
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 36px auto;
  opacity: 0.9;
  line-height: 1.6;
}

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

.cta-bullets {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 36px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.cta-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-bullet-item::before {
  content: '•';
  color: #ffe054;
  font-size: 18px;
}

/* ==========================================================================
   SECTION 11: FOOTER
   ========================================================================== */
.footer-section {
  background-color: #f8fafc;
  color: #334155;
  padding: 80px 0 24px 0;
  font-size: 14px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  mix-blend-mode: multiply;
}

.footer-top {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 3fr; /* Prevent grid overflow & center properly on desktop */
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  color: #0f172a; /* Dark charcoal/slate headings */
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-col.about p {
  color: #475569; /* Slate body text */
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #cbd5e1; /* Soft grey button background */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 14px;
}

.social-links a:hover {
  background-color: var(--accent-gold);
  color: var(--background-white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #475569;
  position: relative;
  padding-left: 18px;
  display: block;
  line-height: 1.5;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-blue); /* Primary blue hover for high contrast on light bg */
}

.footer-links a:hover::before {
  transform: translateX(4px); /* Shift the arrow slightly to the right on hover */
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #475569;
}

.contact-info-item i {
  color: var(--accent-gold);
  margin-top: 4px;
}

.footer-newsletter p {
  color: #475569;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex-grow: 1;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 10px 16px;
  color: #0f172a;
  font-family: var(--font-family);
  font-size: 13px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.newsletter-form button {
  background-color: var(--accent-gold);
  color: #ffffff;
  border: none;
  padding: 0 18px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #64748b;
}

.footer-bottom-links a:hover {
  color: var(--primary-blue);
}

/* ==========================================================================
   APPLY NOW FORM MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(3, 2, 19, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--background-white);
  width: 95%;
  max-width: 840px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(3, 2, 19, 0.18);
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--soft-gray);
  border: none;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  background-color: #ECECF0;
  color: var(--primary-dark);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.message-group {
  grid-column: span 2; /* Span across the remaining 2 columns in Row 2 */
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
}

.form-group label .required {
  color: #ef4444;
  margin-left: 4px;
  font-weight: 700;
}

/* Icon Wrapper inside Input */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  color: #94A3B8;
  font-size: 15px;
  transition: color 0.3s ease;
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  font-family: var(--font-family);
  font-size: 13.5px;
  color: var(--primary-dark);
  background-color: #F8FAFC;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group.message-group .input-wrapper i {
  top: 15px;
}

.form-group.message-group textarea {
  resize: vertical;
  min-height: 48px;
}

/* Focus styles: border turns blue, background white, adds soft glow */
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background-color: var(--background-white);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i,
.input-wrapper textarea:focus + i,
.input-wrapper input:focus ~ i,
.input-wrapper select:focus ~ i,
.input-wrapper textarea:focus ~ i {
  color: #3b82f6;
}

.input-wrapper.select-wrapper::after {
  content: '\f107'; /* Chevron down */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 16px;
  color: #64748B;
  font-size: 14px;
  pointer-events: none;
}

.input-wrapper.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
}

.form-submit-container {
  grid-column: span 3;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.btn-submit {
  background: var(--apply-gradient);
  color: var(--background-white);
  font-family: var(--font-family);
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 44px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(79, 114, 184, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 114, 184, 0.35);
  background: linear-gradient(135deg, #4364a5 0%, #d89626 100%);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Responsive grid for tablet/mobile */
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 24px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .form-group.message-group {
    grid-column: span 1;
  }
  
  .form-submit-container {
    grid-column: span 1;
  }
  
  .btn-submit {
    width: 100%;
  }
}

/* ==========================================================================
   SECTION: TRAINING SCHEDULE
   ========================================================================== */
.schedule-section {
  padding: 60px 0;
  background-color: var(--bg-alternate);
}

.schedule-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.schedule-title-block h2 span {
  color: var(--primary-blue);
}

.schedule-card-wrapper {
  width: 100%;
}

.schedule-card {
  background-color: var(--background-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-default);
  padding: 30px;
}

/* Table Design */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.schedule-table th {
  background-color: var(--primary-dark);
  color: var(--background-white);
  font-weight: 600;
  font-size: 14px;
  padding: 18px 24px;
  letter-spacing: 0.5px;
  border: none;
}

.schedule-table th:first-child {
  border-top-left-radius: var(--radius-md);
}

.schedule-table th:last-child {
  border-top-right-radius: var(--radius-md);
}

.schedule-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  color: #444;
  font-size: 14px;
  font-weight: 500;
  vertical-align: middle;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.table-icon-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.table-icon-cell i {
  color: var(--primary-blue);
  font-size: 14px;
  opacity: 0.8;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: capitalize;
  min-width: 90px;
}

.badge-open {
  background-color: #107c41;
  color: var(--background-white);
}

.badge-closed {
  background-color: #a82e2e;
  color: var(--background-white);
}

/* Center-align schedule table status column */
.schedule-table th:last-child,
.schedule-table td:last-child {
  text-align: center;
}

/* Admin control line */
.schedule-admin-bar {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.btn-admin-trigger {
  font-size: 13px;
  padding: 8px 18px;
}

.btn-admin-trigger i {
  margin-right: 6px;
  margin-left: 0;
}

/* ==========================================================================
   SCHEDULE ADMIN MODAL
   ========================================================================== */
.schedule-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 2, 19, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}

.schedule-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.schedule-modal-content {
  background-color: var(--background-white);
  width: 90%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(3, 2, 19, 0.18);
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.schedule-modal-overlay.active .schedule-modal-content {
  transform: translateY(0);
}

.schedule-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.schedule-modal-close:hover {
  color: var(--primary-blue);
}

.schedule-modal-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.admin-modal-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  margin-top: 10px;
}

.admin-batches-list {
  border-right: 1px solid var(--border-color);
  padding-right: 20px;
}

.admin-batches-list h4, .admin-batch-form h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(79, 114, 184, 0.1);
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.batches-list-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 8px;
}

.admin-batch-item {
  background-color: var(--bg-alternate);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}

.admin-batch-item:hover {
  border-color: rgba(79, 114, 184, 0.3);
}

.batch-item-info h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.batch-item-info p {
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-pill {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 4px;
}

.status-pill-open {
  background-color: rgba(16, 124, 65, 0.1);
  color: #107c41;
}

.status-pill-closed {
  background-color: rgba(168, 46, 46, 0.1);
  color: #a82e2e;
}

.batch-item-actions {
  display: flex;
  gap: 4px;
}

.btn-action {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: all 0.2s;
}

.edit-action {
  color: var(--primary-blue);
}

.edit-action:hover {
  background-color: rgba(79, 114, 184, 0.1);
}

.delete-action {
  color: #ef4444;
}

.delete-action:hover {
  background-color: rgba(239, 68, 68, 0.1);
}

.schedule-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.schedule-form-actions .btn {
  padding: 8px 16px;
  font-size: 12.5px;
}

.empty-list-msg {
  text-align: center;
  color: #94a3b8;
  padding: 40px 0;
  font-size: 13px;
}

/* ==========================================================================
   STICKY CONTACT TAB
   ========================================================================== */
.sticky-contact-tab {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background-color: var(--accent-gold);
  color: var(--background-white);
  padding: 12px 24px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  cursor: pointer;
  z-index: 999;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
}

.sticky-contact-tab:hover {
  background-color: #d6972a;
  padding-bottom: 16px;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR SCHEDULE
   ========================================================================== */
@media (max-width: 768px) {
  .schedule-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .admin-modal-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .admin-batches-list {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 20px;
  }
  
  .batches-list-container {
    max-height: 200px;
  }
  
  .schedule-card {
    padding: 20px 15px;
  }
  
  .schedule-table th, .schedule-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  
  .sticky-contact-tab {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* ==========================================================================
   SECTION: FAQS (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background-color: var(--background-white);
}

.faq-title {
  margin-bottom: 5px;
}

.faq-title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
  margin: 15px auto 25px auto;
  border-radius: 2px;
}

.faq-container {
  max-width: 850px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-alternate);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(79, 114, 184, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
  border-color: rgba(79, 114, 184, 0.3);
  box-shadow: var(--shadow-default);
  background-color: var(--background-white);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 20px;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.faq-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.4;
  transition: color 0.25s ease;
}

.faq-trigger:hover .faq-question,
.faq-item.active .faq-question {
  color: var(--primary-blue);
}

.faq-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(79, 114, 184, 0.06);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: 12px;
}

.faq-trigger:hover .faq-icon-wrapper {
  background-color: rgba(79, 114, 184, 0.12);
}

.faq-item.active .faq-icon-wrapper {
  background-color: var(--primary-blue);
  color: var(--background-white);
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel-content {
  padding: 0 28px 24px 28px;
}

.faq-panel-content p {
  font-size: 16.5px;
  color: #555;
  line-height: 1.6;
}

/* Responsive Overrides for FAQs */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-trigger {
    padding: 16px 20px;
    gap: 15px;
  }
  
  .faq-question {
    font-size: 13.5px;
  }
  
  .faq-panel-content {
    padding: 0 20px 16px 20px;
  }
  
  .faq-panel-content p {
    font-size: 15px;
  }
}


/* ==========================================================================
   UTILITY: EXTRA SHARED HELPERS
   ========================================================================== */
.section-padding {
  padding: 3rem;
}

.text-center {
  text-align: center;
}

.color-primary {
  color: var(--primary-blue) !important;
}

.color-accent {
  color: var(--accent-gold) !important;
}

.bg-light-alt {
  background-color: var(--bg-light);
}

.section-header__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header__title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Corporate button variants */
.btn--primary {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.btn--primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn--gradient {
  background: var(--gradient-green);
  color: var(--bg-white);
  border: none;
}

.btn--gradient:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn--outline:hover {
  background-color: var(--secondary-mint);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--bg-white);
  color: var(--primary-blue);
}

.btn--white:hover {
  background-color: #f3f4f6;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.btn--white-outline {
  background-color: transparent !important;
  border: 2px solid var(--bg-white) !important;
  color: var(--bg-white) !important;
  border-radius: 30px !important;
  padding: 10px 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn--white-outline:hover {
  background-color: var(--bg-white) !important;
  color: var(--primary-blue) !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

/* ==========================================================================
   CORPORATE HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(79, 114, 184, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(227, 165, 57, 0.15), transparent 30%),
    linear-gradient(135deg, #f8f9fb 0%, #eef2f7 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 1rem;
  background: rgba(255, 248, 235, 0.8);
  backdrop-filter: blur(10px);
  color: var(--accent-gold);
  border-radius: 999px;
  border: 1px solid rgba(227, 165, 57, 0.2);
  box-shadow: 0 8px 24px rgba(227, 165, 57, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero__title span {
  color: var(--primary-blue);
}

.hero__description {
  font-size: 1.1rem;
  color: #666;
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.stat-card {
  flex: 0 0 200px;
  background: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  box-shadow: var(--shadow-default);
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-card__number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 2px;
}

.stat-card__label {
  font-size: 0.8rem;
  color: #666;
}

.hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__image-wrapper {
  position: relative;
  display: inline-block;
}

.hero__image {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 114, 184, 0.12);
  color: var(--primary-blue);
  font-size: 18px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
}

.card-1 {
  top: 8%;
  right: -40px;
}

.card-2 {
  top: 60%;
  right: -60px;
  transform: translateY(-50%);
}

.card-3 {
  bottom: 10%;
  left: -40px;
}

/* ==========================================================================
   COURSE HIGHLIGHTS
   ========================================================================== */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background-color: var(--bg-white);
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-blue);
}

.highlight-card__icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-mint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.highlight-card__icon i {
  color: var(--primary-blue);
  font-size: 1.35rem;
}

.highlight-card:hover .highlight-card__icon {
  background-color: var(--primary-blue);
}

.highlight-card:hover .highlight-card__icon i {
  color: var(--bg-white);
}

.highlight-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.highlight-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   WHY LEARN (IMAGE + CONTENT GRID)
   ========================================================================== */
.why-dev__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.why-dev__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
}

.why-dev__img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--bg-white);
}

.why-dev__img-wrapper--large {
  grid-row: span 2;
}

.why-dev__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.why-dev__img-wrapper:hover .why-dev__img {
  transform: scale(1.05);
}

.why-dev__overlay-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--bg-white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  max-width: 240px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  z-index: 5;
  transition: var(--transition-normal);
}

.why-dev__overlay-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
}

.why-dev__overlay-card i {
  color: var(--primary-blue);
  font-size: 1.5rem;
  background-color: var(--secondary-mint);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
}

.why-dev__overlay-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.why-dev__overlay-text strong {
  color: var(--dark-forest);
  display: block;
  margin-bottom: 0.25rem;
}

.why-dev__content {
  display: flex;
  flex-direction: column;
}

.why-dev__title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.why-dev__list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2.25rem;
}

.why-dev__list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-dev__list-item i {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.why-dev__list-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.why-dev__callout {
  background: var(--gradient-soft);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-dev__callout i {
  color: var(--primary-blue);
  font-size: 1.35rem;
  margin-top: 0.15rem;
}

.why-dev__callout-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-forest);
  margin-bottom: 0.25rem;
}

.why-dev__callout-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   LEARNING METHODOLOGY
   ========================================================================== */
.methodology__steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

.methodology__steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 3px;
  background-color: var(--border-light);
  z-index: 1;
}

.methodology__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.methodology__icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--bg-white);
  border: 3px solid var(--border-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-muted);
  transition: var(--transition-normal);
  margin-bottom: 1rem;
  cursor: pointer;
}

.methodology__icon-circle:hover,
.methodology__step--active .methodology__icon-circle {
  border-color: var(--primary-blue);
  background-color: var(--primary-blue);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.methodology__step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

.methodology__step--active .methodology__step-label {
  color: var(--primary-blue);
  font-weight: 700;
}

.methodology__step-info {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 1.75rem 2.25rem;
  border-radius: var(--radius-md);
  margin-top: 3.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: var(--transition-normal);
}

.methodology__step-info-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.methodology__step-info-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   COURSE CURRICULUM
   ========================================================================== */
.curriculum__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.curriculum-stat-card {
  background-color: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  flex: 1;
  text-align: center;
  transition: var(--transition-normal);
}

.curriculum-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.curriculum-stat-card__number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.curriculum-stat-card__label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.curriculum__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.accordion {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.accordion:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.accordion__header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion__title-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.accordion__icon-box {
  width: 38px;
  height: 38px;
  background-color: var(--secondary-mint);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.accordion__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-forest);
}

.accordion__chevron {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.accordion__body {
  height: 0;
  overflow: hidden;
  transition: height var(--transition-normal) ease-in-out;
}

.accordion__body-content {
  padding: 1.25rem 2rem 1.75rem 5.25rem;
  border-top: 1px solid transparent;
}

.accordion--active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.accordion--active .accordion__chevron {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.accordion--active .accordion__body-content {
  border-color: var(--border-light);
}

.accordion__topic-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.accordion__topic-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.accordion__topic-item i {
  color: var(--primary-blue);
  font-size: 0.85rem;
}

.curriculum__more-btn {
  text-align: center;
  margin-top: 3.5rem;
}

/* ==========================================================================
   PROJECTS GRID
   ========================================================================== */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-blue);
}

.project-card__img-wrapper {
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: var(--dark-forest);
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.project-card:hover .project-card__img {
  transform: scale(1.05);
}

.project-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-card__tag {
  background-color: var(--secondary-mint);
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.project-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-forest);
}

.project-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.project-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-card__link i {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.project-card__link:hover i {
  transform: translateX(3px);
}

/* ==========================================================================
   WHY ENROLL WITH US (CORPORATE CARDS)
   ========================================================================== */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-us-card {
  background-color: var(--bg-white);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-blue);
}

.why-us-card__icon-box {
  width: 46px;
  height: 46px;
  background-color: var(--secondary-mint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.why-us-card__icon-box i {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.why-us-card:hover .why-us-card__icon-box {
  background-color: var(--primary-blue);
}

.why-us-card:hover .why-us-card__icon-box i {
  color: var(--bg-white);
}

.why-us-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-us-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   LEARNING JOURNEY TIMELINE
   ========================================================================== */
.journey__timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  padding: 2rem 0;
}

.journey__track-line {
  position: absolute;
  top: 45px;
  left: 4%;
  right: 4%;
  height: 2px;
  background-color: var(--border-light);
  z-index: 1;
}

.journey__node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.journey__circle {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-normal);
}

.journey__node--solid .journey__circle {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.journey__node:hover .journey__circle {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.journey__node-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-forest);
  margin-bottom: 0.5rem;
}

.journey__node-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 145px;
  margin: 0 auto;
}

.journey__dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-blue);
  border-radius: var(--radius-full);
  margin: 0.75rem auto 0;
}

/* ==========================================================================
   FAQ (CORPORATE PAGE)
   ========================================================================== */
.faq__list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item__header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-item__question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-forest);
  padding-right: 1.5rem;
}

.faq-item__icon {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.faq-item__body {
  height: 0;
  overflow: hidden;
  transition: height var(--transition-normal) ease-in-out;
}

.faq-item__content {
  padding: 1.25rem 2rem 1.75rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-item--active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.faq-item--active .faq-item__icon {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.faq-item--active .faq-item__content {
  border-color: var(--border-light);
}

/* ==========================================================================
   CTA SECTION (CORPORATE)
   ========================================================================== */
.cta-section.corp-cta {
  padding: 6rem;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12) 0%, transparent 28%),
    radial-gradient(circle at bottom right, rgba(226,161,45,0.45) 0%, transparent 32%),
    linear-gradient(135deg, #5D80D2 0%, #4E6FC0 45%, #7F8FB8 75%, #C79B4E 100%) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

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

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cta-link {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: var(--transition-fast);
  font-weight: 500;
}

.cta-link:hover {
  color: var(--primary-blue);
}

.cta-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   NAVBAR (CORPORATE MOBILE)
   ========================================================================== */
.nav {
  transition: var(--transition-normal);
}

.nav--open {
  left: 0 !important;
}

.nav__list {
  display: flex;
}

.nav__link {
  font-size: 1.15rem;
  display: block;
}

.header__actions .btn {
  display: inline-flex;
}

/* ==========================================================================
   FOOTER (CORPORATE PAGE - shared classes)
   ========================================================================== */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE: CORPORATE PAGE
   ========================================================================== */
@media (max-width: 1200px) {
  .highlights__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .projects__grid,
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

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

  .nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    padding: 3rem 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .header__actions .btn {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stats {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image-wrapper {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-dev__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .why-dev__gallery {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .methodology__steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .methodology__steps::before {
    display: none;
  }

  .methodology__step {
    flex-direction: row;
    width: 100%;
    max-width: 400px;
    text-align: left;
    gap: 1.5rem;
    border: 1px solid var(--border-light);
    background-color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .methodology__icon-circle {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .methodology__step-info {
    margin-top: 2rem;
  }

  .journey__timeline {
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    padding-left: 1rem;
  }

  .journey__track-line {
    top: 10px;
    bottom: 10px;
    left: 30px;
    width: 2px;
    height: auto;
    right: auto;
  }

  .journey__node {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    width: 100%;
  }

  .journey__circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .journey__node-desc {
    max-width: 100%;
    margin: 0;
  }

  .journey__dot {
    margin: 0.5rem 0 0;
  }
}

@media (max-width: 767px) {
  .section-header__title {
    font-size: 1.85rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .highlights__grid {
    grid-template-columns: 1fr;
  }

  .projects__grid,
  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .accordion__topic-list {
    grid-template-columns: 1fr;
  }

  .accordion__body-content {
    padding-left: 2rem;
  }

  .cta-section.corp-cta {
    padding: 4.5rem 1.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .curriculum__stats {
    flex-direction: column;
    gap: 1rem;
  }
}
