/* ============================================================
   CareerSkool — Main Stylesheet
   Premium Dark Glassmorphic Design System
   ============================================================ */

/* ─── RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  color: #cbd5e1;
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  background-size: 100% 150%;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── GLASSMORPHISM ──────────────────────────────────────── */
.glass {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
}

.glass-light {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 2.25rem;
  font-weight: 800;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

.text-blue {
  color: #60a5fa;
}

.text-muted {
  color: #94a3b8;
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-outline {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.navbar-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-links a,
.navbar-links .nav-dropdown-trigger {
  padding: 8px 16px;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.navbar-links a:hover,
.navbar-links .nav-dropdown-trigger:hover {
  color: #fff;
  background: rgba(59, 130, 246, 0.1);
}

.navbar-links a.active {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.15);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-dropdown-trigger i.fa-chevron-down {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger i.fa-chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(59, 130, 246, 0.15);
  color: #fff;
}

.nav-dropdown-menu a i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  font-size: 0.85rem;
}

/* Mobile menu */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 8px;
  cursor: pointer;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-cta .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #e2e8f0;
}

.hero-trust-item i {
  color: #3b82f6;
}

.hero-stats-card {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  animation: floating 3s ease-in-out infinite;
}

.hero-stat {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.12);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-3px);
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #60a5fa;
  display: block;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* ─── COURSE CARDS ───────────────────────────────────────── */
.course-card {
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
}

.course-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #60a5fa;
  margin-bottom: 20px;
}

.course-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.course-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.course-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.course-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 8px;
  font-size: 0.8rem;
  color: #cbd5e1;
}

.course-card-tag i {
  color: #3b82f6;
  font-size: 0.75rem;
}

.course-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.skill-badge {
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 6px;
  font-size: 0.78rem;
  color: #93c5fd;
  transition: all 0.3s ease;
}

.skill-badge:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(37, 99, 235, 0.25));
  transform: scale(1.05);
}

.course-card-salary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  margin-bottom: 20px;
}

.course-card-salary i {
  color: #34d399;
}

.course-card-salary span {
  font-size: 0.9rem;
  color: #6ee7b7;
  font-weight: 600;
}

.course-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  margin-top: auto;
}

.course-card-link:hover {
  gap: 12px;
  color: #93c5fd;
}

/* ─── FEATURE CARDS ──────────────────────────────────────── */
.feature-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(30, 58, 138, 0.7));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(30, 58, 138, 0.9));
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #60a5fa;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ─── COMPARISON CARDS ───────────────────────────────────── */
.comparison-card {
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

.comparison-card:hover::before {
  opacity: 1;
}

.comparison-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #60a5fa;
  margin: 0 auto 20px;
}

.comparison-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.comparison-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.comparison-detail:last-of-type {
  border-bottom: none;
}

.comparison-detail-label {
  font-size: 0.85rem;
  color: #94a3b8;
}

.comparison-detail-value {
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 600;
}

/* ─── FILTER TABS ────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50px;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.filter-tab:hover {
  color: #e2e8f0;
  background: rgba(59, 130, 246, 0.15);
}

.filter-tab.active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border-color: transparent;
}

/* ─── PLACEMENT CARDS ────────────────────────────────────── */
.placement-card {
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.placement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.placement-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #60a5fa;
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.placement-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placement-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.placement-card-role {
  font-size: 0.85rem;
  color: #60a5fa;
  margin-bottom: 4px;
}

.placement-card-company {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.placement-card-package {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: #6ee7b7;
  font-weight: 600;
}

/* ─── TESTIMONIAL CARDS ──────────────────────────────────── */
.testimonial-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 58, 138, 0.8));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.testimonial-stars {
  margin-bottom: 16px;
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: #60a5fa;
}

/* ─── HIRING MARQUEE ─────────────────────────────────────── */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #0f172a, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #0f172a, transparent);
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  padding: 16px 32px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.marquee-item:hover {
  background: rgba(59, 130, 246, 0.15);
  color: #e2e8f0;
  border-color: rgba(59, 130, 246, 0.3);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── STATS COUNTER ──────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-3px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #60a5fa;
  margin: 0 auto 16px;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* ─── FAQ ACCORDION ──────────────────────────────────────── */
.faq-item {
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.15);
  background: rgba(30, 41, 59, 0.5);
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #60a5fa;
}

.faq-question i {
  font-size: 0.75rem;
  color: #60a5fa;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  padding-top: 24px;
  text-align: center;
  color: #64748b;
  font-size: 0.82rem;
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 60px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.cta-contact-item i {
  color: #60a5fa;
}

/* ─── STICKY MOBILE CTA ─────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  gap: 10px;
  justify-content: center;
}

.sticky-cta .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.85rem;
  padding: 12px;
}

/* ─── BREADCRUMBS ────────────────────────────────────────── */
.breadcrumbs {
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #64748b;
}

.breadcrumbs-inner a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.breadcrumbs-inner a:hover {
  color: #60a5fa;
}

.breadcrumbs-inner .separator {
  color: #475569;
}

.breadcrumbs-inner .current {
  color: #60a5fa;
}

/* ─── COURSE PAGE HERO ───────────────────────────────────── */
.course-hero {
  padding: 30px 0 60px;
  position: relative;
  z-index: 1;
}

.course-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.course-hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 28px;
  max-width: 600px;
  line-height: 1.7;
}

/* ─── CURRICULUM ─────────────────────────────────────────── */
.curriculum-module {
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.15);
  background: rgba(30, 41, 59, 0.5);
}

.curriculum-module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  color: #e2e8f0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.2s ease;
}

.curriculum-module-header:hover {
  color: #60a5fa;
}

.curriculum-module-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 700;
  margin-right: 12px;
}

.curriculum-module-header i {
  color: #60a5fa;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.curriculum-module.open .curriculum-module-header i {
  transform: rotate(180deg);
}

.curriculum-module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.curriculum-module-topics {
  padding: 0 24px 16px;
  padding-left: 72px;
}

.curriculum-module-topics li {
  padding: 6px 0;
  color: #94a3b8;
  font-size: 0.88rem;
  position: relative;
  padding-left: 16px;
}

.curriculum-module-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
}

/* ─── SOFTWARE GRID ──────────────────────────────────────── */
.software-card {
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.software-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.software-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #60a5fa;
  margin: 0 auto 14px;
}

.software-card h4 {
  margin-bottom: 8px;
}

.software-card p {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ─── CAREER PATHS ───────────────────────────────────────── */
.career-card {
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}

.career-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.career-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}

.career-card h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.career-card p {
  color: #6ee7b7;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 10px 5px rgba(59, 130, 246, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }


  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats-card {
    animation: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .course-hero h1 {
    font-size: 2rem;
  }

  .cta-section {
    padding: 40px 20px;
  }
}


@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-trust {
    flex-direction: column;
  }

  .comparison-card {
    padding: 24px 16px;
  }
}

/* ============================================================
   ⭐ ATG CARD & NEW SECTIONS STYLES
   ============================================================ */

/* Badges */
.badge-atg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.2));
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
}

.hero-trust .badge-atg {
  padding: 6px 12px;
  font-size: 0.8rem;
}

/* Dedicated ATG Card Section */
.atg-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.atg-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.atg-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* 3D-Style Card Container & Rotation */
.atg-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  padding: 20px;
}

.atg-card-3d {
  width: 380px;
  height: 240px;
  border-radius: 20px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
  cursor: pointer;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1d4ed8 100%);
  border: 1px solid rgba(147, 197, 253, 0.35);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 5px 15px rgba(59, 130, 246, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.atg-card-3d:hover {
  transform: rotateY(15deg) rotateX(10deg) translateY(-8px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.6),
    0 12px 25px rgba(59, 130, 246, 0.45),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
  border-color: rgba(147, 197, 253, 0.6);
}

.atg-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Card details styling */
.atg-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.atg-card-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.atg-card-brand span {
  color: #60a5fa;
}

.atg-card-chip {
  width: 42px;
  height: 32px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.atg-card-chip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background:
    linear-gradient(90deg, transparent 48%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.2) 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.2) 52%, transparent 52%);
  border-radius: 4px;
}

.atg-card-number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.18em;
  margin: 20px 0 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.atg-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.atg-card-holder {
  text-transform: uppercase;
}

.atg-card-label {
  font-size: 0.65rem;
  color: #94a3b8;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.atg-card-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.03em;
}

.atg-card-holo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.6) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(16, 185, 129, 0.6) 100%);
  filter: blur(4px);
  opacity: 0.85;
  mix-blend-mode: color-dodge;
  position: absolute;
  right: -5px;
  bottom: -5px;
  pointer-events: none;
}

/* Benefits list */
.atg-info-col h3 {
  font-size: 1.5rem;
  color: #f8fafc;
  margin-bottom: 20px;
}

.atg-highlight-text {
  font-size: 1.1rem;
  color: #93c5fd;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid #3b82f6;
  background: rgba(59, 130, 246, 0.05);
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0 8px 8px 0;
}

.atg-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.atg-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.atg-benefit-item i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Video Testimonials Section */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.video-card-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 80%);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  z-index: 2;
}

.video-card:hover .video-play-btn {
  transform: scale(1.15);
  background: #3b82f6;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
  border-color: #fff;
}

.video-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 20%, rgba(15, 23, 42, 0.6) 70%, transparent 100%);
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.video-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
}

.video-card-info {
  font-size: 0.8rem;
  color: #94a3b8;
}

.video-card-role {
  color: #60a5fa;
  font-weight: 600;
}

/* Exclusive Benefits / Course Benefits Section */
.benefits-section {
  padding: 85px 0;
}

/* ─── VISUAL PARITY CHANGES ──────────────────────────────── */

/* Hero orbits layout */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 30%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
  display: inline-block;
}

/* Hero Stats Line */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
  max-width: 500px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.hero-trust-item i {
  color: #60a5fa;
  font-size: 1.1rem;
}

/* Orbiting elements */
.hero-graphics {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 520px;
}

.hero-orbit-wrapper {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(59, 130, 246, 0.15);
}

.orbit-ring-outer {
  width: 400px;
  height: 400px;
  animation: spin 60s linear infinite;
}

.orbit-ring-inner {
  width: 280px;
  height: 280px;
  animation: spin-reverse 45s linear infinite;
}

.student-image-container {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(148, 163, 184, 0.05) 50%, rgba(59, 130, 246, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  overflow: hidden;
}

.student-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.orbit-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(59, 130, 246, 0.2);
  padding: 8px 14px;
  border-radius: 50px;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: float-y 6s ease-in-out infinite;
}

.orbit-item:hover {
  border-color: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  transform: translateY(-5px);
}

.orbit-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.orbit-label-box {
  display: flex;
  flex-direction: column;
}

.orbit-title {
  color: #f1f5f9;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Specific Orbit Positions */
.orbit-1 {
  top: 40px;
  left: 10px;
  animation-delay: 0s;
}

.orbit-2 {
  top: 70px;
  right: 10px;
  animation-delay: 1.5s;
}

.orbit-3 {
  bottom: 85px;
  left: 10px;
  animation-delay: 0.75s;
}

.orbit-4 {
  bottom: 95px;
  right: 10px;
  animation-delay: 2.25s;
}

/* Beyond Training Badge Capsule */
.beyond-training-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(59, 130, 246, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  margin-top: -30px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.beyond-left {
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
}

.beyond-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.beyond-right {
  font-size: 0.85rem;
  font-weight: 700;
  color: #3b82f6;
  white-space: nowrap;
}

.card-included-glow {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Featured Course Cards bullets */
.course-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.course-bullet i {
  color: #3b82f6;
  font-size: 0.95rem;
}

.course-meta-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin-bottom: 18px;
}

.meta-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f1f5f9;
}

.highlight-green {
  color: #10b981;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.2);
}

.course-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* Placements posters styling */
.placement-card {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
  border-radius: 12px;
}

.placement-poster-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  aspect-ratio: 4 / 5;
}

.placement-poster-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
}

.placement-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Testimonial Thumb Crop Sizing */
.video-card-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0f172a;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vthumb-dinesh {
  object-position: 78% 28%;
}

.vthumb-priya {
  object-position: 78% 28%;
}

.vthumb-vikram {
  object-position: 78% 25%;
}

.vthumb-sanjay {
  object-position: 78% 25%;
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
}

.video-card-details {
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 2px;
}

.video-card-role {
  font-size: 0.8rem;
  color: #60a5fa;
  font-weight: 500;
}

.video-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Keyframes for Hero animations */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  #courses .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  #courses .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Media Query overrides for new elements */
@media (max-width: 992px) {
  .atg-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .atg-info-col {
    order: 2;
  }

  .atg-card-container {
    order: 1;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .atg-card-3d {
    width: 320px;
    height: 200px;
    border-radius: 16px;
  }

  .atg-card-inner {
    padding: 16px;
  }

  .atg-card-number {
    font-size: 1.1rem;
    margin: 12px 0 6px;
  }

  .atg-card-value {
    font-size: 0.8rem;
  }

  .atg-card-brand {
    font-size: 1.25rem;
  }

  .atg-card-chip {
    width: 36px;
    height: 28px;
  }

  .atg-benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── ADDITIONAL SITE-WIDE RESPONSIVENESS FIXES ─── */

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 16px;
  }

  /* Hide raw linebreaks in titles on mobile to let them wrap naturally */
  .hero h1 br,
  .course-hero h1 br {
    display: none;
  }

  /* Dynamic scale calculation for Orbit Graphics on mobile viewports */
  .hero-graphics {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    height: calc(480px * min(1, calc((100vw - 32px) / 560))) !important;
    margin-bottom: 50px;
    /* Space for the capsule badge and spacing */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-orbit-wrapper {
    width: calc(480px * min(1, calc((100vw - 32px) / 560))) !important;
    height: calc(480px * min(1, calc((100vw - 32px) / 560))) !important;
    transform: scale(min(1, calc((100vw - 32px) / 560))) !important;
    transform-origin: center center;
    flex-shrink: 0 !important;
  }

  /* Beyond Training Badge - wrapping text and spacing */
  .beyond-training-badge {
    padding: 8px 16px !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    border-radius: 20px !important;
    margin-top: -20px !important;
    text-align: center !important;
    max-width: 95% !important;
  }

  .beyond-left,
  .beyond-right {
    font-size: 0.8rem !important;
  }

  .beyond-divider {
    display: none !important;
  }

  /* Compact orbit items on smaller screens to reduce visual spread */
  .orbit-item {
    padding: 6px 10px;
  }

  .orbit-icon-box {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .orbit-title {
    font-size: 0.78rem;
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {

  /* Stacking columns for highlights on mobile */
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Placements list single column layout on mobile to keep text in posters legible */
  #placementsGrid.grid-4,
  #placements-section .grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Stacking stats inside cards on small mobile viewports */
  .hero-stats-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }

  /* Make hero buttons full width for touch accuracy */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Make CTA buttons full width */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-contacts {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Filter categories spacing */
  .filter-tabs {
    gap: 6px;
    margin-bottom: 24px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  /* Curriculum padding sizing */
  .curriculum-module-header {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {

  /* Stats grid stack on very narrow devices */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Scale the premium 3D card down to fit 320px screens perfectly without overflow */
  .atg-card-3d {
    width: 280px;
    height: 180px;
    border-radius: 12px;
  }

  .atg-card-number {
    font-size: 1rem;
    letter-spacing: 0.12em;
    margin: 10px 0 4px;
  }

  .atg-card-brand {
    font-size: 1.1rem;
  }

  .atg-card-chip {
    width: 30px;
    height: 24px;
  }

  .atg-card-value {
    font-size: 0.75rem;
  }

  .atg-card-holder {
    margin-right: 4px;
  }
}

/* ─── YOUTUBE SHORTS VIDEO CARDS ──────────────────────────── */
.yt-video-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.yt-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-thumb-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: none;
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

.yt-video-card:hover .yt-play-overlay {
  transform: translate(-50%, -50%) scale(1.15);
}

/* 3-column grid for the 3 Shorts, responsive */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
  }
}

/* ─── ENROLL MODAL POPUP & SUCCESS TOAST ─── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 90%;
  max-width: 440px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #fff;
}

.modal-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  margin-top: 10px;
  text-align: left;
}

.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.25);
  background: rgba(30, 41, 59, 0.8);
}

.form-input::placeholder {
  color: #64748b;
}

/* Phone input specifics */
.phone-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(30, 41, 59, 0.6);
  border-radius: 10px;
  padding: 0;
  position: relative;
}

.phone-group:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.25);
  background: rgba(30, 41, 59, 0.8);
}

.phone-select-wrapper {
  padding: 12px 12px 12px 16px;
  border-right: 1px solid rgba(59, 130, 246, 0.15);
}

.phone-select {
  background: transparent;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}

.phone-input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 12px 16px !important;
}

/* Submit button details */
.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #d946ef 0%, #a21caf 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(162, 28, 175, 0.3);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(162, 28, 175, 0.5);
  filter: brightness(1.1);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.error-message {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 4px;
  display: none;
  text-align: left;
}

.form-group.invalid .error-message,
.phone-group.invalid .error-message {
  display: block;
}

.form-group.invalid .form-input,
.form-group.invalid .phone-group {
  border-color: #ef4444 !important;
}

.modal-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(180, 83, 9, 0.15);
  border: 1px solid rgba(180, 83, 9, 0.3);
  border-radius: 10px;
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Toast alert styles */
.success-toast {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -20px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid #10b981;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 24px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.toast-icon {
  color: #10b981;
  font-size: 1.2rem;
}

/* Responsive Nav Breakpoint */
@media (max-width: 992px) {
  .navbar-links {
    display: none;
  }

  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    gap: 4px;
  }

  .navbar-links.open a,
  .navbar-links.open .nav-dropdown-trigger {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-cta .btn {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    background: rgba(15, 23, 42, 0.5);
    margin-top: 4px;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
}