/* ===== CAREER CHASER - Professional Light Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0077C2;
  --primary-dark: #005a94;
  --primary-light: #3399d6;
  --primary-lighter: #e8f4fc;
  --secondary: #00b4d8;
  --accent: #ff6b35;
  --accent-light: #fff3ed;
  --success: #2ecc71;
  --warning: #f1c40f;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-muted: #8c8c9e;
  --text-light: #b0b0c0;
  --bg-white: #ffffff;
  --bg-light: #f7f9fc;
  --bg-lighter: #eef2f7;
  --bg-blue: #0077C2;
  --bg-blue-dark: #005a94;
  --border: #e2e8f0;
  --border-light: #f0f0f5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-white {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

.btn-accent:hover {
  background: #e55a28;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  color: var(--primary);
  font-weight: 900;
}

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

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links>li>a:hover {
  color: var(--primary);
  background: var(--primary-lighter);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.03);
  padding: 12px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: top center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.nav-links>li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px) scale(1);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.dropdown-menu a:hover {
  background: var(--primary-lighter);
  color: var(--primary);
}

.dropdown-menu a small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

/* Deep Content Modal */
.topic-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.topic-modal {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.topic-modal-overlay.open .topic-modal {
  transform: translateY(0) scale(1);
}

.close-topic-modal {
  position: absolute;
  top: 16px; right: 16px;
  background: #f1f3f5;
  border: none;
  font-size: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: 0.2s;
}

.close-topic-modal:hover {
  background: #e9ecef;
  color: #333;
}

.topic-modal-header {
  padding: 32px 32px 20px 32px;
  background: linear-gradient(135deg, var(--primary-lighter), #fff);
  border-bottom: 1px solid var(--border);
}

.topic-modal-header h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.topic-modal-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.topic-modal-body {
  padding: 32px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}

.topic-modal-body p { margin-bottom: 16px; }
.topic-modal-body ul { margin-bottom: 16px; padding-left: 20px; }
.topic-modal-body li { margin-bottom: 8px; }
.topic-modal-body strong { color: var(--text-dark); }

.topic-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  background: #fafafa;
  text-align: right;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 40px;
  background: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600; /* Reduced from 900 for a perfectly balanced 'thin fit' */
  color: var(--text-dark);
  margin-bottom: 14px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.5px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-image: linear-gradient(to right, var(--text-dark) 0%, var(--text-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: default;
}

.hero h1:hover {
  transform: scale(1.03);
  letter-spacing: 0px;
  background-image: linear-gradient(135deg, var(--primary) 0%, #E8602A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 15px 35px rgba(0, 119, 194, 0.2);
}

.hero p.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400; /* Thinner elegant subtitle */
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.8;
  transition: all 0.4s ease;
  cursor: default;
}

.hero p.hero-subtitle:hover {
  color: #334155;
  transform: translateY(-2px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-tags a {
  padding: 7px 18px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.hero-tags a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Hero Trust Row */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 600;
}

.hero-trust-item svg {
  flex-shrink: 0;
}

.hero-trust-item .trust-val {
  color: var(--primary);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

/* Hero Feature Pills */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.hero-feature:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.hero-feature .hf-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature .hf-text {
  text-align: left;
}

.hero-feature .hf-text h4 {
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1px;
}

.hero-feature .hf-text p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.hero-image {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero-image img {
  width: 100%;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-blue);
  padding: 40px 0;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  justify-content: center;
}

.stat-item .stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-item .stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.3;
}

/* ===== AWARDS ===== */
.awards-section {
  padding: 50px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.awards-section h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.awards-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.award-item {
  text-align: center;
  max-width: 140px;
}

.award-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(255, 179, 71, 0.3);
}

.award-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}

.section-white {
  background: var(--bg-white);
}

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

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

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-blue .section-header h2 {
  color: white;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-blue .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== SHAPING LANDSCAPE ===== */
.landscape-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.landscape-card {
  text-align: center;
  padding: 20px;
}

.landscape-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.landscape-card .land-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  background: var(--primary-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.landscape-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== PROGRAMS TABS ===== */
.programs-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--bg-lighter);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-body);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) {
  color: var(--primary);
}

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

.program-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}

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

.program-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.program-card .card-icon.blue {
  background: var(--primary-lighter);
}

.program-card .card-icon.orange {
  background: var(--accent-light);
}

.program-card .card-icon.green {
  background: #e8f8ef;
}

.program-card .card-image-box {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.program-card .card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.program-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.program-card .card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.program-card .card-link:hover {
  gap: 8px;
}

/* ===== STEPS / THE WAY ===== */
.steps-container {
  position: relative;
}

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

.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

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

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.step-card .step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: var(--primary-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.step-card .step-image-box {
  width: 100%;
  height: 180px;
  margin: 0 auto 16px;
  border-radius: 12px;
  overflow: hidden;
}

.step-card .step-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== AI TOOLS — PREMIUM ANIMATED ===== */

/* Keyframes */
@keyframes ai-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ai-shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes ai-glow-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0, 119, 194, 0.3); }
  50% { box-shadow: 0 0 24px rgba(0, 119, 194, 0.55), 0 0 48px rgba(0, 119, 194, 0.15); }
}

@keyframes ai-badge-shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes ai-icon-rotate {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(3deg) scale(1.05); }
  50% { transform: rotate(0deg) scale(1); }
  75% { transform: rotate(-3deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}

/* Section Background */
.ai-section-animated {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 30%, #fef9f0 70%, #f0f7ff 100%) !important;
}

.ai-section-animated::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(0, 119, 194, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
  animation: ai-float 12s ease-in-out infinite;
  pointer-events: none;
}

/* Header Row */
.ai-header-row {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 52px;
  text-align: left;
}

.ai-header-image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 119, 194, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
  animation: ai-float 5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.ai-header-image-wrap:hover {
  transform: scale(1.06) rotate(1deg);
  box-shadow: 0 12px 40px rgba(0, 119, 194, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ai-header-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-header-image-wrap:hover img {
  transform: scale(1.1);
}

.ai-header-image-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 119, 194, 0.3), rgba(255, 107, 53, 0.2), rgba(0, 119, 194, 0.3));
  z-index: -1;
  animation: ai-glow-pulse 3s ease-in-out infinite;
}

.ai-header-text {
  flex: 1;
}

.ai-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #0077C2, #00b4d8, #ff6b35, #0077C2);
  background-size: 300% 100%;
  color: white;
  animation: ai-badge-shine 4s linear infinite;
}

.ai-header-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #1a1a2e, #0077C2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-header-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Cards Grid */
.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card */
.ai-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 119, 194, 0.1);
  border-radius: 20px;
  padding: 36px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease;
}

.ai-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 119, 194, 0.15), 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 119, 194, 0.25);
}

/* Shimmer sweep on hover */
.ai-card-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: none;
  pointer-events: none;
}

.ai-card:hover .ai-card-shimmer {
  animation: ai-shimmer 0.8s ease forwards;
}

/* Icon */
.ai-card .ai-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f4fc, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 119, 194, 0.1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}

.ai-card:hover .ai-icon {
  animation: ai-icon-rotate 1.5s ease-in-out;
  box-shadow: 0 6px 24px rgba(0, 119, 194, 0.2);
}

.ai-card .ai-icon img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease;
}

.ai-card:hover .ai-icon img {
  transform: scale(1.1);
}

.ai-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.ai-card:hover h3 {
  color: #0077C2;
}

.ai-card .ai-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.ai-card ul {
  list-style: none;
}

.ai-card ul li {
  padding: 7px 0;
  color: var(--text-body);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ai-card:hover ul li {
  transform: translateX(4px);
}

.ai-card ul li:nth-child(1) { transition-delay: 0s; }
.ai-card ul li:nth-child(2) { transition-delay: 0.05s; }
.ai-card ul li:nth-child(3) { transition-delay: 0.1s; }
.ai-card ul li:nth-child(4) { transition-delay: 0.15s; }

.ai-card ul li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Button Glow */
.ai-btn-glow {
  margin-top: 24px;
  width: 100%;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}

.ai-btn-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 119, 194, 0.35),
              0 0 15px rgba(0, 119, 194, 0.2);
}

.ai-btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.ai-btn-glow:hover::after {
  left: 120%;
}

/* Responsive */
@media (max-width: 768px) {
  .ai-header-row {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .ai-header-image-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  .ai-tools-grid {
    grid-template-columns: 1fr;
  }
  .ai-header-text h2 {
    font-size: 1.5rem;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonial-container {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-lighter);
  flex-shrink: 0;
}

.testimonial-content blockquote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-content .author {
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

.testimonial-content .role {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.testimonial-stars {
  color: #f1c40f;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.partner-logo {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 12px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.8rem;
  transition: var(--transition);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}

/* ===== COMPARISON ===== */
.comparison-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 0.9rem;
}

.comparison-table thead th {
  background: var(--bg-blue);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.highlight {
  background: var(--primary-dark);
}

.comparison-table tbody td {
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}

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

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.check {
  color: var(--success);
  font-size: 1.2rem;
  font-weight: 700;
}

.cross {
  color: #e74c3c;
  font-size: 1.2rem;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.blog-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary-lighter), #dbeafe);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body .blog-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--primary-lighter);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 80px 0;
  background: var(--bg-blue);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CHATBOT WIDGET ===== */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.chatbot-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
}

.chatbot-bubble:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.chatbot-bubble .chat-icon {
  font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a2e;
  padding: 60px 0 24px;
  color: #ccc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand .footer-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand .footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #999;
  font-size: 0.85rem;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #777;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: #999;
}

.footer-socials a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== SVG ICON SIZING ===== */
.stat-icon svg {
  width: 22px;
  height: 22px;
}

.award-icon svg {
  width: 26px;
  height: 26px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.ai-icon svg {
  width: 30px;
  height: 30px;
}

.land-icon svg {
  width: 48px;
  height: 48px;
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Micro-animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 119, 194, 0.2);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(0, 119, 194, 0);
  }
}

.chatbot-bubble {
  animation: pulse-glow 3s infinite;
}

.hero-image img {
  animation: float 6s ease-in-out infinite;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 20px;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-dark);
}

/* ===== CAREER LIBRARY QUICK EXPLORE ===== */
.career-explore {
  padding: 60px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.career-explore h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.career-explore .section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

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

.explore-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.explore-card .explore-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.explore-card h4 {
  font-size: 0.88rem;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

.explore-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.explore-card .explore-salary {
  color: var(--success);
  font-weight: 700;
  font-size: 0.78rem;
  margin-top: 6px;
}

/* ===== SCROLLING TICKER ===== */
.ticker-section {
  background: var(--bg-blue);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}

.ticker-item .ticker-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== ENRICHED BLOG ===== */
.blog-enriched {
  padding: 80px 0;
  background: var(--bg-light);
}

.blog-enriched .section-header {
  margin-bottom: 40px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
}

.blog-main-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-list-item {
  display: flex;
  gap: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.blog-list-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-list-thumb {
  width: 250px;
  min-height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-lighter), #dbeafe);
  overflow: hidden;
}

.blog-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-list-body .blog-cat {
  display: inline-block;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.blog-list-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  line-height: 1.4;
}

.blog-list-body .blog-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.blog-list-body p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
}

.blog-list-body .read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 8px;
  display: inline-block;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

/* Sidebar Card Base */
.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.sidebar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 119, 194, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 119, 194, 0.15);
}

.sidebar-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

.sidebar-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #00b4d8);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.sidebar-card:hover h4::after {
  width: 60px;
}

/* Search */
.sidebar-search {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 194, 0.1);
}

.sidebar-search input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  background: transparent;
}

.sidebar-search button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sidebar-search button:hover {
  background: var(--primary-dark);
}

/* Tags */
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sidebar-tags .tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 12px rgba(0, 119, 194, 0.25);
}

.sidebar-tags .tag.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.tag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 20px;
  height: 18px;
  border-radius: 50px;
  padding: 0 5px;
  transition: background 0.3s ease;
}

.sidebar-tags .tag:hover .tag-count {
  background: rgba(255, 255, 255, 0.25);
}

/* Latest Posts */
.latest-posts .latest-item {
  display: flex;
  gap: 14px;
  padding: 14px 10px;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.latest-posts .latest-item:last-child {
  border-bottom: none;
}

.latest-posts .latest-item:hover {
  background: linear-gradient(135deg, rgba(0, 119, 194, 0.04), rgba(0, 180, 216, 0.06));
  transform: translateX(4px);
  border-bottom-color: transparent;
}

.latest-item .latest-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--bg-lighter);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-posts .latest-item:hover .latest-thumb {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.latest-item .latest-info {
  flex: 1;
  min-width: 0;
}

.latest-item .latest-info h5 {
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.latest-posts .latest-item:hover .latest-info h5 {
  color: var(--primary);
}

.latest-item .latest-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.latest-item .latest-info .latest-excerpt {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.latest-posts .latest-item:hover .latest-excerpt {
  max-height: 60px;
  opacity: 1;
  margin-top: 4px;
}

/* Sidebar Responsive */
@media (max-width: 1024px) {
  .blog-sidebar {
    position: static;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar-tags {
    gap: 6px;
  }
  .sidebar-tags .tag {
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}

/* ===== INFO TERMINAL (SEO CONTENT) ===== */
.info-terminal {
  padding: 70px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.info-terminal-inner {
  max-width: 950px;
  margin: 0 auto;
}

.info-terminal h2 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  margin-top: 28px;
  font-weight: 700;
}

.info-terminal h2:first-child {
  margin-top: 0;
}

.info-terminal p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 14px;
}

.info-terminal a {
  color: var(--primary);
  font-weight: 600;
}

.info-terminal a:hover {
  text-decoration: underline;
}

.info-typing {
  overflow: hidden;
  border-right: 2px solid var(--primary);
  white-space: nowrap;
  animation: typing 4s steps(50) forwards, blink-caret 0.75s step-end infinite;
  display: inline-block;
  max-width: 100%;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--primary);
  }
}

.info-terminal .info-intro {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 28px;
}

/* ===== CAREER NUMBERS BAND ===== */
.numbers-band {
  padding: 50px 0;
  background: linear-gradient(135deg, #0077C2 0%, #00b4d8 100%);
}

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

.number-item .number-val {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.number-item .number-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

/* ===== WHY SECTION (RICHTEXT) ===== */
.why-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.why-text p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.why-text ul {
  list-style: none;
  margin-bottom: 20px;
}

.why-text ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.why-text ul li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.why-image {
  position: relative;
}

.why-stat-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.why-stat-box:hover {
  box-shadow: var(--shadow-md);
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-stat-box .ws-val {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

.why-stat-box .ws-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== TESTIMONIAL ENRICHED ===== */
.video-testimonials {
  padding: 60px 0;
  background: var(--bg-white);
}

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

.video-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.video-thumb {
  height: 160px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.video-card-body {
  padding: 16px;
}

.video-card-body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.video-card-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  .landscape-grid,
  .programs-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-links.mobile-active {
    right: 0;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .hamburger span {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

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

  .landscape-grid,
  .programs-grid,
  .steps-grid,
  .ai-tools-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    gap: 20px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .blog-list-item {
    flex-direction: column;
  }

  .blog-list-thumb {
    width: 100%;
    min-height: 120px;
  }

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

  .info-typing {
    white-space: normal;
    animation: none;
    border-right: none;
  }
}

/* ===== CHATBOT AI ANIMATIONS ===== */
.typing-dots {
  display: flex;
  align-items: center;
  height: 20px;
  gap: 4px;
}
.typing-dots span {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: typing-dot 1.4s infinite ease-in-out both;
}
.typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}
@keyframes typing-dot {
  0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 180, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  padding: 30px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
}

.comparison-table th {
  text-align: left;
  padding: 16px;
  border-bottom: 2px solid var(--border);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

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

.comparison-table th.highlight {
  color: var(--primary);
  background: rgba(0, 180, 216, 0.05);
  border-radius: 8px 8px 0 0;
}

.comparison-table td:nth-child(2) {
  background: rgba(0, 180, 216, 0.05);
  font-weight: 600;
  text-align: center;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
  text-align: center;
}

.comparison-table .check {
  color: var(--success);
  font-size: 1.1rem;
}

.comparison-table .cross {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ===== BUTTON SYSTEM ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1.4;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 119, 194, 0.3);
}

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

.btn-accent:hover {
  background: #e55a2b;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-lighter);
  transform: translateY(-1px);
}

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

.btn-white:hover {
  background: var(--primary-lighter);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.95rem;
  border-radius: 12px;
}

/* ===== FADE UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.6s ease forwards;
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up:nth-child(2) { animation-delay: 0.1s; }
.fade-up:nth-child(3) { animation-delay: 0.2s; }

/* ===== DISTORTED LINK EFFECT ===== */
.distorted-link {
    position: relative;
    display: inline-block;
}

.distorted-link .menu__link-inner {
    display: block;
    position: relative;
    outline: 100px solid transparent;
}

.distorted-link .menu__link-deco {
    outline: 120px solid transparent;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    background: currentColor;
    transition: opacity 0.2s;
}

.distorted-link:hover .menu__link-deco {
    opacity: 1;
}