/* ============================================================
   TRIVIKRA TECH 4.0 — REUSABLE COMPONENTS
   File: assets/css/components.css
   
   All reusable UI components: navbar, buttons, cards, forms,
   accordions, tabs, sliders, footer, etc.
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   1. BUTTONS
   ════════════════════════════════════════════════════════════ */

/* Base Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 28px;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  line-height: 1.5;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Primary Button (Liquid Glass Blue) */
.btn-primary {
  background: linear-gradient(135deg, rgba(33, 60, 114, 0.94) 0%, rgba(45, 82, 153, 0.88) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              border-color 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(45, 82, 153, 0.98) 0%, rgba(33, 60, 114, 0.94) 100%);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: none;
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

/* Secondary Button (Liquid Glass Clear) */
.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.52) 100%);
  color: var(--primary);
  border: 1px solid rgba(33, 60, 114, 0.2);
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              color 0.25s ease,
              border-color 0.3s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px) scale(1.02);
  box-shadow: none;
}

.btn-secondary:active {
  transform: translateY(0) scale(0.99);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: transparent;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}

.btn-ghost:hover {
  background: linear-gradient(135deg, rgba(33, 60, 114, 0.08) 0%, rgba(33, 60, 114, 0.03) 100%);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: none;
}

/* White Button (Liquid White Glass) */
.btn-white {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.btn-white:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: none;
}

/* Outline White (Liquid Outline Glass) */
.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, border-color 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-2px) scale(1.02);
  box-shadow: none;
}

/* Accent Button */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* Button Sizes */
.btn-sm {
  padding: 8px 18px;
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: var(--text-base);
}

.btn-xl {
  padding: 18px 40px;
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

/* Ripple Effect */
.ripple-effect {
  position: absolute;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(40);
    opacity: 0;
  }
}


/* ════════════════════════════════════════════════════════════
   2. NAVIGATION
   ════════════════════════════════════════════════════════════ */

/* Sticky Navbar */
/* Sticky Navbar — Liquid Glass & Perfectly Centered Alignment */
.site-navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1280px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 13px 24px;
  min-height: 64px;
  height: auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.48) 100%);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-full);
  z-index: var(--z-sticky);
  box-shadow: 0 12px 36px 0 rgba(31, 38, 135, 0.08),
              inset 0 1px 2px 0 rgba(255, 255, 255, 0.95),
              inset 0 -1px 2px 0 rgba(0, 0, 0, 0.03);
  transition: min-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s ease,
              background 0.3s ease,
              box-shadow 0.35s ease,
              border-radius 0.3s ease,
              top 0.3s ease;
  overflow: hidden;
}

.site-navbar.scrolled {
  top: 12px;
  min-height: 60px;
  padding-top: 11px;
  padding-bottom: 11px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
  box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.1),
              inset 0 1px 2px 0 rgba(255, 255, 255, 0.95);
}

.site-navbar.nav-hidden {
  transform: translateX(-50%) translateY(-140%);
}

/* Nav Logo Centered Alignment */
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  text-decoration: none;
  margin: 0;
  padding: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo:hover {
  transform: translateY(-2px) scale(1.04);
}

.nav-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav Links Centered Alignment */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: var(--space-1);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: var(--weight-medium);
  line-height: 1;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.25s ease,
              background 0.25s ease,
              box-shadow 0.25s ease;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  position: relative;
  margin: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(33, 60, 114, 0.08) 0%, rgba(33, 60, 114, 0.03) 100%);
  border-color: rgba(33, 60, 114, 0.1);
  transform: translateY(-2px) scale(1.04);
  box-shadow: none;
}

.nav-link .bi-chevron-down {
  font-size: 11px;
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  transition: transform var(--duration) var(--ease);
}

.nav-link:hover .bi-chevron-down {
  transform: translateY(2px);
}

/* Nav Right Container & CTA Centered Alignment */
.site-navbar .d-flex {
  display: inline-flex;
  align-items: center;
  height: 38px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease;
  white-space: nowrap;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
}

.nav-cta i {
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  transform: translateY(-3px) scale(1.04);
  box-shadow: none;
}


/* ── Mega Menu & Dropdowns (Full-Width Expanding Liquid Glass Navbar) ── */
@media (min-width: 992px) {
  .nav-item-dropdown {
    position: static;
  }

  .site-navbar {
    transition: min-height 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                padding 0.35s ease,
                background 0.3s ease,
                box-shadow 0.35s ease,
                border-radius 0.3s ease,
                top 0.3s ease;
  }

  /* Services Dropdown (2 Rows) — Expanded height: 250px */
  .site-navbar.services-active,
  .site-navbar:has(.nav-item-dropdown:hover .mega-menu),
  .site-navbar:has(.nav-item-dropdown.menu-open .mega-menu) {
    min-height: 250px;
    padding-bottom: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    box-shadow: 0 28px 70px 0 rgba(31, 38, 135, 0.16),
                inset 0 1px 2px 0 rgba(255, 255, 255, 0.95);
  }

  /* Academy Dropdown (1 Row) — Comfortable height: 155px */
  .site-navbar.academy-active,
  .site-navbar:has(.nav-item-dropdown:hover .nav-dropdown),
  .site-navbar:has(.nav-item-dropdown.menu-open .nav-dropdown) {
    min-height: 155px;
    padding-bottom: 22px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    box-shadow: 0 24px 60px 0 rgba(31, 38, 135, 0.14),
                inset 0 1px 2px 0 rgba(255, 255, 255, 0.95);
  }

  /* Embedded Full-Width Mega Menu inside Navbar */
  .mega-menu {
    position: absolute;
    top: 56px;
    left: 24px;
    right: 24px;
    width: calc(100% - 48px);
    min-width: unset;
    transform: translateY(6px);
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: var(--space-3) 0 0 0;
    border-top: 1px solid rgba(33, 60, 114, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: var(--z-dropdown);
  }

  .nav-item-dropdown:hover .mega-menu,
  .nav-item-dropdown.menu-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }

  .mega-link {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .mega-link:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 60, 114, 0.06);
  }

  .mega-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: var(--radius-md);
    background: var(--primary-subtle);
    color: var(--primary);
    font-size: var(--text-base);
  }

  .mega-link-text h6 {
    font-size: 14px;
    font-weight: var(--weight-semibold);
    color: var(--text);
    margin-bottom: 2px;
  }

  .mega-link-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.35;
    margin: 0;
  }

  .mega-menu-footer {
    display: none;
  }

  /* Embedded Academy Dropdown inside Navbar */
  .nav-dropdown {
    position: absolute;
    top: 56px;
    left: 24px;
    right: 24px;
    width: calc(100% - 48px);
    min-width: unset;
    transform: translateY(6px);
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: var(--space-3) 0 0 0;
    border-top: 1px solid rgba(33, 60, 114, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: var(--z-dropdown);
  }

  .nav-item-dropdown.menu-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown .dropdown-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    font-size: 14px;
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .nav-dropdown .dropdown-link:hover {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 60, 114, 0.06);
  }

  .nav-dropdown .dropdown-divider {
    display: none;
  }
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--bg-subtle);
  color: var(--text);
}

.dropdown-link i {
  font-size: var(--text-base);
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-2) var(--space-4);
}


/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: var(--radius-full);
  transition: var(--transition);
  transform-origin: center;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── Mobile Drawer ── */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-smooth);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}

.nav-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border);
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  color: var(--text);
  font-size: var(--text-base);
  transition: var(--transition);
}

.drawer-close:hover {
  background: var(--bg-subtle);
}

.drawer-nav {
  padding: var(--space-4) 0;
}

.drawer-nav-item {
  border-bottom: 1px solid var(--border-light);
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) var(--space-6);
  font-size: 15px;
  font-weight: var(--weight-medium);
  color: var(--text);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
}

.drawer-nav-link:hover {
  background: var(--bg-subtle);
  color: var(--primary);
}

.drawer-nav-link.active {
  color: var(--primary);
}

.drawer-nav-link .bi-chevron-down {
  font-size: 12px;
  transition: transform var(--duration) var(--ease);
}

.drawer-nav-link .bi-chevron-down.rotated {
  transform: rotate(180deg);
}

.drawer-sub-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease);
  background: var(--bg-subtle);
}

.drawer-sub-links.open {
  max-height: 500px;
}

.drawer-sub-link {
  display: block;
  padding: var(--space-3) var(--space-6) var(--space-3) var(--space-10);
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.drawer-sub-link:hover {
  color: var(--primary);
}

.drawer-cta-item {
  padding: var(--space-4) var(--space-6);
}


/* ════════════════════════════════════════════════════════════
   3. CARDS
   ════════════════════════════════════════════════════════════ */

/* Service Card */
.service-card {
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  color: inherit;
}

.service-card .service-number {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--text-light);
  margin-bottom: var(--space-5);
}

.service-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}

/* Feature Card */
.feature-card {
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.feature-card h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-3);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

/* Case Study Card */
.case-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

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

.case-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: var(--text-4xl);
}

.case-card-body {
  padding: var(--space-6);
}

.case-card-tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.case-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-2);
}

.case-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

/* ─── Industries Bento Glass Card Grid ─── */
.industries-section {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(33, 60, 114, 0.03) 50%, rgba(255, 255, 255, 0) 100%);
}

.industry-card {
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px 0 rgba(31, 38, 135, 0.06),
              inset 0 1px 2px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 50px 0 rgba(33, 60, 114, 0.12),
              inset 0 1px 2px 0 rgba(255, 255, 255, 0.95);
  border-color: rgba(33, 60, 114, 0.25);
}

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

.industry-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.industry-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(33, 60, 114, 0.1) 0%, rgba(33, 60, 114, 0.04) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid rgba(33, 60, 114, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
}

.industry-card:hover .industry-badge-icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(33, 60, 114, 0.25);
}

.industry-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(33, 60, 114, 0.06);
  color: var(--text-muted);
  border: 1px solid rgba(33, 60, 114, 0.1);
}

.industry-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.industry-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.industry-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(33, 60, 114, 0.08);
}

.industry-card-features span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(33, 60, 114, 0.05);
  padding: 4px 10px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Course Card */
/* ─── Ultra-Premium Course Cards ─── */
.course-card {
  border: 1px solid rgba(33, 60, 114, 0.1);
  border-radius: var(--radius-2xl);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(31, 38, 135, 0.05);
  position: relative;
}

.course-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(33, 60, 114, 0.25);
  box-shadow: 0 24px 50px rgba(33, 60, 114, 0.14);
}

.course-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 16px 40px rgba(33, 60, 114, 0.12);
}

.course-popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 6px 16px rgba(33, 60, 114, 0.3);
  z-index: 3;
}

.course-header {
  padding: 28px 28px 20px;
  position: relative;
  background: linear-gradient(180deg, rgba(33, 60, 114, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.course-card.featured .course-header {
  background: linear-gradient(180deg, rgba(33, 60, 114, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}

.course-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.course-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(33, 60, 114, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid rgba(33, 60, 114, 0.1);
}

.course-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(33, 60, 114, 0.12) 0%, rgba(33, 60, 114, 0.04) 100%);
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 18px;
  border: 1px solid rgba(33, 60, 114, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
}

.course-card:hover .course-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(33, 60, 114, 0.25);
}

.course-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.course-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.course-body {
  padding: 0 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-features {
  flex: 1;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  background: rgba(33, 60, 114, 0.03);
  border: 1px solid rgba(33, 60, 114, 0.06);
  font-size: 13.5px;
  font-weight: 600;
  color: #1E293B;
  transition: background 0.2s ease, transform 0.2s ease;
}

.course-card:hover .course-features li {
  background: rgba(33, 60, 114, 0.05);
}

.course-features li i {
  color: #10B981;
  font-size: 15px;
  flex-shrink: 0;
}

.course-actions {
  margin-top: auto;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(33, 60, 114, 0.05);
  border: 1px solid rgba(33, 60, 114, 0.1);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
}

.tech-chip:hover {
  background: rgba(33, 60, 114, 0.1);
  transform: translateY(-1px);
}

/* ─── Next-Gen Academy Program Cards & Filter ─── */
.program-filter-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(33, 60, 114, 0.05);
  border: 1px solid rgba(33, 60, 114, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.filter-tab-btn {
  padding: 8px 22px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-tab-btn.active,
.filter-tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(33, 60, 114, 0.22);
}

.bento-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  background: rgba(33, 60, 114, 0.05);
  color: var(--primary);
}

.feature-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 576px) {
  .feature-grid-2col {
    grid-template-columns: 1fr;
  }
}

/* ─── Ultra-Modern Academy Card V2 Design ─── */
.academy-card-v2 {
  background: var(--white);
  border: 1px solid rgba(33, 60, 114, 0.12);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(31, 38, 135, 0.06);
}

.academy-card-v2:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(33, 60, 114, 0.3);
  box-shadow: 0 24px 60px rgba(33, 60, 114, 0.15);
}

.academy-card-v2.featured-v2 {
  border: 2px solid var(--primary);
  box-shadow: 0 16px 48px rgba(33, 60, 114, 0.14);
}

/* Banner Top Covers */
.acad-card-banner {
  height: 110px;
  padding: 18px 24px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.acad-card-banner.banner-uiux {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
}

.acad-card-banner.banner-graphic {
  background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #581c87 100%);
}

.acad-card-banner.banner-webdev {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #115e59 100%);
}

.acad-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.acad-popular-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Card Content Overlay & Icon */
.acad-card-content {
  padding: 0 28px 28px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.acad-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(33, 60, 114, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
  border: 2px solid var(--white);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.academy-card-v2:hover .acad-icon-badge {
  transform: scale(1.1) rotate(-4deg);
}

.acad-card-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.acad-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Feature List V2 */
.acad-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.acad-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(33, 60, 114, 0.03);
  border: 1px solid rgba(33, 60, 114, 0.06);
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
}

.academy-card-v2:hover .acad-feature-list li {
  background: rgba(33, 60, 114, 0.06);
}

.acad-feature-list li i {
  color: #10B981;
  font-size: 16px;
  flex-shrink: 0;
}

.acad-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(33, 60, 114, 0.12);
}

/* ─── Breadcrumbs (Hidden globally) ─── */
.breadcrumb-nav {
  display: none !important;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--primary);
}

.breadcrumb-list .separator {
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb-list .current {
  color: var(--primary);
  font-weight: 600;
}

/* ─── Blog Cards (Grid & Home) ─── */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(33, 60, 114, 0.1);
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 60, 114, 0.25);
  box-shadow: 0 20px 45px rgba(31, 38, 135, 0.12);
  color: inherit;
}

.blog-card-image,
.blog-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-muted);
}

.blog-card-image img,
.blog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image img,
.blog-card:hover .blog-image-wrap img {
  transform: scale(1.06);
}

.blog-card-body,
.blog-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta,
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.blog-meta-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(33, 60, 114, 0.35);
  margin: 0 2px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(33, 60, 114, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.blog-card-title,
.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.blog-card:hover .link-arrow {
  gap: 10px;
}

/* ─── Blog Article Detail Page ─── */
.blog-article {
  padding-top: calc(var(--nav-height, 100px) + 32px);
  padding-bottom: 90px;
}

.btn-back-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(33, 60, 114, 0.06);
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.btn-back-blog:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(-3px);
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-article-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .blog-article-title {
    font-size: 28px;
  }
}

.blog-article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  background: rgba(33, 60, 114, 0.04);
  border: 1px solid rgba(33, 60, 114, 0.08);
  margin-bottom: 40px;
}

.blog-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.blog-author-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.blog-author-role {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

.blog-article-content {
  font-size: 17px;
  line-height: 1.8;
  color: #2D3748;
}

.blog-article-content p {
  margin-bottom: 24px;
}

.blog-article-content p.lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 32px;
}

.blog-article-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-top: 44px;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.blog-article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 14px;
}

.blog-article-content ul, 
.blog-article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.blog-article-content li {
  margin-bottom: 10px;
}

.blog-article-content blockquote {
  background: linear-gradient(135deg, rgba(33, 60, 114, 0.05) 0%, rgba(255, 116, 116, 0.05) 100%);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--text);
}

/* Team Card */
.team-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: var(--transition);
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto var(--space-4);
  border: 3px solid var(--border);
}

.team-name {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-1);
}

.team-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Pricing Card */
.pricing-card {
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: var(--transition);
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  position: relative;
}


/* ════════════════════════════════════════════════════════════
   4. ACCORDION / FAQ
   ════════════════════════════════════════════════════════════ */
.faq-list,
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(33, 60, 114, 0.12);
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(33, 60, 114, 0.25);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(33, 60, 114, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question h5 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  color: inherit;
  line-height: 1.45;
  flex: 1;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(33, 60, 114, 0.06);
  font-size: 14px;
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* FAQ Video Showcase Card */
.faq-video-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(33, 60, 114, 0.12);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(33, 60, 114, 0.06);
  height: auto;
  display: flex;
  flex-direction: column;
}

.faq-video-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(33, 60, 114, 0.15);
  filter: blur(50px);
  border-radius: 50%;
  pointer-events: none;
}

.faq-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.faq-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-video-footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.faq-video-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.faq-video-subtitle {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.faq-video-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-video-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.faq-video-highlights li i {
  color: var(--primary);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}



/* ════════════════════════════════════════════════════════════
   5. TABS
   ════════════════════════════════════════════════════════════ */
.tab-nav {
  display: flex;
  gap: var(--space-1);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-8);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: var(--space-3) var(--space-5);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: var(--weight-semibold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn var(--duration) var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ════════════════════════════════════════════════════════════
   6. TESTIMONIALS SLIDER
   ════════════════════════════════════════════════════════════ */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--space-4);
}

.testimonial-card {
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-style: italic;
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-6);
  border-left: 3px solid var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--text);
}

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

/* Google Reviews Summary & Marquee Slider */
.google-reviews-summary-card {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 28px;
  background: var(--white);
  border: 1px solid rgba(33, 60, 114, 0.12);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(33, 60, 114, 0.06);
  flex-wrap: wrap;
}

.google-score-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-score-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.google-stars-gold {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 2px;
}

.google-verified-pill {
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonials-slider-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.testimonials-slider-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonials-slider-track .testimonial-card {
  width: 360px;
  min-width: 360px;
  flex-shrink: 0;
  padding: 24px;
  margin: 0;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(33, 60, 114, 0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.slider-dots {
  display: flex;
  gap: var(--space-2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--primary);
  width: 24px;
}


/* ════════════════════════════════════════════════════════════
   7. FORMS
   ════════════════════════════════════════════════════════════ */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.form-control-custom {
  width: 100%;
  padding: 11px 16px;
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(33, 60, 114, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
  outline: none;
  box-shadow: 0 2px 4px rgba(33, 60, 114, 0.02);
}

.form-control-custom:hover {
  border-color: rgba(33, 60, 114, 0.3);
}

.form-control-custom:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(33, 60, 114, 0.12);
}

.form-control-custom::placeholder {
  color: #94a3b8;
}

.form-control-custom.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control-custom.is-valid {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

textarea.form-control-custom {
  min-height: 90px;
  resize: vertical;
}

select.form-control-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%236B7280' d='M4.646 5.646a.5.5 0 01.708 0L8 8.293l2.646-2.647a.5.5 0 01.708.708l-3 3a.5.5 0 01-.708 0l-3-3a.5.5 0 010-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  padding-right: 38px;
}

/* Premium Form Card Wrapper & Input Icon Groups */
.enroll-card-box {
  background: var(--white);
  border: 1px solid rgba(33, 60, 114, 0.12);
  border-radius: var(--radius-2xl);
  padding: 28px;
  box-shadow: 0 16px 40px rgba(33, 60, 114, 0.07);
  position: relative;
  overflow: hidden;
}

.enroll-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #3b82f6 50%, #10B981 100%);
}

.enroll-form-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(33, 60, 114, 0.08);
}

.enroll-form-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.enroll-form-header p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrapper i.input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s ease;
  z-index: 5;
}

.input-icon-wrapper .form-control-custom {
  padding-left: 42px !important;
}

.input-icon-wrapper:focus-within i.input-icon {
  color: var(--primary);
  transform: scale(1.08);
}

.btn-submit-premium {
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 20px rgba(33, 60, 114, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-submit-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(33, 60, 114, 0.3);
  background: linear-gradient(135deg, #1d3557 0%, var(--primary) 100%);
  color: var(--white);
}

.btn-submit-premium:disabled,
.btn-submit-premium.btn-disabled,
.btn-primary:disabled,
.btn-primary.btn-disabled,
form button[type="submit"]:disabled,
form button[type="submit"].btn-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: grayscale(40%);
}

/* Mission & Vision Cards & Founder Spotlight */
.mission-vision-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mv-card {
  padding: 32px;
  border-radius: var(--radius-2xl);
  background: var(--white);
  border: 1px solid rgba(33, 60, 114, 0.12);
  box-shadow: 0 10px 30px rgba(33, 60, 114, 0.05);
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(33, 60, 114, 0.1);
}

.mv-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.mv-icon-mission {
  background: rgba(33, 60, 114, 0.1);
  color: var(--primary);
}

.mv-icon-vision {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.mv-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.mv-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.founder-img-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(33, 60, 114, 0.12);
}

.founder-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.founder-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.founder-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f8fafc;
  border: 1px solid rgba(33, 60, 114, 0.1);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}

.founder-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(33, 60, 114, 0.06);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.founder-social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.form-feedback {
  font-size: 12.5px;
  margin-top: 0;
  min-height: 0;
}

.form-feedback:not(:empty) {
  margin-top: 4px;
  min-height: 18px;
}

.form-feedback.invalid {
  color: var(--accent);
}

.form-feedback.valid {
  color: #10B981;
}

/* Form Success Message */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-10);
  gap: var(--space-4);
}

.form-success i {
  font-size: var(--text-5xl);
  color: #10B981;
}

.form-success h3 {
  font-size: var(--text-xl);
  color: var(--text);
}

.form-success p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Newsletter Form */
.newsletter-input-wrap {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.footer-email-input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  font-family: var(--font);
  font-size: var(--text-xs);
  color: var(--text);
  background: transparent;
  outline: none;
}

.footer-email-input::placeholder {
  color: var(--text-light);
}

.footer-email-btn {
  padding: 10px 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.footer-email-btn:hover {
  background: var(--primary-light);
}


/* ════════════════════════════════════════════════════════════
   8. FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: var(--space-20) 0 var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
}

.footer-brand .footer-desc {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-newsletter-desc {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-4);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--white);
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

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

/* Footer v3.0 Social Icons (preserved) */
.example-2 {
  display: flex;
  gap: var(--space-3);
  padding: 0;
  margin: 0;
}

.example-2 .icon-content {
  position: relative;
}

.example-2 .icon-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.example-2 .icon-content a .filled {
  display: none;
}

.example-2 .icon-content a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.example-2 .icon-content .tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  background: var(--text);
  color: var(--white);
  font-size: 11px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Footer Bottom */
.footer-bottom {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.2);
}


/* ════════════════════════════════════════════════════════════
   9. ACADEMY FEATURES BAR
   ════════════════════════════════════════════════════════════ */
.academy-features-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-subtle);
  flex-wrap: wrap;
}

.academy-feat {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--text);
}

.academy-feat i {
  color: var(--primary);
}

.academy-feat-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}


/* ════════════════════════════════════════════════════════════
   10. BLOG LISTING COMPONENTS
   ════════════════════════════════════════════════════════════ */

/* Search Bar */
.blog-search {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  max-width: 400px;
}

.blog-search input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--text);
  outline: none;
}

.blog-search input::placeholder {
  color: var(--text-light);
}

.blog-search button {
  padding: 10px 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.blog-search button:hover {
  color: var(--primary);
}

/* Category Filter */
.category-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-2) var(--space-4);
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

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

/* Pagination */
.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-12);
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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


/* ════════════════════════════════════════════════════════════
   11. BLOG DETAIL ARTICLE STYLES
   ════════════════════════════════════════════════════════════ */
.article-header {
  margin-bottom: var(--space-10);
}

.article-category {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.article-title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  color: var(--text);
  margin-bottom: var(--space-5);
  line-height: var(--leading-tight);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-meta .author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--weight-medium);
  color: var(--text);
}

.article-body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.article-body h2 {
  font-size: var(--text-2xl);
  margin: var(--space-10) 0 var(--space-4);
}

.article-body h3 {
  font-size: var(--text-xl);
  margin: var(--space-8) 0 var(--space-3);
}

.article-body p {
  margin-bottom: var(--space-5);
}

.article-body ul,
.article-body ol {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.article-body blockquote {
  padding: var(--space-6);
  border-left: 3px solid var(--primary);
  background: var(--bg-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.article-body img {
  border-radius: var(--radius-lg);
  margin: var(--space-6) 0;
}

.article-body strong {
  color: var(--text);
  font-weight: var(--weight-semibold);
}

.article-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--primary-light);
}

/* Article Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  margin-bottom: var(--space-6);
}

.sidebar-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}

/* Related Post Item */
.related-post-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-light);
}

.related-post-item:last-child {
  border-bottom: none;
}

.related-post-item h6 {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--text);
  line-height: var(--leading-snug);
}

.related-post-item h6 a {
  color: inherit;
  text-decoration: none;
}

.related-post-item h6 a:hover {
  color: var(--primary);
}

.related-post-date {
  font-size: 12px;
  color: var(--text-light);
  margin-top: var(--space-1);
}


/* ════════════════════════════════════════════════════════════
   12. WORKFLOW / SERVICE PAGE COMPONENTS
   ════════════════════════════════════════════════════════════ */
.workflow-steps {
  counter-reset: workflow;
}

.workflow-step {
  counter-increment: workflow;
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border-light);
}

.workflow-step:last-child {
  border-bottom: none;
}

.workflow-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
}

.workflow-step-content h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-2);
}

.workflow-step-content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Problem / Solution blocks */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.problem-card,
.solution-card {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.problem-card {
  background: var(--bg-subtle);
}

.solution-card {
  background: var(--primary-subtle);
  border-color: rgba(33, 60, 114, 0.15);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: var(--text-lg);
}

.benefit-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--text);
  margin-bottom: var(--space-2);
}

.benefit-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}


/* ════════════════════════════════════════════════════════════
   13. ACADEMY COURSE MODULE LIST
   ════════════════════════════════════════════════════════════ */
.module-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
}

.module-item:hover {
  border-color: var(--border-hover);
}

.module-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-full);
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}

.module-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text);
  margin-bottom: var(--space-1);
}

.module-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* Spin animation for loading buttons */
@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ════════════════════════════════════════════════════════════
   14. TRI — AI CHATBOT SYSTEM (Liquid Glass Interface)
   ════════════════════════════════════════════════════════════ */

#tri-root {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999999;
  font-family: var(--font-main, 'Manrope', sans-serif);
}

/* FAB Button */
#tri-fab {
  position: fixed;
  bottom: 94px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #152850 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(33, 60, 114, 0.35),
              inset 0 1px 2px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

#tri-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(33, 60, 114, 0.45),
              inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

#tri-fab-open, #tri-fab-close {
  display: flex;
  align-items: center;
  justify-content: center;
}

#tri-notif {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(255, 116, 116, 0.4);
}

#tri-badge {
  position: fixed;
  bottom: 102px;
  right: 96px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(31, 38, 135, 0.12);
  white-space: nowrap;
  pointer-events: none;
  animation: triBadgePulse 2s infinite;
  display: none;
}

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

/* Main Chat Window */
#tri-window {
  position: fixed;
  bottom: 164px;
  right: 24px;
  width: 380px;
  height: 560px;
  max-height: calc(100vh - 180px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 24px 60px 0 rgba(31, 38, 135, 0.18),
              inset 0 1px 2px 0 rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.94) translateY(20px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999998;
}

#tri-window.tri-win-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

/* Header */
#tri-header {
  background: linear-gradient(135deg, var(--primary) 0%, #172D56 100%);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#tri-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

#tri-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#tri-name {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

#tri-badge-ai {
  font-size: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 800;
}

#tri-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

#tri-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

#tri-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

#tri-mute-btn, #tri-close-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

#tri-mute-btn:hover, #tri-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Chat Messages Body */
#tri-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.tri-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 88%;
}

.tri-msg-bot {
  align-self: flex-start;
}

.tri-msg-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.tri-avatar-mini {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tri-bubble {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.tri-bubble-bot {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(33, 60, 114, 0.1);
  border-radius: 18px 18px 18px 4px;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(31, 38, 135, 0.05);
}

.tri-bubble-user {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 4px 14px rgba(33, 60, 114, 0.2);
}

.tri-bullet {
  color: var(--primary);
  font-weight: bold;
}

/* Quick Response Chips */
#tri-chips {
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 110px;
  overflow-y: auto;
}

.tri-chip {
  background: rgba(33, 60, 114, 0.06);
  color: var(--primary);
  border: 1px solid rgba(33, 60, 114, 0.16);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tri-chip:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 60, 114, 0.15);
}

/* Typing Dots */
.tri-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}

.tri-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: triDotPulse 1.4s infinite ease-in-out both;
}

.tri-dots span:nth-child(1) { animation-delay: -0.32s; }
.tri-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes triDotPulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Form Footer */
#tri-footer {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(33, 60, 114, 0.08);
}

#tri-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

#tri-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(33, 60, 114, 0.18);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

#tri-input:focus {
  border-color: var(--primary);
}

#tri-mic-btn, #tri-send-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#tri-mic-btn {
  background: rgba(33, 60, 114, 0.08);
  color: var(--primary);
}

#tri-mic-btn.tri-listening {
  background: var(--accent);
  color: var(--white);
  animation: triDotPulse 1s infinite;
}

#tri-send-btn {
  background: var(--primary);
  color: var(--white);
}

#tri-send-btn:hover {
  background: var(--primary-light);
  transform: scale(1.06);
}

/* Mobile Media Queries */
@media (max-width: 768px) {
  #tri-fab {
    bottom: 78px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  #tri-badge {
    bottom: 84px;
    right: 74px;
  }

  #tri-window {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 136px;
    height: calc(100vh - 150px);
    border-radius: 20px;
  }
}

/* Hide Hero Carousel Indicators */
.hero-carousel-indicators,
.carousel-indicators {
  display: none !important;
}

/* ─── Card-less Animated Process Timeline ─── */
.process-timeline-section {
  position: relative;
  overflow: hidden;
}

.clean-process-timeline {
  position: relative;
  padding: 20px 0 10px;
}

.timeline-flow-track {
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: rgba(33, 60, 114, 0.15);
  z-index: 1;
}

.timeline-flow-pulse {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, #10B981 100%);
  border-radius: var(--radius-full);
  animation: flowTrackPulse 3s infinite ease-in-out;
}

@keyframes flowTrackPulse {
  0% { left: 0%; opacity: 0.2; }
  50% { opacity: 1; }
  100% { left: 65%; opacity: 0.2; }
}

.clean-process-timeline .row {
  position: relative;
  z-index: 5;
}

.timeline-step-item {
  position: relative;
  text-align: center;
  z-index: 5;
}

.timeline-step-node {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  z-index: 10;
  background: #F8FAFC;
  border-radius: 50%;
  padding: 6px;
}

.node-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(33, 60, 114, 0.25);
  position: relative;
  z-index: 12;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.node-circle.node-emerald {
  background: #10B981;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

.node-pulse-ring {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  border: 2px dashed rgba(33, 60, 114, 0.3);
  animation: spinRing 12s linear infinite;
  z-index: 11;
}

.node-pulse-ring.ring-emerald {
  border-color: rgba(16, 185, 129, 0.4);
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.timeline-step-item:hover .node-circle {
  transform: scale(1.15);
}

.timeline-step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-phase-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary);
  background: rgba(33, 60, 114, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.timeline-phase-label.phase-emerald {
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
}

.timeline-step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.timeline-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .timeline-flow-track {
    display: none;
  }
}

/* ─── Ultra-Premium Alternating Roadmap Track (.roadmap-timeline) ─── */
.roadmap-timeline {
  position: relative;
  max-width: 860px;
  margin: 30px auto 0;
  padding: 10px 0;
}

.roadmap-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(33, 60, 114, 0.12);
  transform: translateX(-50%);
  z-index: 1;
}

.roadmap-line-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, var(--primary) 50%, #10B981 100%);
  animation: roadmapLinePulse 4s infinite ease-in-out;
}

@keyframes roadmapLinePulse {
  0% { top: 0%; opacity: 0.2; }
  50% { opacity: 1; }
  100% { top: 65%; opacity: 0.2; }
}

.roadmap-item {
  position: relative;
  display: flex;
  margin-bottom: 24px;
  z-index: 2;
}

.roadmap-item:last-child {
  margin-bottom: 0;
}

.roadmap-left {
  justify-content: flex-start;
  padding-right: 50%;
}

.roadmap-right {
  justify-content: flex-end;
  padding-left: 50%;
}

.roadmap-node {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #FAFBFE, 0 4px 12px rgba(33, 60, 114, 0.2);
  z-index: 5;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-item:hover .roadmap-node {
  transform: translateX(-50%) scale(1.15);
  background: #10B981;
  box-shadow: 0 0 0 4px #FAFBFE, 0 6px 18px rgba(16, 185, 129, 0.35);
}

.roadmap-card {
  width: calc(100% - 24px);
  background: var(--white);
  border: 1px solid rgba(33, 60, 114, 0.1);
  border-radius: var(--radius-xl);
  padding: 18px 22px;
  box-shadow: 0 6px 20px rgba(31, 38, 135, 0.04);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.roadmap-left .roadmap-card {
  margin-right: 24px;
}

.roadmap-right .roadmap-card {
  margin-left: 24px;
}

.roadmap-item:hover .roadmap-card {
  transform: translateY(-4px);
  border-color: rgba(33, 60, 114, 0.22);
  box-shadow: 0 14px 35px rgba(33, 60, 114, 0.1);
}

.roadmap-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.roadmap-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(33, 60, 114, 0.08) 0%, rgba(33, 60, 114, 0.02) 100%);
  color: var(--primary);
  font-size: 17px;
  border: 1px solid rgba(33, 60, 114, 0.08);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.roadmap-item:hover .roadmap-icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.06) rotate(-4deg);
}

.roadmap-phase-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: rgba(33, 60, 114, 0.06);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 2px;
}

.roadmap-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.roadmap-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.roadmap-meta {
  border-top: 1px dashed rgba(33, 60, 114, 0.1);
  padding-top: 10px;
}

.roadmap-meta-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.roadmap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.roadmap-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  font-weight: 600;
  color: #1E293B;
  background: rgba(33, 60, 114, 0.03);
  border: 1px solid rgba(33, 60, 114, 0.06);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.roadmap-chip i {
  color: #10B981;
  font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .roadmap-line {
    left: 20px;
    transform: none;
  }
  .roadmap-left, .roadmap-right {
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .roadmap-left .roadmap-card, .roadmap-right .roadmap-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .roadmap-node {
    left: 20px;
    transform: translateX(-50%);
  }
  .roadmap-item:hover .roadmap-node {
    transform: translateX(-50%) scale(1.15);
  }
}

/* Emerald Utility Classes */
.bg-emerald {
  background-color: #10B981 !important;
  color: #ffffff !important;
}

.text-emerald {
  color: #059669 !important;
}

.bg-emerald-subtle {
  background-color: rgba(16, 185, 129, 0.08) !important;
}

.border-emerald-subtle {
  border-color: rgba(16, 185, 129, 0.25) !important;
}

.course-video-card .video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background: #000;
  aspect-ratio: 16 / 9;
}

.backdrop-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Curriculum Compact Card Style (Shared across Academy Course Pages) */
.curriculum-card-compact {
  background: var(--white);
  border: 1px solid rgba(33, 60, 114, 0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.curriculum-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(33, 60, 114, 0.08);
  border-color: rgba(33, 60, 114, 0.25);
}

.curriculum-card-compact .card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mod-pill {
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(33, 60, 114, 0.08);
  color: var(--primary);
}

.curriculum-card-compact .card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.curriculum-card-compact .card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}


