*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #f0b31c;
  --primary-light: rgba(240, 179, 28, 0.12);
  --primary-border: rgba(240, 179, 28, 0.3);
  --secondary: #c4761a;
  --bg: #ffffff;
  --card: #f4f5f7;
  --border: #e2e5eb;
  --foreground: #1a2035;
  --muted: #687082;
  --font-sans: "Outfit", sans-serif;
  --font-mono: "Space Grotesk", sans-serif;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--foreground);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- FLOATING BUTTONS ---- */
.floating-btns {
  position: fixed;
  bottom: 95px;
  right: 20px; /* move to exact right side */
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%; /* attach to right side */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  box-shadow: -4px 8px 20px rgba(0,0,0,0.25);

  transition: transform .2s, box-shadow .2s;
}

.float-btn:hover {
  transform: translateX(-4px);
}

/* WhatsApp */

.float-btn.whatsapp {
  background: #25d366;
}

/* Phone */

.float-btn.phone {
  background: var(--primary);
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: white;
}
/* 3D Button */

.enquire-btn{
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #f1b01b;
  border-radius: 40px;
  transition: all .2s ease;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

    /* ---- HEADER - NEW DESIGN ---- */
    .header-main {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      padding:8px;
    }
    .header-content {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 0 24px;
    }

    /* LEFT - SITE LOGO */
    .header-left {
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }
    .logo-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .main-logo {
      height: 70px;
      width: auto;
      object-fit: contain;
    }

    /* CENTER - COUNTRY CARDS */
    .header-center {
      display: flex;
      align-items: center;
      padding:4px;
    }
    .countries-grid {
      display: flex;
      gap: 7px;
      justify-content: center;
      align-items: center;
      /* flex-wrap: wrap; */
    }
    .country-card {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
      padding:1px;
      border-radius: 12px;
      min-width: 120px;
      text-align: left;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      opacity: 1;
      position: relative;
    }
    .country-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(240,179,28,0.15);
      border-color: rgba(240,179,28,0.5);
    }
    .country-flag {
      width: 30px;
      height: 30px;
      border-radius:30%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .country-flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .country-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .country-info h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--foreground);
      margin: 0;
    }
    .country-info a {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
      margin: 0;
    }

    /* RIGHT - BURGER MENU */
    .header-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }
    .explore-btn {
      padding:5px;
      background: var(--primary);
      color: #1a2035;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s;
      /* white-space: nowrap; */
    }
    .explore-btn img{
        background-color:black;
        border-radius:10px;
        margin-right:5px;
    }
    .explore-btn:hover {
      background: #e0a615;
      box-shadow: 0 8px 16px rgba(240,179,28,0.3);
    }

    /* BURGER MENU */
    .burger-menu {
      position: relative;
      width: 40px;
      height: 40px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      transition: border-color 0.2s;
      overflow: hidden;
    }
    .burger-menu:hover {
      border-color: rgba(240,179,28,0.5);
    }
    .burger-menu span {
      position: absolute;
      left: 50%;
      width: 18px;
      height: 2px;
      background: var(--foreground);
      border-radius: 2px;
      transform: translateX(-50%);
      transition: transform 0.3s ease, opacity 0.2s ease;
      transform-origin: center;
    }
    .burger-menu span:nth-child(1) {
      top: 12px;
    }
    .burger-menu span:nth-child(2) {
      top: 19px;
    }
    .burger-menu span:nth-child(3) {
      top: 26px;
    }

    .burger-menu.active span:nth-child(1) {
      top: 19px;
      transform: translateX(-50%) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
      top: 19px;
      transform: translateX(-50%) rotate(-45deg);
    }

    /* RIGHT SIDE MENU */
    .right-menu {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100vh;
      background:#fff;
      z-index: 1001;
      transition: right 0.3s ease;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
    .right-menu.active {
      right: 0;
    }
    .right-menu-content {
      padding: 30px;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .right-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    .close-menu {
      background: none;
      border: none;
      font-size: 32px;
      color: #1a2035;
      cursor: pointer;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background 0.2s;
    }
    .close-menu:hover {
      background:var(--primary);
    }
    .right-menu-nav {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 13px;
    }
    .menu-item {
      color: #1a2035;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      padding:5px;
      border-radius: 8px;
      transition: background 0.2s, transform 0.2s;
      display: block;
    }
    .menu-item:hover {
      color:var(--primary);
      transform: translateX(5px);
    }


/* ---- HERO ---- */
.hero {
  position: relative;
  padding-top: 110px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(240, 179, 28, 0.1);
  filter: blur(120px);
  top: -150px;
  left: -200px;
}
.hero-blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(196, 118, 26, 0.1);
  filter: blur(100px);
  bottom: -100px;
  right: -150px;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
}
.hero-deco-1 {
  top: 33%;
  left: 8%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(240, 179, 28, 0.25);
  border-radius: 14px;
  transform: rotate(12deg);
  animation: floatA 5s ease-in-out infinite;
}
.hero-deco-2 {
  top: 20%;
  right: 10%;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(240, 179, 28, 0.2);
  border-radius: 50%;
  animation: floatB 6s ease-in-out infinite;
}
.hero-deco-3 {
  bottom: 30%;
  left: 15%;
  width: 40px;
  height: 40px;
  background: rgba(240, 179, 28, 0.15);
  border-radius: 8px;
  transform: rotate(45deg);
  animation: floatA 4.5s ease-in-out infinite;
}
@keyframes floatA {
  0%,
  100% {
    transform: rotate(12deg) translateY(0);
  }
  50% {
    transform: rotate(12deg) translateY(-14px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.text-gradient {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
}
.hero-desc strong {
  color: var(--primary);
  font-weight: 600;
  -webkit-text-fill-color: var(--primary);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-tag {
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--primary-border);
  font-size: 12px;
  font-weight: 500;
  color: var(--foreground);
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: #1a2035;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(240, 179, 28, 0.3);
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  background: #e0a615;
  box-shadow: 0 12px 32px rgba(240, 179, 28, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--foreground);
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgba(240, 179, 28, 0.4);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-outline:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}
.btn-outline svg {
  color: var(--primary);
}

/* Hero Card */
.hero-card-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: rgba(240, 179, 28, 0.18);
  filter: blur(80px);
  border-radius: 50%;
  transform: scale(0.75);
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.14);
  border: 2px solid rgba(240, 179, 28, 0.4);
  animation: tiltFloat 6s ease-in-out infinite;
}
@keyframes tiltFloat {
  0%,
  100% {
    transform: rotateY(-12deg) rotateX(5deg);
  }
  50% {
    transform: rotateY(-8deg) rotateX(3deg);
  }
}
.hero-card-body {
  width: 100%;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(240, 179, 28, 0.18),
    var(--card),
    rgba(196, 118, 26, 0.15)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
.hero-card-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.hero-card-icon svg {
  width: 48px;
  height: 48px;
  color: #1a2035;
}
.hero-card-info {
  text-align: center;
  padding: 32px;
}
.hero-card-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-card-info p {
  color: var(--muted);
}
.hero-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}
.hero-card-footer p {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.hero-card-footer span {
  font-size: 11px;
  color: var(--muted);
  display: block;
}
.live-badge {
  background: var(--primary);
  color: #1a2035;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.floating-chip {
  position: absolute;
  background: white;
  border: 1px solid rgba(240, 179, 28, 0.35);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 5;
}
.floating-chip.top-left {
  top: -16px;
  left: -16px;
  animation: chipFloat1 3s ease-in-out infinite;
}
.floating-chip.bot-right {
  bottom: -16px;
  right: -16px;
  animation: chipFloat2 4s ease-in-out infinite 1s;
}
@keyframes chipFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes chipFloat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
.chip-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
}
.chip-title {
  font-size: 12px;
  font-weight: 700;
}
.chip-sub {
  font-size: 10px;
  color: var(--muted);
}

/* Wave */
.wave-divider {
  margin-top: 64px;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
.shape-fill {
  fill: var(--card);
}

/* ---- STATS ---- */
.stats {
  padding: 80px 0;
  background: var(--bg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.stat-card:hover {
  border-color: rgba(240, 179, 28, 0.5);
}
.stat-icon {
  width: 32px;
  height: 32px;
  color: var(--secondary);
  margin: 0 auto 16px;
}
.stat-card:hover .stat-icon {
  color: var(--primary);
}
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- SECTION COMMON ---- */
section {
  padding: 96px 0;
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* Glass card */
.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ---- COURSES ---- */
.courses {
  background: var(--bg);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(240, 179, 28, 0.1);
  border-color: rgba(240, 179, 28, 0.4);
}
.course-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.2s;
}
.course-card:hover .course-card-icon {
  transform: scale(1.1);
}
.course-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.course-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.course-card-link {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
}
.course-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.course-card:hover .course-card-link svg {
  transform: translateX(4px);
}

/* ---- WHY US ---- */
.why-us {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  gap: 16px;
}
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(196, 118, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}
.feature-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
}
.why-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border);
  min-height: fit-content;
  overflow: hidden;
  background: var(--card);
}

.why-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), transparent);
  z-index: 1;
}
.why-card svg {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  color: var(--primary);
  margin-bottom: 24px;
}
.why-card h3 {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}
.why-years-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: white;
  border: 1px solid var(--primary-border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: floatB 4s ease-in-out infinite;
}
.why-years-circle {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2035;
  font-weight: 700;
  font-size: 13px;
}

/* ---- LEARNING MODES ---- */
.modes {
  background: var(--bg);
}
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mode-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.2s;
}
.mode-card:hover {
  border-color: rgba(240, 179, 28, 0.5);
}
.mode-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.2s;
}
.mode-card:hover .mode-icon {
  transform: scale(1.1);
}
.mode-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}
.mode-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.mode-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ---- TRAINER ---- */
.trainer {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trainer-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trainer-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.trainer-stat.full {
  grid-column: span 2;
}
.trainer-stat svg {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.trainer-stat .ts-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.trainer-stat .ts-label {
  font-size: 13px;
  color: var(--muted);
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.check-list li svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* ---- CONTACT ---- */
.contact {
  background: var(--bg);
}
.contact-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.contact-info {
  padding: 48px 40px;
  background: rgba(240, 179, 28, 0.06);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-info-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: rgba(240, 179, 28, 0.2);
  filter: blur(60px);
  border-radius: 50%;
}
.contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.contact-info p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}
.contact-detail-label {
  font-size: 11px;
  color: var(--muted);
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 500;
}
.contact-form-wrap {
  padding: 48px 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--foreground);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(240, 179, 28, 0.12);
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.form-error {
  font-size: 12px;
  color: #e55;
  margin-top: 4px;
  display: none;
}
.form-error.show {
  display: block;
}
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #1a2035;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: #e0a615;
}
.form-success {
  text-align: center;
  padding: 40px;
  display: none;
}
.form-success.show {
  display: block;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.success-icon svg {
  width: 32px;
  height: 32px;
  color: #22c55e;
}

/* ---- PLACEMENTS ---- */
.placements {
  background: var(--bg);
}
.placements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.placement-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.placement-card-body {
  width: 100%;
  height: 360px;
  /*display: flex; align-items: center; justify-content: center;*/
}
.placement-card:nth-child(1) .placement-card-body {
  background: linear-gradient(
    135deg,
    rgba(240, 179, 28, 0.18),
    var(--card),
    rgba(196, 118, 26, 0.1)
  );
}
.placement-card:nth-child(2) .placement-card-body {
  background: linear-gradient(
    135deg,
    rgba(196, 118, 26, 0.18),
    var(--card),
    rgba(240, 179, 28, 0.1)
  );
}
.placement-body-inner {
  text-align: center;
}
.placement-body-inner svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}
.placement-body-inner p {
  font-size: 17px;
  font-weight: 600;
}
.placement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.98) 40%,
    transparent
  );
}
.placement-testimonial {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  width: 100%;
}
.test-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.test-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}
.test-badge svg {
  width: 18px;
  height: 18px;
}
.test-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.test-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- FAQ ---- */
.faq {
  background: var(--card);
  border-top: 1px solid var(--border);
}
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
  font-family: var(--font-sans);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover,
.faq-question.open {
  color: var(--primary);
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s;
}
.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.accreditations {
  padding: 60px 0;
  background: rgba(240, 179, 28, 0.05);
}
.accreditations h2 {
  margin-bottom: 40px;
}
.accreditations-scroll {
  overflow: hidden;
  border-radius: 12px;
}
.accreditations-track {
  display: flex;
  gap: 40px;
  animation: scroll-left 30s linear infinite;
  width: fit-content;
}
.accreditation-item {
  min-width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.accreditation-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.accreditation-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.accreditations-scroll:hover .accreditations-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .accreditations {
    padding: 40px 0;
  }
  .accreditations h2 {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .accreditations-track {
    gap: 20px;
  }
  .accreditation-item {
    min-width: 100px;
    height: 70px;
    gap: 20px;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .header-center{
      display:none;
  }
  .explore-course-section{display:none;}
}

@media (max-width: 480px) {
  .accreditations {
    padding: 30px 0;
  }
  .accreditations h2 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .accreditations-track {
    gap: 15px;
  }
  .accreditation-item {
    min-width: 80px;
    height: 60px;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
}

/* ── CARD SCENE ── */
.scene {
  perspective: 1200px;
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 1;
  animation: floatIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.scene:hover .card-3d {
  transform: rotateY(-2deg) rotateX(1deg) translateZ(0);
}

/* ── MAIN CARD ── */
.card-3d {
  background: linear-gradient(160deg, #ffffff 0%, #fdfbf2 60%, #faf8ee 100%);
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 -2px 0 rgba(0, 0, 0, 0.06) inset,
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transform: rotateY(0deg) rotateX(0deg);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease;
  transform-style: preserve-3d;
}

.scene:hover .card-3d {
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 -2px 0 rgba(0, 0, 0, 0.06) inset,
    0 50px 100px rgba(0, 0, 0, 0.16),
    0 20px 40px rgba(17, 83, 212, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ── CARD TOP HEADER ── */
.card-header {
  position: relative;
  padding: 1rem 1rem 1rem;
  overflow: hidden;
  background: linear-gradient(160deg, #1153d4 0%, #0a3aaa 100%);
}

.card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1153d4, #00c8ff, #7c3aed, #1153d4);
  background-size: 200% 100%;
  animation: shimmerLine 4s linear infinite;
}
@keyframes shimmerLine {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 200% 0;
  }
}

.card-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 120% at 50% -10%,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.header-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.header-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c8ff;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.card-header h1 {
  font-family: "Syne", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 0.35rem;
}
.card-header h1 span {
  background: linear-gradient(135deg, #a8d4ff, #e0c8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

/* ── OFFER STRIP ── */
.offer-strip {
  margin: 0 5px 0;
  background: linear-gradient(
    135deg,
    rgba(245, 200, 66, 0.12),
    rgba(245, 200, 66, 0.06)
  );
  border: 1px solid rgba(245, 200, 66, 0.35);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.offer-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 200, 66, 0.1),
    transparent
  );
  animation: sweep 3s ease-in-out infinite;
}
@keyframes sweep {
  from {
    left: -60%;
  }
  to {
    left: 120%;
  }
}

.offer-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245, 200, 66, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offer-icon svg {
  width: 16px;
  height: 16px;
  stroke: #b87d00;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.offer-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #7a5200;
  display: block;
}
.offer-text > p{
   font-size:1.2rem;
}
.offer-text > .head-offer-get{
  font-size:1.5rem;
  color: #fff;
  font-weight:600;
}

/* ── FORM BODY ── */
.card-body {
  padding: 1rem;
  background: #fffdf5;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.field:last-child {
  margin-bottom: 0;
}

.field label {
  font-size: 10.5px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 2px;
}

/* ── 3D INPUT ── */
.input-wrap {
  position: relative;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f0 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -2px 0 rgba(0, 0, 0, 0.06) inset,
    0 4px 10px rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.input-wrap:focus-within {
  border-color: rgba(17, 83, 212, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -2px 0 rgba(0, 0, 0, 0.06) inset,
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 0 0 3px rgba(17, 83, 212, 0.1);
}

.input-wrap svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  stroke: #aab0bc;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transition: stroke 0.2s;
}
.input-wrap:focus-within svg {
  stroke: #1153d4;
}

.input-wrap input {
  width: 100%;
  height: 38px;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 12px 0 34px;
  color: #1a1a2e;
  font-size: 13px;
  font-family: "Inter", sans-serif;
}
.input-wrap input::placeholder {
  color: #bbc0cc;
}

/* ── RECAPTCHA ── */
.recaptcha-box { 
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.recaptcha-box svg {
  width: 20px;
  height: 20px;
  stroke: #aab0bc;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.recaptcha-box span {
  font-size: 11px;
  color: #9ca3af;
}

/* ── 3D SUBMIT BUTTON ── */
.btn-wrap {
  position: relative;
  border-radius: 14px;
  display: block;
}

.btn-shadow {
  position: absolute;
  inset: 3px 0 -3px 0;
  background: #0a3aaa;
  border-radius: 14px;
  z-index: 0;
}

.submit-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 44px;
  background: linear-gradient(180deg, #2d7cf6 0%, #1153d4 50%, #0f48c2 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 -2px 0 rgba(0, 0, 0, 0.25) inset;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  transform: translateY(0);
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #3d8aff 0%, #1a5ee8 50%, #1250d0 100%);
}

.submit-btn:active {
  transform: translateY(3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 -1px 0 rgba(0, 0, 0, 0.2) inset;
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.8);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.submitting {
  display: none;
}

/* ── FOOTER ── */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-size: 11.5px;
  color: #aab0bc;
}
.form-footer svg {
  width: 13px;
  height: 13px;
  stroke: #aab0bc;
  fill: none;
  stroke-width: 1.5;
}

/* ── DIVIDER ── */
.divider {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.07),
    transparent
  );
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .field-row {
    grid-template-columns: 1fr;
  }
  .card-header {
    padding:7px;
  }
  .card-body {
    padding: 1.25rem 1.5rem 1.75rem;
  }
  .offer-strip {
    margin: 0 3px;
  }
  .card-header h1 {
    font-size: 1.4rem;
  }
}
.carousel-section {
  width: 100%;
  max-width: 900px;
}

.carousel-section h2 {
  text-align: center;
  font-size: 1.6rem;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
}

.carousel-section p {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* ── CAROUSEL WRAPPER ── */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ── SLIDES TRACK ── */
.slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── SINGLE SLIDE ── */
.slide {
  min-width: 100%;
  position: relative;
  background: #fff;
}

.slide img {
  width: 100%;
  height: 420px;
  object-fit: fill;
  display: block;
}

/* ── SLIDE OVERLAY CAPTION ── */
/*.slide-caption {*/
/*  position: absolute;*/
/*  bottom: 0; left: 0; right: 0;*/
/*  background: linear-gradient(transparent, rgba(0,0,0,0.75));*/
/*  color: #fff;*/
/*  padding: 2rem 2rem 1.5rem;*/
/*  transform: translateY(8px);*/
/*  opacity: 0;*/
/*  transition: transform 0.4s ease, opacity 0.4s ease;*/
/*}*/

/*.slide.active .slide-caption {*/
/*  transform: translateY(0);*/
/*  opacity: 1;*/
/*}*/

/*.slide-caption h3 {*/
/*  font-size: 1.1rem;*/
/*  font-weight: 700;*/
/*  margin-bottom: 4px;*/
/*}*/

/*.slide-caption p {*/
/*  font-size: 0.82rem;*/
/*  color: rgba(255,255,255,0.8);*/
/*  margin: 0;*/
/*  text-align: left;*/
/*}*/

/*.slide-caption .company-badge {*/
/*  display: inline-block;*/
/*  background: #1153d4;*/
/*  color: #fff;*/
/*  font-size: 0.72rem;*/
/*  font-weight: 700;*/
/*  padding: 3px 10px;*/
/*  border-radius: 100px;*/
/*  margin-bottom: 8px;*/
/*  letter-spacing: 0.05em;*/
/*}*/

/* ── PREV / NEXT BUTTONS ── */
.btn-prev,
.btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 10;
}

.btn-prev {
  left: 16px;
}
.btn-next {
  right: 16px;
}

.btn-prev:hover,
.btn-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.btn-prev svg,
.btn-next svg {
  width: 18px;
  height: 18px;
  stroke: #1a1a2e;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── DOTS ── */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 1rem 0 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #c5cfe0;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  border: none;
}

.dot.active {
  background: #1153d4;
  width: 24px;
}

/* ── THUMBNAILS ── */
.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.thumbs::-webkit-scrollbar {
  display: none;
}

.thumb {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition:
    border-color 0.25s,
    transform 0.2s;
  opacity: 0.6;
  transition:
    opacity 0.25s,
    border-color 0.25s,
    transform 0.2s;
}

.thumb.active {
  border-color: #1153d4;
  opacity: 1;
  transform: scale(1.05);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── COUNTER ── */
.counter {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 10;
  letter-spacing: 0.05em;
}

/* ── AUTOPLAY PROGRESS BAR ── */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #1153d4;
  width: 0%;
  z-index: 10;
  animation: none;
}

.progress-bar.running {
  animation: progress 4s linear forwards;
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .slide img {
    height: 240px;
  }
  .btn-prev {
    left: 8px;
  }
  .btn-next {
    right: 8px;
  }
  .btn-prev,
  .btn-next {
    width: 36px;
    height: 36px;
  }
  .thumb {
    width: 60px;
    height: 42px;
  }
  .carousel-section h2 {
    font-size: 1.3rem;
  }
}
.land_placement {
  background: linear-gradient(135deg, #fff9db, #ffffff);
}
/* Left Card */
.content-card {
  /* background: #fff; */
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
  transition: 0.3s;
}
.content-card .poin {
  border-top: 3px solid orange;
  border-radius: 10px;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.main-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.section-title {
  font-size: 22px;
  color: #f59e0b;
  font-weight: 600;
}

/* Course List */
.course-list {
  columns: 2;
  padding-left: 0;
  list-style: none;
}
.course-list li {
  background: #fff;
  padding: 8px 14px;
  margin-bottom: 8px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
/* Career list */
.career-list {
  padding-left: 20px;
}
/* Right Highlight Card */
.highlight-card {
        position: sticky;
        top: 0;
        background:
          linear-gradient(to right, #b5181873, #00000000),
          url(/assets/logo/bg-card-dubai.webp) no-repeat;
          background-size:cover;
        background-position:center;
        color: white;
        padding: 90px 40px;
        border-radius: 20px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
        transform: perspective(800px) rotateY(10deg);
        transition: 0.4s;
}
.sticky-position {
  position: sticky;
  top: 0;
}
.highlight-card:hover {
  transform: perspective(900px) rotateY(0deg) translateY(-10px);
}
.highlight-card h4 {
  font-size: 60px;
  font-weight: 800;
}
.spc_course_title {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .sticky-position {
    position: static;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- FOOTER ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-about {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links li a:hover {
  color: var(--primary);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item span {
  font-size: 14px;
  color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  color: var(--muted);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--foreground);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card-wrap {
    display: none;
  }
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .modes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .placements-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modes-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trainer-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trainer-stat.full {
    grid-column: span 2;
  }
  h2 {
    font-size: 1.8rem;
  }
  section {
    padding: 64px 0;
  }
}
