/* =========================================
   NMIMS B.Tech Landing Page — style.css
   Palette: Deep Blue #1a56db | Orange #f97316 | Navy #1e3a8a
   ========================================= */

/* ---- Google Font ---- */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");
/* ---- CSS Variables ---- */
:root {
  --blue: #1a56db;
  --blue-dark: #1e3a8a;
  --blue-light: #3b82f6;
  --blue-pale: #eff6ff;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fff7ed;
  --green: #10b981;
  --green-dark: #059669;
  --green-pale: #ecfdf5;
  --purple: #8b5cf6;
  --bg-purple: #e8f6fb;
  --red: #ef4444;
  --yellow: #f59e0b;
  --text-dark: #1e3a8a;
  --text-body: #374151;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-light: #f8fbfc;
  --bg-gray: #f1f5f9;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  /* --font: 'Nunito', sans-serif; */
  --font: "Plus Jakarta Sans", sans-serif;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  outline: none;
}
ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}
.section {
  padding-block: 64px;
}
.section-sm {
  padding-block: 40px;
}
.center {
  text-align: center;
}
.text-blue {
  color: var(--blue);
}
.text-orange {
  color: var(--orange);
}
.text-green {
  color: var(--green);
}
.text-navy {
  color: var(--blue-dark);
}

/* ---- Scroll Reveal ---- */

/* --- Nav Logo (right side) --- */
.sticky-nav-inner {
  justify-content: space-between; /* ADD this property */
}
.nav-logo {
  display: flex;
  align-items: center;
  padding: 6px 16px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-logo img {
    height: 32px;
  }
}
@media (max-width: 600px) {
  .nav-logo img {
    height: 26px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ================================================
   TOPBAR (thin orange line)
   ================================================ */
.topbar {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--blue) 100%);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  background: linear-gradient(
    150deg,
    #0a2a88 0%,
    #184ad1 30%,
    #386ee3 60%,
    #3b82f6 100%
  );
  padding-block: 48px 52px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 75% 50%,
      rgba(96, 165, 250, 0.18) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse at 10% 90%,
      rgba(10, 30, 100, 0.45) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}
.hero-content {
}
.hero-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.stat-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 130px;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.stat-box:hover {
  background: rgba(255, 255, 255, 0.18);
}
.stat-icon {
  font-size: 22px;
  color: rgb(227, 195, 115);
}
.stat-val {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.3;
}
.star-row {
  color: #fbbf24;
  font-size: 13px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.btn-text:hover {
  color: #fff;
}
.hero-img-wrap {
  position: relative;
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* ================================================
   STICKY NAV
   ================================================ */
.sticky-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.sticky-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sticky-nav-inner::-webkit-scrollbar {
  display: none;
}
.nav-link {
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition);
  cursor: pointer;
}
.nav-link.active,
.nav-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ================================================
   QUICK INFO
   ================================================ */
.quick-info {
  background: #fff;
}
.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.info-cards-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 840px;
  margin-inline: auto;
}
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.info-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 24px;
}
.icon-blue {
  background: #eff6ff;
}
.icon-orange {
  background: #fff7ed;
}
.icon-green {
  background: #ecfdf5;
}
.icon-purple {
  background: #f5f3ff;
}
.icon-yellow {
  background: #fffbeb;
}
.icon-teal {
  background: #f0fdfa;
}
.icon-red {
  background: #fef2f2;
}
.info-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.info-value {
  font-size: 17px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.3;
}

/* ================================================
   COURSES SECTION
   ================================================ */
.courses {
  background: var(--bg-light);
}
.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.course-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.course-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.course-card.purple {
  border-left-color: var(--purple);
}
.course-card.red {
  border-left-color: var(--red);
}
.course-card.green {
  border-left-color: var(--green);
}
.course-card.orange-border {
  border-left-color: var(--orange);
}
.course-card-single {
  max-width: calc(50% - 12px);
}
.course-header {
  padding: 22px 22px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.course-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.course-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}
.course-card .course-title {
  color: var(--blue);
}
.course-card.purple .course-title {
  color: var(--purple);
}
.course-card.red .course-title {
  color: var(--red);
}
.course-card.green .course-title {
  color: var(--green-dark);
}
.course-card.orange-border .course-title {
  color: var(--orange);
}
.course-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-gray);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-top: 6px;
}
.course-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 22px;
}
.meta-item {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.meta-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.meta-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
}
.meta-val.orange {
  color: var(--orange);
}
.meta-val.green {
  color: var(--green-dark);
}
.course-highlights {
  padding: 0 22px 10px;
}
.highlights-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 5px;
}
.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 10px;
}
.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 20px;
}
.avg-pkg-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.avg-pkg-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}
.btn-course {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: var(--blue);
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-course:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.course-card.purple .btn-course {
  background: var(--purple);
}
.course-card.red .btn-course {
  background: var(--red);
}
.course-card.green .btn-course {
  background: var(--green-dark);
}
.course-card.orange-border .btn-course {
  background: var(--orange);
}

/* ================================================
   COMPARISON TABLE
   ================================================ */
.comparison {
  background: #fff;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
thead tr {
  background: var(--blue);
  color: #fff;
}
thead th {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
thead th:first-child {
  text-align: left;
}
tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
tbody tr:hover {
  background: var(--blue-pale);
}
tbody td {
  padding: 13px 20px;
  text-align: center;
  color: var(--text-body);
}
tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}
tbody td.highlight-blue {
  color: var(--blue);
  font-weight: 700;
}
tbody td.highlight-orange {
  color: var(--orange);
  font-weight: 700;
}

/* ================================================
   INFRASTRUCTURE GALLERY
   ================================================ */
.infrastructure {
  background: var(--bg-light);
}
.gallery-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 4px;
}
.gallery-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.gallery-slide img:hover {
  transform: scale(1.02);
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.gallery-dot {
  width: 32px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border);
  border: none;
  transition:
    background var(--transition),
    width var(--transition);
  cursor: pointer;
}
.gallery-dot.active {
  background: var(--orange);
  width: 48px;
}

/* ================================================
   ELIGIBILITY
   ================================================ */
.eligibility {
  background: #fff;
}
.eligibility-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: center;
}
.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-purple);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-left: 3px solid #e5e7eb;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.eligibility-item:hover {
  border-left-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.elig-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}
.elig-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
}
.eligibility-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.grad-cap-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--blue), var(--purple)) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: var(--shadow-lg);
  animation: pulseCircle 3s ease-in-out infinite;
}
@keyframes pulseCircle {
  0%,
  100% {
    box-shadow: var(--shadow-lg);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(26, 86, 219, 0.08);
    transform: scale(1.03);
  }
}

/* ================================================
   DATES TIMELINE
   ================================================ */
.dates {
  background: var(--bg-light);
}
.timeline {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--orange));
}
.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}
.timeline-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.timeline-item:hover .timeline-num {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.5);
}
.timeline-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.timeline-item:hover .timeline-card {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.timeline-event {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.timeline-date {
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.urgency-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
.btn-urgency {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
  animation: urgencyPulse 2s ease-in-out infinite;
  transition: transform var(--transition);
}
.btn-urgency:hover {
  transform: scale(1.04);
}
@keyframes urgencyPulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
  }
  50% {
    box-shadow: 0 4px 28px rgba(249, 115, 22, 0.55);
  }
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: var(--orange);
  padding-block: 60px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 17px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.btn-phone svg {
  width: 20px; /* was 24px */
  height: 20px; /* was 24px */
  stroke: orange !important;
}
.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform var(--transition),
    background var(--transition);
}
.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}
.badge-urgent {
  background: rgba(255, 255, 255, 0.95);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

/* ================================================
   HOW WE HELP (4-step process)
   ================================================ */
.process {
  background: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.process-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.process-icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--blue);
}
.process-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.process-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.process-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 14px;
  z-index: 2;
}
.process-card:last-child .process-arrow {
  display: none;
}
.no-hidden-badge {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}
.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
}

/* ================================================
   WHY CHOOSE
   ================================================ */
.why-choose {
  background: var(--bg-light);
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--blue);
  transition: transform var(--transition);
}
.why-card:hover .why-icon-circle {
  transform: scale(1.08);
}
.why-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.25;
}
.why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.why-stat {
  display: inline-flex;
  align-items: center;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

/* ================================================
   FAQ
   ================================================ */
.faq {
  background: #fff;
}
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item.open {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  background: #fff;
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover {
  background: var(--bg-light);
}
.faq-item.open .faq-question {
  background: var(--bg-light);
}
.faq-q-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.4;
}
.faq-chevron {
  color: var(--orange);
  font-size: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}
.ask-more {
  display: flex;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 8px;
}
.btn-ask {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 40px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.25);
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-ask:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--blue-dark);
  padding-block: 48px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-contact-item svg {
  color: rgba(255, 255, 255, 0.5);
  width: 20px; /* was 24px */
  height: 20px; /* was 24px */
  stroke: rgba(217, 217, 217, 0.752) !important;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
}
.footer-link:hover {
  color: var(--orange);
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  transition:
    background var(--transition),
    transform var(--transition);
  cursor: pointer;
}
.social-icon:hover {
  background: var(--orange);
  transform: scale(1.12);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ================================================
   FLOATING BUTTONS
   ================================================ */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-wa {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.float-call {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.45);
  animation: floatCallPulse 2.5s ease-in-out infinite;
  cursor: pointer;
  transition: transform var(--transition);
}
.float-call:hover {
  transform: scale(1.12);
}
@keyframes floatCallPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.45);
  }
  50% {
    box-shadow: 0 4px 36px rgba(249, 115, 22, 0.7);
  }
}
.float-call svg {
  width: 22px; /* was 24px */
  height: 22px; /* was 24px */
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-img-wrap {
    display: none;
  }
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-cards-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-grid {
    grid-template-columns: 1fr;
  }
  .course-card-single {
    max-width: 100%;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .eligibility-inner {
    grid-template-columns: 1fr;
  }
  .eligibility-visual {
    display: none;
  }
  .why-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .section {
    padding-block: 40px;
  }
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
  .info-cards-2 {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    flex-direction: column;
  }
  .stat-box {
    min-width: auto;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-slide {
    grid-template-columns: 1fr;
  }
  .gallery-slide img {
    height: 180px;
  }
}
