:root {
  --primary: #0060ff;
  --primary-light: #e5efff;
  --primary-dark: #0037a6;
  --bg-light: #f7f8fc;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

header {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
}
/* Mobile-only header background color */
@media (max-width: 767px) {
  header {
    background: #dcece9;
    border-bottom: none; 
  }
  .nav-mobile-menu {
    background: #99ffc2;
    border-top: none;
  }

  /* menu text color for contrast */
  .nav-mobile-menu-inner a {
    color: #111827;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

nav a {
  color: var(--text-muted);
  font-weight: 500;
}

nav a.active {
  color: var(--primary);
}

.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text-main);
  background: #ffffff;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* MOBILE NAV */

.nav-desktop {
  display: none;
}

.nav-toggle {
  border: none;
  background: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.nav-toggle span {
  height: 2px;
  background: #111827;
  border-radius: 999px;
}

.nav-mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.nav-mobile-menu.open {
  display: block;
}

.nav-mobile-menu-inner {
  padding: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.nav-mobile-menu-inner a {
  color: var(--text-muted);
  font-weight: 500;
}

/* HERO */


label {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
  display: block;
}

select,
input[type="text"],
input[type="tel"] {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
}

select:focus,
input[type="text"]:focus,
input[type="tel"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.hero-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 11px;
  color: #374151;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.chip.primary {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: rgba(37, 99, 235, 0.4);
}

/* HERO RIGHT */

.hero-visual {
  position: relative;
  padding: 12px;
}

.hero-visual-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.hero-visual-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-visual-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.program-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  background: #f9fafb;
  font-size: 12px;
}

.program-pill span:first-child {
  font-weight: 500;
}

.program-pill span:last-child {
  color: var(--text-muted);
}

.stat-tag {
  position: absolute;
  right: 8px;
  top: 0;
  transform: translateY(-40%);
  padding: 6px 12px;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  font-size: 11px;
  box-shadow: var(--shadow-soft);
}

/* SECTION WRAPPER */

.section {
  padding: 32px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.section-link {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
}

/* DOMAIN CARDS */

.domain-grid {
  display: grid;
  gap: 12px;
}

.domain-card {
  border-radius: 16px;
  padding: 14px 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.domain-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.domain-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--primary-dark);
}

.domain-name {
  font-size: 14px;
  font-weight: 600;
}

.domain-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.domain-cta {
  font-size: 11px;
  color: var(--primary);
  font-weight: 500;
  white-space: nowrap;
}

/* UNIVERSITY GRID */

.top-universities-section {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.top-uni-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* LEFT BLOCK */
.top-uni-intro {
  max-width: 520px;
}

.top-uni-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f97316;
  margin-bottom: 8px;
}

.top-uni-title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111827;
}

.top-uni-title span {
  color: #e32726;
}

.top-uni-desc {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 18px;
}

.top-uni-btn {
  border: none;
  border-radius: 999px;
  background: #e32726;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  cursor: pointer;
}

/* RIGHT – CARDS SLIDER */
.top-uni-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-uni-track-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
}

.top-uni-track {
  display: flex;
  gap: 18px;
  padding-bottom: 4px;
}

.top-uni-card {
  min-width: 260px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #f3d7d7;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.top-uni-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.top-uni-card-body {
  padding: 12px 14px 14px;
}

.top-uni-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.top-uni-card-text {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 10px;
}

.top-uni-card-btn {
  margin-top: auto;
  width: 100%;
  border-radius: 999px;
  border: none;
  background: #e32726;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 0;
  cursor: pointer;
}

/* arrows */
.top-uni-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: #e32726;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Hover (desktop) */
@media (hover: hover) {
  .top-uni-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  }
}

/* RESPONSIVE LAYOUT */
@media (min-width: 900px) {
  .top-uni-layout {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }

  .top-uni-intro {
    flex: 0 0 40%;
  }

  .top-uni-carousel {
    flex: 1;
  }
}
/* =======================
   TOP UNIVERSITIES SECTION
   ======================= */

.topuni-section {
  background: #fcf0f0;
}

/* main row */
.topuni-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* left info column */
.topuni-left {
  max-width: 480px;
}

.topuni-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e32726;
  font-weight: 700;
  margin-bottom: 6px;
}

.topuni-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #111827;
}

.topuni-title span {
  color: #e32726;
}

.topuni-text {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 16px;
}

.topuni-cta {
  border: none;
  border-radius: 999px;
  background: #e32726;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  cursor: pointer;
}

/* right cards wrapper */
.topuni-right {
  width: 100%;
}

/* responsive grid for cards */
.topuni-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* card */
.topuni-card {
  flex: 0 0 240px;   
  border-radius: 18px;
  border: 1px solid #ffd6d6;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* image */
.topuni-img-wrap {
  height: 140px;
}

.topuni-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* body */
.topuni-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.topuni-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.topuni-card-text {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.4;
}

.topuni-card-btn {
  margin-top: auto;
  border-radius: 999px;
  border: none;
  background: #e32726;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 0;
  cursor: pointer;
}
.topuni-right {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* arrows */
.topuni-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: #e32726;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

/* slider viewport */
.topuni-slider {
  overflow: hidden;
  width: 100%;
}

/* horizontal track */
.topuni-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}

/* mobile swipe */
@media (max-width: 768px) {
  .topuni-arrow {
    display: none;
  }

  .topuni-card {
    flex: 0 0 80%;
  }

  .topuni-slider {
    overflow-x: auto;
  }

  .topuni-track {
    scroll-snap-type: x mandatory;
  }

  .topuni-card {
    scroll-snap-align: start;
  }
}

/* desktop layout: left column + right cards side by side */
@media (min-width: 900px) {
  .topuni-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .topuni-left {
    flex: 0 0 36%;
  }

  .topuni-right {
    flex: 1;
  }
}

/* STEPS / WHY SECTION */

.steps-grid {
  display: grid;
  gap: 12px;
}

.step-card {
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.step-label {
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* CTA BAR / HELP BANNER */

.help-banner {
  background: #111827;
  color: #f9fafb;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.help-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.help-title {
  font-size: 15px;
  font-weight: 600;
}

.help-sub {
  font-size: 12px;
  opacity: 0.75;
}

/* FOOTER */

.site-footer {
  background: #021638;
  color: #ffffff;
  padding: 40px 0 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Top row */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.footer-logo-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-logo-text span {
  font-size: 16px;
  font-weight: 500;
  margin-left: 2px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #021638;
  text-decoration: none;
}

/* Columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-size: 14px;
  color: #e5e7eb;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 28px;
  padding-top: 14px;
  font-size: 12px;
  color: #9ca3af;
}
.footer-social-img img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-social {
    margin-top: 4px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
  }
}


/* RESPONSIVE */

@media (min-width: 640px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }

  .hero-card {
    padding: 18px;
  }

  .domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .university-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .help-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .header-inner {
    height: 72px;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .section {
    padding: 40px 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .domain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .university-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* === HERO: FULL-WIDTH IMAGE SLIDER + BRANDS + STATS === */

.hero {
  background: #ffffff;
  padding: 0;
}

/* banner slider */
/* =========================
   HERO BANNER BASE
========================= */

.hero-banner-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  background: #000;
}

/* Slides layered */
.hero-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero-banner-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Picture & Image */
.hero-banner-slide picture,
.hero-banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-banner-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Dots */
.hero-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.hero-banner-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.hero-banner-dots button.active {
  background: #ffffff;
}

/* =========================
   MOBILE CARD DESIGN
========================= */
@media (max-width: 768px) {
  .hero-banner-slider {
    background: #ffffff;
  }

  .hero-banner-slide {
    padding: 12px;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.8s ease;
    background: #ffffff;
  }

  .hero-banner-slide.active {
    transform: scale(1);
  }

  .hero-banner-slide img {
    height: 200px;
    border-radius: 18px;
  }
}


/* brands strip */
.hero-brands {
  border-top: 1px solid #f0dcdc;
  border-bottom: 1px solid #f0dcdc;
  background: #ffffff;
  padding: 14px 0;
}

.hero-brands-viewport {
  overflow: hidden;
}

.hero-brands-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: hero-brands-scroll 30s linear infinite;
}

.hero-brand-item {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid #f1f1f1;
  background: #ffffff;
}

.hero-brand-item img {
  display: block;
  max-height: 40px;
  width: auto;
}

@keyframes hero-brands-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* stats boxes */
.hero-stats {
  background: #ffffff;
  padding: 16px 0 22px; 
}

.hero-stats-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


.hero-stat-box {
  border-radius: 16px;
  border: 2px solid #e32726;
  background: #fff7f7;
  padding: 10px 14px; 
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.hero-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffe2e2;
  font-size: 18px;
}

.hero-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.hero-stat-label {
  font-size: 11px;
  color: #777;
}

@media (min-width: 1024px) {
  .hero-stats-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-stat-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .hero-stat-icon {
    margin-bottom: 2px;
  }

  .hero-stat-value {
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-stat-label {
    font-size: 11px;
  }
}

/* banner height */
@media (min-width: 768px) {
  .hero-banner-slide img {
    height: 360px;
  }
}

@media (min-width: 1200px) {
  .hero-banner-slide img {
    height: 420px;
  }
}
/* === PROGRAM TABS + GRID === */
:root {
  --btn-bg: #e32726;
  --btn-bg-hover: #c91919;
  --btn-color: #fff;
  --card-radius: 12px;
  --card-height: 150px; 
}

/* =========================
   LAYOUT
   ========================= */
.programs-section {
  background: #f5fbfd;
  padding: 20px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 20px;
  margin: 0;
  color: #111;
}

.section-subtitle {
  font-size: 13px;
  color: #555;
  margin-top: 4px;
}

/* =========================
   ARROWS (KEPT, UNUSED NOW)
   ========================= */
.programs-slider-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}

.programs-arrow {
  appearance: none;
  border: none;
  background: var(--btn-bg);
  color: var(--btn-color);
  width: 40px;
  height: 36px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(2, 6, 23, 0.06);
}

.programs-arrow[disabled] {
  opacity: 0.36;
  cursor: default;
  pointer-events: none;
}

/* =========================
   GRID (RE-ENABLED)
   ========================= */
.programs-grid {
  display: grid; /* FIXED */
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* =========================
   CARD (UNCHANGED)
   ========================= */
.program-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 12px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.badge {
  background: #fff4f4;
  color: #e32726;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid rgba(227, 39, 38, 0.06);
  transform: translateY(-6px);
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.04);
}

.title {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  text-align: center;
}

/* =========================
   BUTTON (UNCHANGED)
   ========================= */
.view-btn {
  margin-top: auto;
  width: 100%;
  border: none;
  background: var(--btn-bg);
  color: var(--btn-color);
  padding: 12px 10px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  font-size: 14px;
}

.view-btn:hover {
  background: var(--btn-bg-hover);
}

/* =========================
   VIEW MORE
   ========================= */
.view-more-wrap {
  text-align: center;
  margin-top: 18px;
}

.view-more-btn {
  background: var(--btn-bg);
  color: var(--btn-color);
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

/* =========================
   MODAL
   ========================= */
.programs-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.programs-modal.active {
  display: flex;
}

.programs-modal-content {
  background: #fff;
  width: 92%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 14px;
  padding: 16px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.modal-close {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* modal grid uses SAME card sizing */
#modalProgramsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 699px) {

  .program-card {
    min-height: 130px !important;
    padding: 8px 6px 0 !important;
    border-radius: 10px !important;
  }

  .card-top {
    gap: 4px !important;
    margin-bottom: 4px !important;
  }

  .badge {
    font-size: 10px !important;
    padding: 3px 6px !important;
    transform: translateY(-4px) !important;
  }

  .icon-box {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
  }

  .title {
    font-size: 12px !important;
    margin-top: 4px !important;
  }

  .view-btn {
    font-size: 11px !important;
    padding: 8px 0 !important;
  }

  .programs-grid,
  #modalProgramsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#programsGrid .program-card:nth-child(n + 10) {
  display: none;
}
/* =========================
   UNIVERSITIES SECTION
   ========================= */

.universities-section {
  background: #ffffff;
  padding: 28px 0;
}

.universities-header {
  text-align: center;
  margin-bottom: 22px;
}

.universities-header h2 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  color: #0f172a;
}

/* =========================
   GRID
   ========================= */
.universities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* mobile: 2 per row */
  gap: 14px;
}

/* =========================
   CARD 
   ========================= */
.university-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.university-card img {
  height: 44px;
  max-width: 120px;
  object-fit: contain;

  display: block;         
  margin: 0 auto 12px;     
}


.university-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.university-card span {
  font-size: 13px;
  color: #475569;
  line-height: 1.35;
}

/* =========================
   SHOW ONLY 8 CARDS INITIALLY
   ========================= */
#universitiesGrid .university-card:nth-child(n + 9) {
  display: none;
}

/* =========================
   VIEW MORE BUTTON (CONSISTENT)
   ========================= */
.view-more-wrap {
  text-align: center;
  margin-top: 18px;
}

.view-more-btn {
  background: var(--btn-bg);
  color: var(--btn-color);
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

.view-more-btn:hover {
  background: var(--btn-bg-hover);
}

/* =========================
   MODAL
   ========================= */
.universities-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.universities-modal.active {
  display: flex;
}

.universities-modal-content {
  background: #ffffff;
  width: 92%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 16px;
}

.universities-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.universities-modal .modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.universities-modal .modal-close {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* modal grid same layout */
#modalUniversitiesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* =========================
   DESKTOP ENHANCEMENT (OPTIONAL)
   ========================= */
@media (min-width: 768px) {
  .universities-grid,
  #modalUniversitiesGrid {
    grid-template-columns: repeat(4, 1fr); /* desktop: 4 per row */
  }

  .universities-header h2 {
    font-size: 22px;
  }
}


/* Explore Learnkity */
.explore-main {
  max-width: 900px;
  margin: 0 auto;
}


.explore-text {
  font-size: 13px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* bullet list */

.explore-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.explore-list li {
  font-size: 13px;
  color: #111827;
  line-height: 1.5;
}

.explore-list li span {
  font-weight: 600;
}

/* right card */

.explore-side {
  display: flex;
}

.explore-card {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #ffd6d6;
  background: #ffffff;
  padding: 14px 16px 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.explore-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.explore-card-text {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

.explore-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.explore-point {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #374151;
}

.explore-point-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e32726;
}

/* button */

.explore-btn {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
  background: #e32726;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

@media (hover: hover) {
  .explore-btn:hover {
    background: #c91f1e;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(201, 31, 30, 0.4);
  }
}

/* responsive layout */

@media (min-width: 768px) {
  .explore-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: flex-start;
  }

  .explore-title {
    font-size: 22px;
  }

  .explore-text,
  .explore-card-text {
    font-size: 14px;
  }
}
/* MOBILE FLOATING FOOTER BUTTONS */

.mobile-fab {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
  background: #ffffff;
  border-top: 1px solid #f1d6d6;
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
}

.mobile-fab {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.fab-item {
  background: none;
  border: none;
  padding: 10px 4px 8px;
  color: #111827;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
}

.fab-icon {
  font-size: 18px;
  line-height: 1;
}

.fab-text {
  font-size: 11px;
  font-weight: 600;
  color: #374151;
}

/* WhatsApp highlight */
.fab-whatsapp .fab-icon {
  color: #25d366;
}

/* mobile only */
@media (max-width: 767px) {
  .mobile-fab {
    display: grid;
  }

  body {
    padding-bottom: 64px;
  }
}

/* hide on tablet and desktop */
@media (min-width: 768px) {
  .mobile-fab {
    display: none;
  }
}

/* SERVICES SECTION */
.services-section {
  background: #f7f0fc;
  padding: 32px 0 40px;
}

.services-grid {
  display: grid;
  gap: 24px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

/* image box */
.service-icon {
  flex: 0 0 120px;
  max-width: 50px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* text */
.service-text {
  flex: 1;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

.service-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* layout with right card on desktop */
@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .explore-side {
    align-items: flex-start;   
  }

  .explore-card {
    align-self: flex-start;    
    height: auto;              
  }
}



/* mobile: stack and keep image above text for all */
@media (max-width: 767px) {
  .service-item {
    flex-direction: row;
    align-items: center;
  }

  .service-item.reverse {
    flex-direction: row-reverse;
  }

  .service-icon {
    flex: 0 0 90px;
    max-width: 90px;
  }

  .service-title {
    font-size: 14px;
  }

  .service-desc {
    font-size: 12px;
  }
}
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;   
  width: auto;
}

@media (max-width: 768px) {
  .logo-img {
    height: 34px;
  }
}
/* === MEET OUR PROGRAM EXPERTS SECTION === */
.experts-section {
  background: #d9ddff; 
  color: #1a1c33;      
  padding-top: 40px;
  padding-bottom: 40px;
}

.experts-header {
  margin-bottom: 22px;
}

/* TITLES */
.experts-title {
  font-size: 24px;
  font-weight: 800;
  color: #1a1c33; 
  margin-bottom: 6px;
}

.experts-subtitle {
  font-size: 14px;
  color: #4a4e76; 
  max-width: 520px;
}

/* LAYOUT */
.experts-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  gap: 30px;
}

.experts-left {
  padding-right: 20px;
}

/* SLIDER STRUCTURE */
.experts-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.experts-slider {
  overflow: hidden;
  width: 100%;
}

.experts-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
}

/* ARROWS */
.experts-arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #6366f1; 
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.35);
}

.experts-arrow:hover {
  background: #4f46e5; 
}

/* EXPERT CARDS */
.expert-card {
  flex: 0 0 260px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(35, 40, 70, 0.25); 
}

/* PHOTO AREA */
.expert-photo {
  height: 240px;
  background: #aab0ff; 
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CARD BODY */
.expert-body {
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.expert-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1c33;
}

.expert-name-large {
  font-size: 20px;
}

/* ROLE LABEL */
.expert-role {
  font-size: 12px;
  color: #6d28d9; 
  font-weight: 600;
}

/* META INFO */
.expert-meta {
  font-size: 12px;
  color: #4b5563;
}

.expert-body-center {
  text-align: center;
  align-items: center;
}

/* BLUE TAG  */
.expert-meta-blue {
  color: #4f46e5; 
  font-weight: 600;
}

/* BUTTON INSIDE CARD */
.expert-btn {
  margin-top: 8px;
  border-radius: 999px;
  border: none;
  background: #30336b;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.expert-btn:hover {
  background: #1f2254;
}

/* HOVER EFFECT */
@media (hover: hover) {
  .expert-card:hover {
    transform: translateY(-3px);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .experts-layout {
    grid-template-columns: 1fr;
  }

  .experts-left {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .experts-arrow {
    display: none;
  }

  .experts-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .experts-track {
    display: flex;
    gap: 14px;
    width: max-content;
  }

  .expert-card {
    flex: 0 0 230px;
    border-radius: 14px;
    scroll-snap-align: start;
  }

  .expert-photo {
    height: 160px;
  }

  .expert-body {
    padding: 10px 12px 12px;
    gap: 3px;
  }

  .expert-name {
    font-size: 14px;
  }

  .expert-name-large {
    font-size: 16px;
  }

  .expert-role,
  .expert-meta {
    font-size: 11px;
  }

  .expert-btn {
    font-size: 12px;
    padding: 7px 0;
    margin-top: 6px;
  }
}

/* Desktop large card width */
@media (min-width: 900px) {
  .expert-card {
    flex: 0 0 280px;
  }
}

.experts-right {
  overflow: hidden;
}

.experts-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1c33; 
}

.experts-subtitle {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #4a4e76; 
}
/* =========================
   MOBILE 2x2 GRID (EXPERTS)
   ========================= */
@media (max-width: 768px) {

  /* turn slider into grid */
  .experts-slider {
    overflow: visible;
  }

  .experts-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    transform: none !important;
  }

  /* show only 4 cards initially */
  .experts-track .expert-card:nth-child(n + 5) {
    display: none;
  }

  /* smaller cards */
  .expert-card {
    flex: unset;
    width: 100%;
    border-radius: 12px;
  }

  .expert-photo {
    height: 120px;
  }

  .expert-body {
    padding: 8px 10px 10px;
    gap: 2px;
  }

  .expert-name-large {
    font-size: 14px;
  }

  .expert-meta {
    font-size: 10px;
  }

  /* hide arrows on mobile */
  .experts-arrow {
    display: none;
  }

  /* view more button */
  .experts-view-more {
    text-align: center;
    margin-top: 14px;
  }
  .experts-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* show only 4 cards */
  .experts-track .expert-card:nth-child(n + 5) {
    display: none;
  }

  /* CARD SIZE */
  .expert-card {
    width: 100%;
    flex: unset;
    border-radius: 12px;
  }

  .expert-photo {
    height: 110px;
  }

  .expert-body {
    padding: 8px 8px 10px;
    gap: 2px;
  }

  /* NAME */
  .expert-name-large {
    font-size: 13px;
    line-height: 1.2;
  }

  /* META TEXT */
  .expert-meta {
    font-size: 10px;
    line-height: 1.2;
  }

  .experts-arrow {
    display: none;
  }

  .experts-view-more {
    margin-top: 12px;
    text-align: center;
  }
  .experts-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .experts-layout {
    display: block;
  }

  .experts-right {
    width: 100%;
    overflow: visible;
  }

  .experts-track {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .expert-card {
    width: 100%;
    max-width: 100%;
  }
    .expert-card {
    min-height: 250px; 
  }

  .expert-photo {
    height: 160px; 
  }

  .expert-body {
    padding: 10px 10px 12px;
    gap: 3px;
  }

  .expert-name-large {
    font-size: 14px;
    line-height: 1.25;
  }

  /* meta spacing */
  .expert-meta {
    line-height: 1.25;
  }
}

/* =========================
   MODAL (EXPERTS)
   ========================= */
.experts-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.experts-modal.active {
  display: flex;
}

.experts-modal-content {
  background: #fff;
  width: 92%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 16px;
}

.experts-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* === OUR FOUNDER SECTION === */
.founder-section {
  background: #fad4db;
  padding: 12px 0;
}
.founder-section .branches-header {
  margin-top: 0;
}

.founder-section .branches-header .title {
  margin-top: 0;
}
/* WhatsApp CTA  */
.founder-whatsapp {
  text-align: center;
  margin-top: 18px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
}

@media (max-width: 480px) {
  .founder-whatsapp {
    margin-top: 14px;
  }
}

/* Card */
.founder-card {
  max-width: 420px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  text-align: center;
}

.founder-card-image {
  padding: 14px;              
}

.founder-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;         
  display: block;
}

/* Content */
.founder-card-body {
  padding: 8px 20px 26px;
}

.founder-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e32726;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.founder-name {
  font-size: 22px;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 2px;
}

.founder-role {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 10px;
}

.founder-qualification {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 14px;
}

.founder-message {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

.founder-quote {
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  color: #111827;
}

/* Mobile */
@media (max-width: 480px) {
  .founder-card {
    max-width: 92%;
  }

  .founder-card-image img {
    height: 220px;
  }
}

/* App Coming Soon */
.app-soon-section {
  background: #cfffdb; 
  padding: 60px 0;
  color: #0f2e15; 
}

.app-soon-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

/* Left */
.app-soon-badge {
  display: inline-block;
  background: rgba(20, 135, 60, 0.15); 
  color: #14873c; 
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.app-soon-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #0b2a14; 
}

.app-soon-subtitle {
  font-size: 15px;
  max-width: 480px;
  line-height: 1.6;
  color: #355e42; 
}

.app-soon-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.app-soon-btn {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.app-soon-btn.primary {
  background: #1c8b43; 
  color: #ffffff;
}

.app-soon-btn.primary:hover {
  background: #166f35;
}

.app-soon-btn.outline {
  background: transparent;
  color: #0f2e15;
  border: 1px solid rgba(15, 46, 21, 0.25);
}

.app-soon-btn.outline:hover {
  background: rgba(15, 46, 21, 0.06);
}

/* Right side image */
.app-soon-right {
  display: flex;
  justify-content: center;
}

.app-soon-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.25); 
}

.phone-mockup {
  width: 240px;
  height: 480px;
  border-radius: 28px;
  background: #e4ffe9; 
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #baeecf; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f5a40; 
  font-size: 14px;
}

/* Mobile */
@media (max-width: 900px) {
  .app-soon-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-soon-image {
    max-width: 260px;
    margin-top: 24px;
  }

  .app-soon-subtitle {
    margin: 0 auto;
  }

  .app-soon-actions {
    justify-content: center;
  }

  .phone-mockup {
    margin-top: 30px;
    width: 200px;
    height: 400px;
  }
}

/* BRANCHES CSS */
/* =====================================================
   CONTAINER
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   SECTION
   ===================================================== */
.branches-section {
  background: #fbf2f2;
  padding: 48px 0;
  color: #0b1220;
  font-family: Inter, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* =====================================================
   HEADER
   ===================================================== */
.branches-header {
  max-width: 880px;
  margin: 0 auto 20px;
  text-align: left;
}

.branches-header .title {
  font-size: 34px;
  line-height: 1.05;
  margin: 6px 0 12px;
  font-weight: 800;
  color: #151a23;
}

.branches-short {
  color: #6b7280;
  font-size: 15px;
  margin: 0 0 18px;
  max-width: 760px;
}

/* =====================================================
   SLIDER WRAPPER
   ===================================================== */
.branches-slider-wrap {
  position: relative;
}

.branches-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 20px 16px;
}

/* =====================================================
   BRANCH CARD 
   ===================================================== */
.branch-card {
  max-width: 420px;
  min-width: 420px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  text-align: center;
  scroll-snap-align: center;

  display: flex;
  flex-direction: column;
}

/* =====================================================
   IMAGE 
   ===================================================== */
.branch-image {
  padding: 14px;
  width: 100%;
}

.branch-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* =====================================================
   CONTENT 
   ===================================================== */
.branch-content {
  padding: 8px 20px 26px;
}

.branch-title {
  font-size: 22px;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 2px;
}

.branch-address {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 12px;
}

.branch-note {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* =====================================================
   BUTTON 
   ===================================================== */
.branch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e32726;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.12s ease;
}

.branch-btn:hover {
  background: #c91919;
  transform: translateY(-1px);
}

/* =====================================================
   MOBILE 
   ===================================================== */
@media (max-width: 480px) {
  .branches-header {
    text-align: center;
  }

  .branches-header .title {
    font-size: 26px;
  }

  .branch-card {
    max-width: 92%;
    min-width: 92%;
  }

  .branch-image img {
    height: 220px;
  }
}
