:root {
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.15);
  --primary: #5b6cff;
  /* Matches fixed navbar + offset; used for anchors + scroll spy */
  --nav-scroll-offset: 96px;
  /* Space for optional fixed bottom CTA (only when .floating-cta-bar is in the DOM) */
  --floating-cta-h: 64px;
  --text-muted: #b9b9b9;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-scroll-offset);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Anchor targets clear fixed navbar when scrolling from hero / nav */
#what-section,
#home,
#contact,
#email,
#contact-email {
  scroll-margin-top: var(--nav-scroll-offset);
}

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

body {
  font-family: "Gabarito", sans-serif;
  /* background: radial-gradient(circle at top, #0b0b24 0%, #020210 70%); */
  min-height: 100vh;
  background: #01010D;
  color: #fff;
  overflow-x: hidden;
  /* No extra strip at bottom unless the floating CTA bar is present */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

body:has(.floating-cta-bar) {
  padding-bottom: calc(var(--floating-cta-h) + env(safe-area-inset-bottom, 0px));
}

/* ========== Global floating bottom CTA (every page) ========== */
.floating-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  pointer-events: none;
}

.floating-cta-inner {
  pointer-events: auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 32, 0.2) 0%,
    rgba(5, 6, 18, 0.92) 40%,
    rgba(3, 4, 14, 0.96) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.floating-cta-btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e8e8f0;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.floating-cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.floating-cta-btn:active {
  transform: scale(0.98);
}

.floating-cta-btn:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.85);
  outline-offset: 2px;
}

.floating-cta-btn__icon {
  display: flex;
  flex-shrink: 0;
  opacity: 0.95;
}

.floating-cta-btn__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-cta-btn--contact {
  background: linear-gradient(180deg, rgba(111, 124, 255, 0.35), rgba(76, 86, 224, 0.45));
  border-color: rgba(160, 170, 255, 0.35);
  color: #fff;
}

.floating-cta-btn--apply {
  background: rgba(255, 255, 255, 0.07);
}

.floating-cta-btn--top {
  background: rgba(255, 255, 255, 0.08);
  max-width: 120px;
  flex: 0 1 auto;
}

.floating-cta-btn--top.floating-cta-btn--dimmed {
  opacity: 0.65;
}

@media (max-width: 640px) {
  :root {
    --nav-scroll-offset: 80px;
    --floating-cta-h: 72px;
  }

  .floating-cta-inner {
    padding-left: 10px;
    padding-right: 10px;
    gap: 6px;
  }

  .floating-cta-btn {
    font-size: 12px;
    padding: 10px 8px;
    gap: 6px;
    min-height: 48px;
  }

  .floating-cta-btn__icon svg {
    width: 16px;
    height: 16px;
  }

  .floating-cta-btn--top {
    max-width: none;
    flex: 0 0 auto;
    min-width: 52px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .floating-cta-btn__label {
    max-width: 72px;
  }
}

@media (max-width: 380px) {
  .floating-cta-inner {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .floating-cta-btn--contact,
  .floating-cta-btn--apply {
    flex: 1 1 calc(50% - 4px);
    min-width: calc(50% - 4px);
  }

  .floating-cta-btn--top {
    flex: 1 1 100%;
    max-width: none;
    min-height: 46px;
  }

  .floating-cta-btn__label {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta-btn {
    transition: none;
  }
}

@media print {
  .floating-cta-bar {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 18px;
  width: 100%;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 26px;

  display: flex;
  align-items: center;
  gap: 20px;

  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.15); */
}

.navbar-brand img {
  height: 36px;
}

/* Center menu */
.navbar-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 999px;
  color: #dcdce8;
  font-size: 16px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* CTA */
.navbar-cta {
  margin-left: auto;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6f7cff, #4c56e0);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.navbar-cta-mobile {
  display: none !important;
}

.navbar-cta-desktop {
  display: inline-flex !important;
}

/* TOGGLE */
.navbar-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  background: #6147bd;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(97, 71, 189, 0.4);
  transition: all 0.3s ease;
}

.btn-primary::hover {
  transform: translateY(-3px);
  background: #7155d9;
  box-shadow: 0 10px 25px rgba(123, 97, 255, 0.6);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 120%;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: rgba(124, 92, 255, 0.25) 0px 0px 0px 1px inset;
  padding: 0px 32px;
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  border-width: 1.5px;
  border-style: solid;
  border-color: rgba(124, 92, 255, 0.65);
  border-image: initial;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-primary-gradient {
  background: radial-gradient(#30496e, #32329b);
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  color: #fff;
}

.hero .btn-lg {
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 16px;
  /* text-decoration: none; */
}

/* Navbar shell used for desktop + mobile dropdown */
.navbar-glass {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.custom-dropdown-menu {
  display: none;
}

/* =========================
   Mobile Navbar
   ========================= */
@media (max-width: 991px) {
  body.navbar-open {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none;
  }

  body.navbar-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: #050510;
    z-index: 1040;
    pointer-events: auto;
  }

  body.navbar-open .navbar {
    z-index: 1050 !important;
  }

  body.navbar-open .navbar-container {
    background: #050510 !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .navbar-glass {
    border-radius: 20px;
    padding: 0;
    z-index: 1055;
  }

  .navbar-logo,
  .navbar-brand img {
    height: 35px;
    width: auto;
  }

  .navbar-menu,
  .navbar-cta-desktop {
    display: none !important;
  }

  .navbar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: transparent;
    border: none;
    padding: 0;
    color: #fff;
  }

  .custom-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;

    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 0 16px 18px;
    background-color: #050510;
    z-index: 1050;
  }

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

  .menu-inner-card {
    background-color: #111116;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }

  .custom-menu-body {
    padding: 1px 29px 94px;
    display: flex;
    flex-direction: column;
    /* min-height: calc(100vh - 120px); */
  }

  .custom-menu-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
  }

  .custom-menu-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .custom-menu-nav li:last-child {
    border-bottom: none;
  }

  .custom-menu-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 450;
    transition: color 0.25s ease;
  }

  .custom-menu-nav a:hover,
  .custom-menu-nav a:active {
    color: #7b61ff;
  }

  .custom-menu-nav .arrow {
    color: #7b61ff;
    font-size: 20px;
  }

  .custom-menu-bottom {
    margin-top: 32px;
  }

  .menu-journey-card {
    background: linear-gradient(135deg, rgba(97, 71, 189, 0.18), rgba(97, 71, 189, 0.06));
    border: 1px solid rgba(123, 97, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
  }

  .menu-journey-card h4 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
  }

  .menu-journey-card p {
    margin: 0;
    color: #92929e;
    font-size: 13px;
    line-height: 1.5;
  }

  .menu-connect-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 54px;
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background: #6147bd;
    /* box-shadow: 0 8px 24px rgba(123, 97, 255, 0.3); */
    transition: transform 0.25s ease;
  }

  .menu-connect-btn:hover {
    color: #fff;
    transform: translateY(-3px);
  }
}

/* Burger to X animation */
.burger-to-x {
  width: 24px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-to-x span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-to-x.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-to-x.open span:nth-child(2) {
  opacity: 0;
}

.burger-to-x.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero  */

/* Animated Hero Section Styles */
.animated-hero {
  width: 100%;
  /* background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%); */
}

/* === Hero beam animation (.hero-animation) — vanilla canvas, see js/script.js === */
.hero-animation {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #05050f;
}

.hero-animation .hero-container {
  position: relative;
  z-index: 10;
}

/* Static gradient fallback (low-perf / mobile / reduced-motion) */
.hero-animation__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(91, 108, 255, 0.22), transparent 55%),
    radial-gradient(90% 60% at 80% 40%, rgba(139, 92, 246, 0.12), transparent 50%),
    linear-gradient(180deg, #070714 0%, #01010d 55%, #01010d 100%);
}

/* Canvas only covers the hero section (sized to section via ResizeObserver) */
.hero-animation__canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 62%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 62%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-animation__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  transform: translateZ(0);
  /* Extra soften; ctx.filter also uses 8px max in JS */
  filter: blur(8px);
}

/* Mobile: drop expensive CSS blur (ctx still blurs in script.js, lite mode) */
.hero-animation__canvas--lite,
.hero-animation--mobile .hero-animation__canvas {
  filter: none;
}

/* Subtle overlay pulse (CSS only — no heavy backdrop-blur) */
.hero-animation__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.06);
  animation: hero-animation-overlay-pulse 10s ease-in-out infinite;
}

@keyframes hero-animation-overlay-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.55;
  }
}

.hero-animation--static .hero-animation__canvas-wrap {
  display: none !important;
}

.hero-animation--static .hero-animation__overlay {
  animation: none;
  opacity: 0.45;
}

/* Stronger gradient when canvas is off (reduced-motion only) */
.hero-animation--static .hero-animation__fallback {
  background:
    radial-gradient(130% 90% at 50% 0%, rgba(124, 92, 255, 0.35), transparent 55%),
    radial-gradient(100% 70% at 100% 30%, rgba(139, 92, 246, 0.22), transparent 50%),
    linear-gradient(180deg, #0a0a18 0%, #05050f 45%, #01010d 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-animation__overlay {
    animation: none;
    opacity: 0.45;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 5rem 0;
}


/* Badge Button */
.hero-badge-wrapper {
  display: flex;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #e2e8f0;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-badge .arrow-icon {
  width: 1rem;
  height: 1rem;
}

/* Title Section */
.hero-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  /* padding: 12px; */
}

.hero-title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-align: center;
  color: #94a3b8;
  max-width: 42rem;
  margin: 0;
  line-height: 1.2;
}

.title-static {
  display: block;
  color: #e7e7e7;
}

.title-animated-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  min-height: 1.3em;
  padding: 0.25rem 0;
}

.title-animated {
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
}

/* Word Animation */
.title-word {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-word.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.title-word.exit-up {
  opacity: 0;
  transform: translateX(-50%) translateY(-100%);
}

.title-word.enter-down {
  opacity: 0;
  transform: translateX(-50%) translateY(100%);
}

/* Description */
.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  max-width: 42rem;
  text-align: center;
  margin: 0;
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}

/* Smooth scroll affordance: jump to next section */
.hero-scroll {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}

.hero-scroll-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.hero-scroll-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.hero-scroll-link:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.7);
  outline-offset: 4px;
  border-radius: 8px;
}

.hero-scroll-chevron {
  display: flex;
  animation: hero-scroll-bob 2.2s ease-in-out infinite;
}

.hero-scroll-chevron svg {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

@keyframes hero-scroll-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-chevron {
    animation: none;
  }
}

.btn-hero {
  background: linear-gradient(180deg, #6f7cff, #4c56e0);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero svg {
  width: 1rem;
  height: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-content {
    padding: 190px 0 150px 0;
  }

  .hero-title {
    font-size: 62px;
  }

  .title-animated-wrapper {
    padding-bottom: 1rem;
    padding-top: 0.25rem;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-muted);
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-top: 14rem;
    padding-bottom: 5rem;
    gap: 1.5rem;
  }

  .hero-title {
    font-size:30px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 1rem;
  }

  .btn-hero {
    justify-content: center;
    width: 100%;
  }
  
  .cta-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}





.cta-wrapper {
  position: relative;
  /* display: inline-block; */
}

/* Hover Image Box */
.hover-image {
  position: absolute;
  bottom: 120%;
  /* position above button */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

/* Image Styling */
.hover-image img {
  width: 120px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Show on Hover */
.cta-wrapper:hover .hover-image {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===============================
     WHAT WE DO – FINAL VERSION
  ================================ */

.what-section {
  padding: 0px 16px 100px 16px;
  background: transparent;
}

.what-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.what-header {
  text-align: center;
  margin-bottom: 48px;
}

.what-header h2 {
  font-size: 42px;
  font-weight: 700;
}

.what-header p {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-muted);
}

.what-section-content {
  /* border: 1px solid rgba(255, 255, 255, 0.15); */
  border-radius: 20px;
  /* padding: 20px; */
  width: 100%;
  max-width: 1200px;
  /* margin: 90px auto; */
  display: flex;
  flex-direction: column;
}

/* ================= TOP GRID ================= */

.what-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

/* Image Card */
.what-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  height: auto;
  min-height: 220px;
}

.what-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Card */
.what-about {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.what-about h3 {
  font-size: 26px;
  margin-bottom: 12px;
  text-align: center;
}

.what-about p {
     font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 10px;
    /* font-weight: 300; */
}

/* ================= BOTTOM CARDS ================= */

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

.what-card {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s ease;
  width: 100%;
  min-height: 220px;
  /* NEW */
  text-align: center;
}

.what-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 14px;
  /* CENTER ICON */
  font-size: 18px;
}

.what-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 26px;
}

.what-card p {
   font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 10px;
    /* font-weight: 300; */
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .what-top-grid {
    grid-template-columns: 1fr;
  }

  .what-image {
    height: 220px;
  }

  .what-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .what-header h2 {
    font-size: 28px;
  }

  .what-about,
  .what-card {
    padding: 20px;
  }
}

/* ===============================
     WHAT YOU WILL LEARN
  ================================ */

.learn-section {
  padding: 100px 16px;
}

.learn-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Small write-up */
.learn-intro {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Title */
.learn-title {
  font-size: 42px;
  font-weight: 700;
  /* margin-bottom: 32px; */
}

.learn-title span {
  /* font-weight: 500;
  font-size: 18px;
  color: var(--text-muted); */
}

/* Cards layout */
.learn-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card base */
.learn-card {
  position: relative;
  padding: 32px 26px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
  text-align: center;
  overflow: hidden;
  min-height: 275px;
  width: 100%;
}

.learn-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}
/* Diagonal pattern */
.learn-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 14px 14px;
  opacity: 0.25;
  pointer-events: none;
}

/* Pattern colors intentionally disabled */

/* Learn icon wrapper */
.learn-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
}

.learn-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

/* Card text */
.learn-card h4 {
 
  
  position: relative;
  z-index: 1;
 
      font-size: 16px;
    margin-bottom: 8px;
    margin-top: 26px;
}

.learn-card p {
   font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 10px;
    /* font-weight: 300; */
}

/* ===============================
     RESPONSIVE
  ================================ */

@media (max-width: 900px) {
  .learn-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .learn-title {
    font-size: 28px;
  }

  .learn-title span {
    /* display: block; */
    margin-top: 6px;
  }

  .learn-card {
    padding: 58px 20px;
  }
  .what-you-get-header h2 {
    font-size: 28px;
  }
}

/* ===============================
     PROGRAM DETAILS – FINAL CSS
  ================================ */

.program-details {
  max-width: 1200px;
  margin: auto;
  padding: 100px 16px;
}

.program-container {
  /* background: radial-gradient(circle at top, #14142b, #06060c); */
  border-radius: 20px;
  padding: 26px ;
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6); */
}

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

.program-header h1 {
      /* margin-top: 60px; */
    font-size: 42px;
    font-weight: 700; 
    text-align: center;
}

.program-header p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom:48px;
}

/* Content */
.program-content {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr auto 1fr;
  gap: 40px;
  /* align-items: center; */
}

/* Left Info */
.program-info .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 18px;
}

.icon {
  background: linear-gradient(135deg, #5f4ad8, #8a7bff);
  padding: 12px;
  border-radius: 12px;
}

/* Divider */
.divider {
  width: 1px;
  height: 180px;
  background: rgba(255, 255, 255, 0.15);
}




/* Mentors */
.mentors h3,
.pricing h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.mentor-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.mentor-card:hover {
  border-color: rgba(0, 119, 181, 0.4);
  background: linear-gradient(180deg, rgba(0, 119, 181, 0.08), rgba(255, 255, 255, 0.02));
}

.mentor-card img:first-child {
  width: 40px;
    height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.mentor-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mentor-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.mentor-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.linkedin-icon {
  width: 40px;
  height: 40px;
  margin-left: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.linkedin-icon:hover {
  transform: scale(1.08);
  filter: brightness(1.15);
}

/* Pricing */
.price {
  display: flex;
  align-items: center;
  gap: 16px;
  /* margin: 12px ; */
}

.price .current {
  font-size: 42px;
  font-weight: 700;
}

.price .old {
  text-decoration: line-through;
  color: #7d7d95;
  font-size: 20px;
}

.note {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.apply-btn {
  background: linear-gradient(135deg, #6b5cff, #9b8cff);
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(107, 92, 255, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .program-container {
    padding: 30px;
  }
  
  .program-content {
    grid-template-columns: 1fr;
  }

  .divider {
    display: none;
  }

  .program-header h1 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .program-container {
    padding: 24px 16px;
  }

  .program-header h1 {
    font-size: 28px;
  }

  .program-info .info-item {
    font-size: 15px;
  }

  .price .current {
    font-size: 32px;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* ================= TESTIMONIALS / COMMUNITY ================= */

.reviews-grid-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* padding: 40px 0; */
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 8%,
      black 92%,
      transparent);
  mask-image: linear-gradient(to right,
      transparent,
      black 8%,
      black 92%,
      transparent);
}

.reviews-grid {
  display: flex;
  width: max-content;
  animation: scroll 45s linear infinite;
}

.review-card-set {
  display: flex;
  flex-shrink: 0;
}

/* ===== CARD ===== */
.testimonial-card {
  width: 310px;
  min-height: 286px;
  padding: 24px;
  margin: 16px;
  border-radius: 16px;
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  gap: 18px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: #e5e7eb;
}

/* Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars svg {
  width: 18px;
  height: 18px;
}

/* Pill */
.pill {
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* Quote */
.quote {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db;
  flex-grow: 1;
}

/* Author */
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.author-info .name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.author-info .title {
  font-size: 13px;
  color: #9ca3af;
}

/* ===== ANIMATION ===== */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

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

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .testimonial-card {
    width: 280px;
    min-height: 320px;
    padding: 20px;
  }

  .quote {
    font-size: 14px;
  }

  .author-info .name {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .reviews-grid-container {
    padding: 24px 0;
  }

  .testimonial-card {
    width: 300px;
    min-height: 270px;
    margin: 12px;
  }
}

/* ===== FOOTER BASE (MOBILE FIRST) ===== */
.site-footer {
  color: #ffffff;
  background: linear-gradient(120deg, #59168b, #1c398e, #59168b);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 20px;
}

/* main container width like 1440 layout */
.footer-main,
.footer-bottom {
  width: 100%;
  max-width: 1100px;
}

/* ===== TOP SECTION ===== */
.footer-main {
  display: flex;
  justify-content: center;
}

.footer-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ⬅ This ensures proper centering */
  justify-content: center;
  width: 100%;
}

.footer-brand img {
  display: block;
  height: 35px;
  /* Slightly bigger like Figma */
  margin: 0 auto 12px;
  /* ⬅ True centering */
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  max-width: 90%;
  line-height: 1.7;
  color: rgba(243, 246, 255, 0.9);
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Social icons row */
.footer-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

/* reset default link styles */
.footer-socials a {
  text-decoration: none;
}

/* the rounded glass boxes */
/* .footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
  
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  } */

/* icon inside */
.footer-socials a img {
  width: 40px;
  height: 40px;
  display: block;
}

/* Removed overlap to fix multi-replace chunk overlap */
/* .footer-socials a:hover {
    transform: rotateZ(-10deg) scale(1.06);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  } */

/* hover effect (same tilt you liked) */
/* .footer-socials a:hover {
    transform: rotateZ(-10deg) scale(1.06);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  } */

/* Contact line */
.footer-contact {
  display: flex;
  flex-direction: column;
  /* mobile: stacked */
  gap: 2px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(233, 237, 255, 0.95);
  margin-top: 4px;
}

.footer-contact p {
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Top links */
.footer-top-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-top-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s ease;
}

.footer-top-links a:hover {
  opacity: 0.8;
}

.footer-top-links span {
  color: #fff;
  margin: 0 4px;
}

/* ===== BOTTOM SECTION ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  /* mobile: stacked */
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(230, 235, 255, 0.95);
}

.footer-bottom p {
  margin: 0;
}

/* Links row */
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 12px;
  word-break: break-word;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Dot between links */
.footer-links span {
  display: inline-block;
  font-size: 13px;
  transform: translateY(-1px);
}

.footer-socials img:hover {
  transform: rotateZ(-12deg) scale(1.06);
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.18));
}

/* ===== MOBILE & SMALL SCREENS ===== */
@media (max-width: 480px) {
  .site-footer {
    padding: 32px 12px 16px;
  }

  .footer-top {
    gap: 16px;
    margin-bottom: 24px;
  }

  .footer-brand p {
    font-size: 13px;
    max-width: 100%;
  }

  .footer-top-links {
    gap: 6px;
  }

  .footer-top-links a {
    font-size: 12px;
  }

  .footer-top-links span {
    margin: 0 3px;
  }

  .footer-contact {
    font-size: 12px;
    gap: 6px;
  }

  .footer-contact p {
    font-size: 12px;
    padding: 0 8px;
  }

  .footer-socials a img {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    gap: 8px;
    font-size: 11px;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-links span {
    font-size: 11px;
  }
  .footer-contact {
        flex-direction: inherit;
        gap: 0px;
        margin-top: 12px;
        margin-bottom: 32px;
    }
}

/* ===== TABLET & DESKTOP ===== */
@media (min-width: 768px) {
  .site-footer {
    padding: 48px 24px 24px;
  }

     

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }

  .footer-bottom p {
    text-align: left;
  }

  .footer-brand p {
    max-width: 600px;
  }

  .footer-top-links {
    gap: 10px;
  }

  /* .footer-contact {
    flex-direction: row !important;
    gap: 16px !important;
  } */

  .footer-contact p {
    font-size: 13px;
    padding: 0;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 56px 32px 24px;
  }

  .footer-top {
    gap: 24px;
  }
}

/* ===============================
           FINAL CTA SECTION
        ================================ */

.final-cta {
  padding: 80px 16px 100px;
}

.final-cta-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px;

  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);

  background: radial-gradient(circle at top right,
      rgba(111, 75, 255, 0.35),
      transparent 40%),
    radial-gradient(circle at bottom left,
      rgba(111, 75, 255, 0.25),
      transparent 45%),
    rgba(8, 8, 24, 0.85);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  text-align: center;
}

.final-cta-card h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta-card p {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Buttons */
.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-cta-actions .btn-primary,
.final-cta-actions .btn-outline {
  min-width: 200px;
}

/* ===============================
           RESPONSIVE
        ================================ */

@media (max-width: 900px) {
  .final-cta-card h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .final-cta {
    padding: 56px 12px 80px;
  }

  .final-cta-card {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .final-cta-card h2 {
    font-size: 28px;
  }

  .final-cta-card p {
    font-size: 14px;
  }

  .final-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .final-cta-actions a {
    width: 100%;
  }
}






.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 16px 80px;
}

.contact-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 16px 0 15px;
}

.contact-subtitle {
  max-width: 640px;
  text-align: center;
  /* color: var(--text-muted); */
  font-size: 14px;
  /* max-width: 600px; */
  margin: 0 auto 50px;
}

/* GRID: image + form */
.contact-grid {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* LEFT IMAGE CARD */
.contact-image {
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT FORM – sits directly on page background */
.contact-form {
  flex: 1.15;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 4px 0;
  /* just a little spacing */
  background: transparent;
  border: none;
}

/* two-column rows (desktop) */
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* labels + fields */
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 16px;
  color: var(--text-muted);
}

.contact-field input,
.contact-field textarea {
  height: 64px;
  width: 100%;
  background: linear-gradient(#121212, #121212) padding-box,
    linear-gradient(to right, #ffffff 0%, #2e2e3e 100%) border-box;
  border: 2px solid transparent;
  border-radius: 6px;
  color: #eee;
  padding: 16px 20px;
  font-size: 1.1rem;
  outline: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
}

/* make message big like screenshot */
.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

/* checkbox row */
.contact-footer {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-muted);
}

.contact-checkbox input {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
}

.contact-link {
  color: var(--accent-soft);
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* submit button – centered under form */
.contact-submit {
  margin-top: 24px;
  align-self: center;
  padding-inline: 64px;
  padding: 8px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  align-items: center;
  /* background-color: var(--accent); */
  color: #ffffff;
  /* white-space: nowrap; */
  /* transition: background-color 0.2s ease; */
  width: 150px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

 .badge-icon img {
   animation: spin 2000ms linear infinite;
   }

    @keyframes spin {
                    from {
                      transform: rotate(0deg);
                    }

                    to {
                      transform: rotate(360deg);
                    }
                  }

/* ===============================
   CONTACT PAGE - NEW DESIGN
================================ */

.contact-page-main {
  padding-top: 114px;
}

.contact-section {
  padding: 48px 16px 100px;
}

.contact-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(620px, 1.45fr);
  gap: 56px;
  align-items: flex-start;
}

/* ===== LEFT PANEL ===== */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-info-header h1 span {
  color: #6147bd;
}

.contact-info-header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 540px;
}

.contact-illustration {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.contact-illustration img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Contact Details Cards */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* margin-top: 1px; */
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  align-items: center;
}

.contact-detail-item:hover {
  border-color: transparent;
  background: transparent;
}

.detail-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: #9d85ff;
}

.detail-icon svg {
  width: 22px;
  height: 22px;
}

.detail-content h4 {
  font-size: 12px;
  font-weight: 600;
  color: #9ea2b4;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.detail-content p {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

/* ===== RIGHT PANEL - FORM ===== */
.contact-form-panel {
  display: flex;
  flex-direction: column;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 14px;
  font-weight: 500;
  color: #b4b6c7;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 17px 22px;
  border: 1px solid rgba(139, 145, 182, 0.35);
  background: linear-gradient(180deg, rgba(18, 20, 53, 0.9), rgba(15, 17, 45, 0.92));
  color: #fff;
  border-radius: 13px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  min-height: 64px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}

.contact-form select option {
  background: #1a1a2e;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #8a76f6;
  background: rgba(23, 24, 62, 0.94);
  /* box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.12); */
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px !important;
  padding: 18px 22px;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #a8abbc;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ffffff;
}

.contact-link {
  color: #7c5cff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #9b7cff;
  text-decoration: underline;
}

/* Submit Button */
.btn-submit {
  padding: 17px 24px;
  background: linear-gradient(90deg, #6f53d9, #5f45be);
  border: none;
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  /* margin-top: 12px; */
  width: 100%;
  min-height: 56px;
  box-shadow: 0 12px 35px rgba(98, 69, 201, 0.4);
}

.btn-submit:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(98, 69, 201, 0.5);
}

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

/* Contact trust cards under form */
.contact-trust-grid {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-trust-card {
  border-radius: 16px;
  border: 1px solid rgba(120, 132, 190, 0.22);
  background: linear-gradient(180deg, rgba(15, 18, 54, 0.78), rgba(11, 14, 45, 0.86));
  box-shadow: 0 16px 40px rgba(6, 8, 28, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 22px 16px 20px;
  text-align: center;
}

.contact-trust-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8d7aff;
  background: linear-gradient(180deg, rgba(62, 48, 140, 0.58), rgba(46, 33, 114, 0.65));
  border: 1px solid rgba(156, 139, 255, 0.28);
  box-shadow: 0 10px 22px rgba(46, 32, 116, 0.45);
}

.contact-trust-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}

.contact-trust-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #bcc3d9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-info-header h1 {
    font-size: 36px;
  }

  .contact-illustration {
    max-width: 420px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .contact-trust-card h3 {
    font-size: 24px;
  }

  .contact-trust-card p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 92px;
  }

  .contact-section {
    padding: 10px 16px 56px;
  }

  .contact-wrapper {
    gap: 28px;
  }

  .contact-info-header h1 {
    font-size: 28px;
  }

  .contact-info-header p {
    font-size: 14px;
    line-height: 1.65;
  }

  .contact-details {
    gap: 12px;
  }

  .contact-detail-item {
    gap: 12px;
  }

  .detail-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .detail-content p {
    font-size: 14px;
  }

  .contact-illustration {
    max-width: 280px;
    height: auto;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 48px;
    padding: 12px 14px;
  }

  .contact-form textarea {
    min-height: 140px !important;
  }

  .form-checkbox {
    margin-top: 4px;
  }

  .checkbox-label {
    align-items: center;
    line-height: 1.5;
  }

  .contact-trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-trust-card {
    padding: 18px 14px 16px;
  }

  .contact-trust-card h3 {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .contact-trust-card p {
    font-size: 14px;
    line-height: 1.5;
  }
}


.btn-primary-gradient {
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7f5cff, #5a3df0);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* Prevent background scroll while any modal is open */
body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

/* Glass Modal */
.glass-modal {
  position: fixed;
  inset: 55% auto auto 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: min(92%, 520px);
  padding: 40px;
  border-radius: 28px;

  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
  color: #fff;
}

/* Active State */
.modal-overlay.active,
.glass-modal.active {
  opacity: 1;
  visibility: visible;
}

.glass-modal.active {
  transform: translate(-50%, -50%) scale(1);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: #aaa;
  cursor: pointer;
}

/* Text */
.glass-modal h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #b5b5b5;
  font-size: 15px;
  margin-bottom: 30px;
}

label {
  display: flex;
  /* margin-bottom: 6px */
  font-size: 13px;
}

input, select.modal-select, textarea.modal-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

input::placeholder, textarea.modal-textarea::placeholder {
  color: #aaa;
}

select.modal-select option {
  background: #141414;
  color: #fff;
}

input:focus, select.modal-select:focus, textarea.modal-textarea:focus {
  outline: none;
  border-color: #7f5cff;
}

/* Submit Button */
.submit-btn {
  margin-top: 16px;
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #7f5cff, #5a3df0);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* Mobile Tweaks */
@media (max-width: 480px) {
  .glass-modal {
    padding: 28px 22px;
  }

  .glass-modal h2 {
    font-size: 26px;
  }
}

/* ===============================
   WHAT YOU WILL GET – 3 x 3 PERFECT GRID
================================ */

.what-you-get-section {
  padding: 100px 16px;
}

.what-you-get-header {
  text-align: center;
  /* margin-top: 72px; */
}

.what-you-get-header h2 {
  /* font-size: 42px; */
  /* font-weight: 800; */
  margin-bottom: 10px;
}

.what-you-get-header p {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* GRID */
.what-you-get-grid {
  /* display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: stretch;
  max-width: 1200px;
  margin: auto; */
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: stretch;
  background: var(--panel);
  display: grid;
  border-radius: 20px;
  padding: 48px 0 0 0;
  margin: auto;
  max-width: 1200px;
}

/* CENTER LINE */
.what-you-get-divider {
  width: 1px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
}

/* COLUMNS */
.what-you-get-column {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 24px;
}

/* ITEM */
.get-item {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 22px 26px;
  min-height: 108px;

  border-radius: 20px;
  /* background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  ); */
  border: 1px solid rgba(255, 255, 255, 0.14);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* .get-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(91, 108, 255, 0.25);
  border-color: var(--primary);
} */

/* ICON */
.check-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;

  background: #674bc9;
  opacity: 20;
  /* box-shadow: 0 6px 18px rgba(91, 108, 255, 0.45); */
}

/* TEXT */
.get-text {
  max-width: 440px;
}

.get-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.35;
}

.get-text p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
  .what-you-get-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .what-you-get-divider {
    display: none;
  }

  .what-you-get-column {
    grid-template-rows: auto;
    gap: 28px;
  }

  .get-item {
    min-height: auto;
  }

  .get-text {
    max-width: 100%;
  }
}

/* ===============================
   CAREER OPPORTUNITIES SECTION
================================ */

.career-opportunities {
  padding: 60px 16px;
}

.career-opportunities-card {
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.65));
}

.career-opportunities-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #e6e6e6;
}

/* Accordion */
.career-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.career-accordion-item {
  border-radius: 22px;
  overflow: hidden;
}

.career-accordion-btn {
  width: 100%;
  background: linear-gradient(180deg, #161616, #0d0d0d);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 32px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  color: #fff;
  font-family: "Gabarito", sans-serif;

}

.career-accordion-btn h3 {
  font-size: 26px;
  font-weight: 600;
}

.career-accordion-btn p {
  font-size: 16px;
  color: #999;
  margin-top: 10px;
}

.arrow {
  font-size: 26px;
  transition: transform 0.3s ease;
}

/* Content */
.career-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 32px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 22px 22px;
}

.career-accordion-content p {
  /* padding: 20px 0 28px; */
  font-size: 15px;
  line-height: 1.7;
  color: #bdbdbd;
}

/* Active */
.career-accordion-item.active .career-accordion-content {
  max-height: 200px;
}

.career-accordion-item.active .arrow {
  transform: rotate(180deg);
}

/* Responsive */
@media(max-width:768px) {
  .career-opportunities-card {
    padding: 40px 20px;
  }

  .career-opportunities-title {
    font-size: 34px;
  }

  .career-accordion-btn h3 {
    font-size: 20px;
  }
}

/* EXPANDED ACCORDION DESIGN */
.career-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: linear-gradient(180deg, #121212, #0b0b0b);
  border-radius: 0 0 22px 22px;
  padding: 0 32px;
}

.career-accordion-item.active .career-accordion-content {
  padding: 32px;
}

.career-accordion-content h4 {
  font-size: 26px;
  margin-bottom: 10px;
}

.accordion-desc {
  color: #aaa;
  font-size: 15px;
  margin-bottom: 28px;
}

.career-accordion-content h5 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 16px;
  font-size: 14px;
  color: #ccc;
}

.info-card span {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-top: 6px;
}

.info-card.wide {
  grid-column: span 2;
}

/* Who Should Apply */
.who-apply {
  background: linear-gradient(135deg, #2b1a45, #1b1330);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(124, 92, 255, 0.35);
  margin-bottom: 26px;
}

/* CTA Center */
.accordion-cta {
  text-align: center;
}

/* Responsive */
@media(max-width:900px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:500px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}



/* certificate */
.certificate {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  padding: 50px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #070b18, #050812);
}

.certificate-preview {
  background: #050812;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certificate-preview h4 {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
}

.certificate-preview h2 {
  font-size: 25px;
  color: #fff;
  font-weight: 700;
}

.certificate-title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 10px;
}

.certificate-desc {
  color: #9aa4b2;
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

.certificate-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d1d5db;
  font-size: 15px;
}

.cert-icon {
  background: rgba(124, 77, 255, 0.12);
  padding: 10px;
  border-radius: 12px;
}

/* what you get */

.steps {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 14px;
  /* small clean gap */
  justify-content: center;

}

.program-section {
  /* margin-top: 50px; */
  text-align: center;
}

.program-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.program-subtitle {
  margin-top: 10px;
  font-size: 14px;
  color: #b9b9b9;
}

.steps-wrapper {
  position: relative;
  margin-top: 80px;
}

.steps-line {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.step {
  background: radial-gradient(circle at top, #0f0f0f, #050505);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 50px 30px;
  min-height: 260px;
  text-align: left;
  transition: 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 77, 255, 0.4);
  box-shadow: 0 20px 50px rgba(124, 77, 255, 0.15);
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  /* background: rgba(124, 77, 255, 0.15); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 26px;
}

.step h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
}

.step p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .steps-line {
    display: none;
  }
}



.step {
  background: linear-gradient(180deg, #070b18, #050812);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;

  /* standing rectangle size */
  width: 100%;
  height: auto;
  min-height: 300px;

  /* tighter internal spacing */
  padding: 16px 14px;

  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}


/* Responsive */
@media (max-width: 992px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.steps-wrapper {
  position: relative;
  margin-top: 60px;
}

.steps-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 1px;
  filter: blur(0.4px);
  z-index: 1;
}


/* extra css will be removed */

/* Career page heading alignment + spacing */
body > .hero-title-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 132px 16px 28px;
  text-align: center;
}

body > .hero-title-wrapper > h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin: 60px auto 14px;
}

body > .hero-title-wrapper > .subtitle {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  body > .hero-title-wrapper {
    padding: 104px 16px 20px;
  }

  body > .hero-title-wrapper > h1 {
    font-size: 28px;
    margin-top : 50px;
  }
}

.wrapper {
  max-width: 1120px;
  margin: auto;
  padding: 80px 20px;
}

h1 {
  text-align: left;
  font-size: 44px;
  font-weight: 700;
  /* margin-top: 18px; */
}

.subtitle {
  text-align: center;
  max-width: 600px;
  margin: 14px auto 14px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* program details card */
.program-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}



.section-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.section-title h3 {
  font-size: 24px;
}

/* basic info */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #050812;
  border: 1px solid var(--border);
  border-radius: 14px;
  height: 74px;
  line-height: 1.3;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #0f172a;
  flex-shrink: 0;
}

.info-text small {
  display: block;
  font-size: 20px;
  color: var(--soft);
}

.info-text span {
  font-size: 14px;
}

/* mentors */
.mentor-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #050812;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
}

.avatar-course {
  width: 52px;
  height: 52px;
  background: #1f2937;
  flex-shrink: 0;
}

.img-mentor {
  width: 52px;
  height: 52px;
  background: #1f2937;
  flex-shrink: 0;
}

.mentor-card strong {
  font-size: 14px;
  display: block;
}

.mentor-card small {
  font-size: 12px;
  color: var(--soft);
}

.mentor-note {
  font-size: 12px;
  color: var(--soft);
  line-height: 1.6;
  margin-top: 10px;
}

/* pricing */
.price-box {
  background: #050812;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}

.price {
      font-size: 18px;
    font-weight: 600;
}

.old {
  font-size: 14px;
  color: #64748b;
  text-decoration: line-through;
  margin-left: 8px;
}

.price-note {
  font-size: 12px;
  color: var(--soft);
  margin: 12px 0 20px;
}

.btn {
  width: 100%;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border: none;
  color: white;
  padding: 12px;
  border-radius: 999px;
  cursor: pointer;
}

/* what you get */
.section {
  margin-top: 120px;
}

.get-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.get-item {
  display: flex;
  gap: 14px;
}

.check {
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 6px;
}

/* how it works */
.steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ✅ This centers icon + text */
  text-align: center;
  /* ✅ This centers the text */
  background: #050812;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 26px;
  width: 100%;
  height: auto;
}

/* certificate */
.certificate {
  /* margin-top: 120px; */
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
  width: 100%;
}

.certificate-preview {
  background: #050812;
  border-radius: 20px;
  padding: 50px;
  height: auto;
  min-height: 421px;
  width: 100%;
  align-items: center;
}

.certificate-preview-image {
  display: block;
  width: min(100%, 100%);
  height: auto;
  margin: 0 auto 20px;
}

.certificate p {
  /* margin: 10px 0; */
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* responsive */
@media(max-width:900px) {

  .columns,
  .get-grid,
  .steps,
  .certificate {
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px) {
  .program-card {
    padding: 16px;
  }
  
  .columns {
    gap: 40px;
  }
  
  .price-box {
    padding: 20px;
  }
  
  .price {
    font-size: 32px;
  }
  
  .certificate {
    padding: 30px 20px;
  }
  
  .certificate-preview {
    padding: 30px 20px;
  }
  
  h1 {
    font-size: 32px;
    /* margin-top: 125px; */
  }
  
  .program-title {
    font-size: 28px;
  }
  
  .subtitle {
    font-size: 12px;
    /* margin-bottom: 40px; */
  }
}


.img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #0f172a;
}

.certificate-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cert-item {
  display: flex;
  /* ← important */
  flex-direction: row;
  /* ← important */
  align-items: center;
  gap: 12px;

  font-size: 16px;
  color: #e5e7eb;
}

.cert-item span {
  display: inline-block;
  /* prevents wrapping under icon */
  line-height: 1.5;
}

.cert-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  /* ← prevents icon shrinking */

  background: #0f172a;
  border: 1px solid #1f2937;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #c4b5fd;
}

.cert-icon img {
  width: 37px;
  height: 41px;
  object-fit: contain;
}


.steps-section {
  padding: 0px 24px;
  padding-bottom: 0px 100px
}

.certificate-preview-box {
  padding: 120px 16px;
}

.howprgmworks {
  max-width: 1200px;
  /* justify-content: center; */
  margin: auto;
  padding: 100px 16px;
}

.certificate-section {
  max-width: 1241px;
  justify-content: center;
  margin: auto;
}

.programs-section,
.wyg-section {
  max-width: 1241px;
  justify-content: center;
  margin: auto;
  padding: 100px 16px;
}

/* ==========================================================================
   GLOBAL SECTION SPACING & RESPONSIVENESS FIX
   Enforces consistent padding/margin across all pages perfectly.
   ========================================================================== */


/* Base adjustment for animated hero to prevent too much top space if needed */
.animated-hero {
  /* padding-bottom: 60px; */
}

@media (max-width: 768px) {
  /* Mobile padding reduction for perfect scannability */
  .what-section,
  .learn-section,
  .program-details,
  .what-you-get-section,
  .programs-section,
  .wyg-section,
  .howprgmworks,
  .certificate-section,
  .contact-section,
  .final-cta,
  .career-opportunities,
  .not-hiring,
  .interns-section,
  .page-hero,
  .page-content {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .certificate {
    gap: 24px;
    margin-top: 0px;
  }

  .certificate-preview {
    min-height: 0;
  }

  .certificate-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .certificate-preview h2 {
    font-size: 24px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .certificate {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .certificate-preview {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .certificate-preview-image {
    width: min(100%, 100%);
    margin-bottom: 16px;
  }

  .cert-item {
    align-items: flex-start;
    font-size: 15px;
  }
}

/* ========================================================================== */
/* FORM SUBMISSION UX - LOADING STATES & ANIMATIONS */
/* ========================================================================== */

/* Button Loading State */
button:disabled {
  opacity: 0.7;
  cursor: not-allowed !important;
}

.btn-loading {
  position: relative;
  pointer-events: none;
}

/* Spinner Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* SweetAlert2 Success Animation */
@keyframes successBounce {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-50px);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.swal2-success-animation .swal2-popup {
  animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* SweetAlert2 Error Animation */
@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.swal2-error-animation .swal2-popup {
  animation: errorShake 0.5s !important;
}

/* SweetAlert2 Custom Styling */
.swal2-popup {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
  border-radius: 16px !important;
}

.swal2-title {
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}

.swal2-html-container {
  color: #b3b3b3 !important;
  font-family: 'Inter', sans-serif !important;
}

.swal2-confirm {
  background: linear-gradient(90deg, #7c5cff, #5b3df5) !important;
  border: none !important;
  border-radius: 999px !important;
  color: white !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  padding: 12px 32px !important;
  transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
  opacity: 0.9 !important;
  transform: translateY(-2px) !important;
}

.swal2-actions {
  gap: 12px !important;
}

/* Timer progress bar */
.swal2-progress-steps {
  color: #7c5cff !important;
}

.swal2-timer-progress-bar {
  background: linear-gradient(90deg, #7c5cff, #5b3df5) !important;
}


.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6147bd;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(123, 97, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #8a73ff, #735acc);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(123, 97, 255, 0.6);
  color: white;
}
.highlight{
  color: #6147bd;
}