/* ═══════════════════════════════════════════════
   BEETSL — Fully Responsive CSS
   Breakpoints: 480px | 576px | 768px | 992px | 1200px
═══════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  width: 100%;
  font-weight: 400;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }

/* ── CSS VARIABLES ── */
:root {
  --purple: #b51733;
  --purple-dark: #7c3aed;
  --purple-deep: #9333ea;
  --dark: #1a1a2e;
  --orange: #f97316;
  --bg-light: #f9f6ff;
  --bg-lavender: #f0eaff;
}

/* ══════════════════════════════════
   TOP BAR
══════════════════════════════════ */
.top-bar {
  background: oklch(0.95 0.01 0);
  color: black;
  font-size: 13px;
  padding: 10px 0;
}
.top-bar i { color: #b51733; margin-right: 5px; }
.top-bar a { color: #050000; text-decoration: none; }
.top-bar .addr { font-size: 12px; }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */

  /* background: transparent;
  box-shadow: none;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s; */
  .navbar {
  background: transparent;
  box-shadow: none;

  height: 72px; /*  exact clean height */
  padding: 0;   /*  remove extra padding */

  display: flex;
  align-items: center;

  position: sticky;
  top: 0;
  z-index: 1000;

  transition: background .3s, box-shadow .3s;
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.brand-logo img {
  height: 36px;
  width: auto;
}
.nav-link {
  font-weight: 500;
  font-size: 14px;
  padding: 0 12px !important; /* 👈 tighter spacing */
  line-height: 72px; /* vertical alignment */
}
.nav-link:hover, .nav-link.active { color: #b51733 !important; }
.nav-link.active { position: relative; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: #b51733;
  border-radius: 2px;
}
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 10px;
  min-width: 210px;
}
.dropdown-item {
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  padding: 9px 16px;
  color: #333;
}
.dropdown-item:hover { background: #f5f0ff; color: #b51733; }

/* .btn-nav-login {
  border: 1.5px solid var(--dark);
  color: var(--dark);
  border-radius: 8px;
  padding: 8px 26px;
  font-weight: 600;
  background: transparent;
  font-size: 14px;
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}
.btn-nav-login:hover { background: var(--dark); color: #fff; } */

.btn-nav-reg {
  background: black;
  color: #fff;
  border: none;
  border-radius: 8px;

  font-weight: 600;
 padding: 6px 18px;
  font-size: 13px;
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}
.btn-nav-reg:hover { background: #b51834; }
/* ── Mobile nav: float OVER content instead of pushing it down ── */
@media (max-width: 991px) {

  /* Make navbar a positioning anchor */
  .navbar {
    position: sticky;   /* already set — just keep it */
    overflow: visible;  /* allow the dropdown to escape */
  }

  /* Float the open menu over the page */
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    position: absolute;
    top: 60px;          /* match your navbar height */
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1001;
    padding: 0.75rem 1.25rem 1.25rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-top: 1px solid #f0f0f0;
    border-radius: 0 0 12px 12px;
  }

  /* Give navbar a containing block so absolute child is positioned inside it */
  .navbar .container {
    position: relative;
  }
}
/* ══════════════════════════════════
   HERO SECTION
══════════════════════════════════ */
.hero-section {
  background: linear-gradient(135deg, #f9f0ff 0%, #f0e6ff 20%, #ede0ff 40%, #f5ecff 70%, #fff0f9 100%);
  position: relative;
  overflow: hidden;

  /* Responsive UiPath-style height */
  height: clamp(520px, 80vh, 620px);

  display: flex;
  align-items: center;
  padding: 0;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(168,85,247,.18) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(168,85,247,.22) 0%, rgba(220,120,255,.1) 50%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
}
.deco-lines {
  position: absolute;
  right: 28%;
  top: 6%;
  pointer-events: none;
  opacity: .55;
}
.spin-ring {
  position: absolute;
  right: 32%; top: 12%;
  width: 110px; height: 110px;
  border: 2px dashed rgba(168,85,247,.4);
  border-radius: 50%;
  animation: spin 22s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.inner-ring {
  position: absolute;
  right: 34%; top: 18%;
  width: 50px; height: 50px;
  border: 2px solid rgba(168,85,247,.18);
  border-radius: 50%;
  pointer-events: none;
}
.hero-star {
  position: absolute;
  right: 35%; top: 18%;
  font-size: 28px;
  color: #6d28d9;
  animation: pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.3); opacity: 1; }
}
.star-bl {
  position: absolute;
  right: 16%; bottom: 26%;
  font-size: 22px;
  color: #f97316;
  opacity: .7;
  animation: pulse 3s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}
.person-wrap img {
  height: 100%;
  max-height: 540px;
  width: auto;
  object-fit: contain;
}
.hero-left h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.13;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.h1-enhance { font-weight: 700; }
.h1-your { color: #b51733; font-weight: 700; }
.h1-creativity {
  color: #b51733;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.h1-creativity::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 3.5px;
  background: linear-gradient(90deg, var(--dark) 10%, #b51733);
  border-radius: 3px;
}
.hero-para {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  max-width: 490px;
  margin: 24px 0 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.btn-enroll {
  background: linear-gradient(135deg, #ff6b35, var(--orange));
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 22px rgba(249,115,22,.4);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: all .25s;
  cursor: pointer;
}
.btn-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(249,115,22,.5);
  color: #fff;
}
.btn-pill-outline {
  background: #fff;
  color: #333;
  border: 1.5px solid #ddd;
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: all .25s;
  cursor: pointer;
}
.btn-pill-outline:hover {
  border-color: #b51733;
  color: #b51733;
  transform: translateY(-2px);
}

/* Hero Right */
.hero-right { position: relative; z-index: 2; }
.person-wrap { position: relative; display: flex; justify-content: center; align-items: flex-end; }

/* Floating badges */
.badge-1000 {
  position: absolute;
  right: -10px; top: 22%;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px 16px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  animation: floatY 3s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.av-wrap { display: flex; }
.av-item {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  background: #eee;
}
.av-item:first-child { margin-left: 0; }
.av-item img, .bs-av img { width: 100%; height: 100%; object-fit: cover; }
.badge-count {
  font-size: 22px;
  font-weight: 700;
  color: #b51733;
  display: block;
  line-height: 1.1;
}
.badge-label { font-size: 12px; color: #777; font-weight: 500; }

.badge-student {
  position: absolute;
  left: -10px; bottom: 30%;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  z-index: 10;
  animation: floatY 3.5s ease-in-out infinite reverse;
}
.bs-inner { display: flex; align-items: center; gap: 12px; }
.bs-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2.5px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.bs-label { font-size: 11px; color: #999; font-weight: 500; }
.bs-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.bs-stars { color: #f59e0b; font-size: 13px; }

/* ══════════════════════════════════
   SEARCH SECTION
══════════════════════════════════ */
.search-section {
  background: linear-gradient(135deg, #f0eaff, #ede9fe 40%, #f8f5ff 100%);
  padding: 32px 0 48px;
  position: relative;
}
.search-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(168,85,247,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.search-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.09);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.s-select {
  border: none;
  outline: none;
  padding: 0 38px 0 18px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  font-family: 'Poppins', sans-serif;
  min-width: 185px;
  border-right: 1.5px solid #f0f0f0;
  -webkit-appearance: none;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat calc(100% - 12px) center;
  cursor: pointer;
}
.s-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}
.s-input::placeholder { color: #bbb; }
.s-btn {
  background: #b51733;
  color: #fff;
  border: none;
  padding: 0 42px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: background .2s;
  white-space: nowrap;
  cursor: pointer;
}
.s-btn:hover { background: var(--purple-deep); }

.cat-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.c-tag {
  background: transparent;
  border: 1.5px solid #ddd;
  color: #555;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
}
.c-tag:hover, .c-tag.on {
  border-color: #b51733;
  color: #b51733;
  background: #f5f0ff;
}

/* ══════════════════════════════════
   TICKER
══════════════════════════════════ */
.ticker {
  background: linear-gradient(90deg, var(--dark), #3b1f6b 50%, var(--dark));
  padding: 18px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 26s linear infinite;
}
@keyframes tick { to { transform: translateX(-50%); } }
.t-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 30px;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.t-x {
  width: 26px; height: 26px;
  background: rgba(168,85,247,.28);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8b4fe;
  font-size: 12px;
  font-weight: 900;
}
.t-star { color: #b51733; font-size: 18px; }

/* ══════════════════════════════════
   GLOBAL IMPACT (COMPANIES)
══════════════════════════════════ */
.gi-section {
  background: #0d0d0d;
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}
.gi-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.gi-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 20px;
}
.gi-title {
  font-size: 56px;
  font-weight: 625px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.gi-title .hi { color: #b51733 }
.gi-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,.42);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Marquee rows */
.gi-marquee-wrap { margin-top: 52px; position: relative; }
.gi-fade-l, .gi-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 4;
}
.gi-fade-l { left: 0; background: linear-gradient(90deg, #0d0d0d 30%, transparent); }
.gi-fade-r { right: 0; background: linear-gradient(-90deg, #0d0d0d 30%, transparent); }

.gi-lane {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
}
.gi-lane:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
.gi-track { display: flex; width: max-content; will-change: transform; }
.gi-track.fwd  { animation: giScroll 30s linear infinite; }
.gi-track.rev  { animation: giScroll 36s linear infinite reverse; }
.gi-track.fwd2 { animation: giScroll 26s linear infinite; }
.gi-track.rev2 { animation: giScroll 32s linear infinite reverse; }
@keyframes giScroll { to { transform: translateX(-50%); } }

.gi-lane:hover .gi-track { animation-play-state: paused; }

.gi-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 100px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
  position: relative;
  transition: background .3s;
  cursor: default;
}
.gi-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s;
}
.gi-logo:hover::after { background: rgba(255,255,255,.04); }
.gi-logo:hover .ln { color: rgba(255,255,255,.95) !important; }

.ln {
  font-size: clamp(12px,1.3vw,15px);
  font-weight: 700;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  transition: color .3s;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.ls {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}
.ln.c { color: #b51733 } .ln.o { color: #f97316; } .ln.b { color: #60a5fa; }
.ln.p { color: #c084fc; } .ln.r { color: #f87171; } .ln.g { color: #4ade80; }
.ln.y { color: #facc15; } .ln.w { color: rgba(255,255,255,.75); }

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */
.cta-section {
  /* background: linear-gradient(135deg, var(--dark), #4c1d95 50%, var(--purple-dark)); */
    background: #b51733;

  padding: 90px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  /* background: rgba(168,85,247,.12); */
  border-radius: 50%;
  top: -180px; right: -80px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  /* background: rgba(168,85,247,.08); */
  border-radius: 50%;
  bottom: -110px; left: -50px;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  max-width: 480px;
  margin: 14px auto 34px;
  position: relative;
  z-index: 1;
}
.btn-cta {
  background: #000000;
  color: #fff;
  border: none;
  padding: 16px 46px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 24px rgba(249,115,22,.4);
  transition: all .25s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249,115,22,.5);
}

/* ══════════════════════════════════
   TESTIMONIALS — Fixed
   Fonts: Poppins (headings) · Inter (body)
══════════════════════════════════ */

:root {
  --bg:     #0d0d0d;
  --card:   #141414;
  --accent: #e87c3e;
  --accent2:#4f9cf9;
  --text:   #e8e8e8;
  --muted:  #666;
  --star:   #f5a623;
  --border: rgba(255,255,255,0.07);
}

/* ── Section wrapper ── */
.gi-section {
  background: var(--bg);
  width: 100%;
  overflow: hidden;
}

/* ── Section header ── */
.sec-head {
  padding: 72px 24px 48px;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow span {
  font-family: 'Poppins', sans-serif;   /* Poppins for label */
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b51733;
}

.sec-head h2 {
  font-family: 'Poppins', sans-serif;   /* Poppins Bold heading */
  font-size: 56px;
  font-weight: 625;
  background:white ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  line-height: 1.15;
}

.sub {
  font-family: 'Inter', sans-serif;     /* Inter for body */
  font-weight: 400;
  color: var(--muted);
  font-size: 15px;
  max-width: 570;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
}

/* ── Columns outer ── */
.cols-outer {
  position: relative;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Fade top & bottom */
.cols-outer::before,
.cols-outer::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  z-index: 2;
  pointer-events: none;
}
.cols-outer::before {
  top: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--bg), transparent);
}
.cols-outer::after {
  bottom: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* ── Scrolling columns ── */
.cols-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 0 72px;
  height: 620px;
  overflow: hidden;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
}

/* ── Testimonial Card ── */
.tcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b51733, black);
  opacity: 0;
  transition: opacity 0.3s;
}
.tcard:hover {
  border-color:#b51733;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.tcard:hover::before { opacity: 1; }

/* Big quote mark */
.big-q {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 44px;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  user-select: none;
}

/* Card header: avatar + name */
.ch { display: flex; align-items: center; gap: 11px; }

.av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;   /* Poppins for initial */
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.mt { flex: 1; min-width: 0; }

.nm {
  font-family: 'Poppins', sans-serif;   /* Poppins SemiBold for name */
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.co {
  font-family: 'Inter', sans-serif;     /* Inter for course label */
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b51733;
  margin-top: 2px;
}

.stars { display: flex; gap: 2px; margin-top: 4px; }
.star   { color: var(--star); font-size: 11px; }
.star.e { opacity: 0.25; }

/* Review body text — Inter */
.bt {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.78;
  color: #aaa;
  font-style: italic;
}

/* Card footer */
.cf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.vf {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: #4caf50;
}

.sp { font-size: 12px; color: var(--muted); }


/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* Large tablet */
@media (max-width: 1024px) {
  .cols-wrap {
    height: 560px;
    gap: 16px;
  }
  .cols-outer { padding: 0 20px; }
}

/* Tablet — hide 3rd column */
@media (max-width: 768px) {
  .cols-wrap {
    grid-template-columns: repeat(2, 1fr);
    height: 520px;
    gap: 14px;
  }

  /* Hide 3rd column on tablet */
  .col:nth-child(3) { display: none; }

  .sec-head { padding: 48px 20px 32px; }
  .sec-head h2 { font-size: clamp(22px, 6vw, 34px); }
  .sub { font-size: 14px; }
}

/* Mobile — single column, static (no scroll animation) */
@media (max-width: 500px) {
  .cols-wrap {
    grid-template-columns: 1fr;
    height: auto;              /* let content breathe */
    overflow: visible;         /* show all cards */
    padding-bottom: 40px;
  }

  /* Show only first column on mobile, static */
  .col:nth-child(2),
  .col:nth-child(3) { display: none; }

  /* Stop animation on mobile */
  .col { transform: none !important; }

  /* Show only first set (not duplicates) */
  .col > .tcard:nth-child(n+6) { display: none; }

  .cols-outer::before,
  .cols-outer::after { display: none; }  /* no fade needed */

  .sec-head { padding: 40px 16px 24px; }
  .cols-outer { padding: 0 16px; }

  .tcard { padding: 18px 16px 14px; }
  .bt { font-size: 13px; }
  .nm { font-size: 13px; }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #0d0d0d;
  color: #aaa; /* better visibility */
}
footer h5 {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
footer ul li a:hover { color: #b51733; }
.f-brand { font-size: 22px; font-weight: 700; color: #fff; }
.f-brand span { color: #b51733; }
.f-desc {
  font-size: 12px;
  line-height: 1.8;
  margin: 12px 0 22px;
  max-width: 270px;
  color: #777;
}
.soc a {
  display: inline-flex;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #b51733;
  font-size: 15px;
  margin-right: 8px;
  transition: all .2s;
  text-decoration: none;
}
.soc a:hover { background: #b51733; color: #fff; transform: translateY(-2px); }
.f-hr { border-color: rgba(255,255,255,.07); margin: 36px 0 18px; }
.f-copy { font-size: 13px; color: #444; text-align: center; }

/* ══════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.rv.show { opacity: 1; transform: none; }


/* ══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════ */

/* ── ≤ 1199px (Large tablets / small desktops) ── */
@media (max-width: 1199px) {
  .hero-section { min-height: auto; }
  .hero-blob { width: 400px; height: 400px; }
  .badge-1000 { right: 0; }
  .badge-student { left: 0; }
  .gi-logo { min-width: 170px; padding: 0 24px; }
}

/* ── ≤ 991px (Tablets) ── */
@media (max-width: 991px) {

  .hero-section {
    height: auto;
    padding: 60px 0;
  }

  .hero-left {
    padding-bottom: 30px;
    text-align: center;
  }

  .hero-para {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-left .d-flex {
    justify-content: center;
  }

  .hero-right {
    margin-top: 30px;
  }

  .person-wrap {
    margin-bottom: 40px;
  }
}
/* ── ≤ 767px (Mobile landscape / large phones) ── */
@media (max-width: 767px) {

  .hero-section {
    height: auto;
    padding: 50px 0 20px;
  }

  .hero-left h1 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    text-align: center;
  }

  .hero-para {
    font-size: 14px;
    text-align: center;
  }

  .hero-left .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 12px !important;
  }

  .person-wrap img {
    height: 300px;
  }
}

/* ── ≤ 480px (Small phones) ── */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 1.55rem;
  }

  .hero-para {
    font-size: 13px;
  }

  .person-wrap img {
    height: 260px;
  }
}
/* ── ≤ 360px (Very small phones) ── */
@media (max-width: 360px) {
  .hero-left h1 { font-size: 1.35rem; }
  .btn-enroll, .btn-pill-outline { font-size: 12px; }
  .gi-logo { min-width: 100px; padding: 0 10px; }
  .ln { font-size: 11px; }
  .tcard { padding: 16px 14px 12px; }
}

/* ══════════════════════════════════
   UTILITY — touch devices
══════════════════════════════════ */
@media (hover: none) {
  .gi-lane:hover .gi-track { animation-play-state: running; }
  .col:hover { /* don't pause on touch */ }
  .f-card:hover { transform: none; }
  .c-card:hover { transform: none; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
}

/* ══════════════════════════════════
   PRINT
══════════════════════════════════ */
@media print {
  .ticker, .gi-marquee-wrap, .badge-1000, .badge-student,
  .spin-ring, .inner-ring, .hero-star, .star-bl { display: none; }
  .hero-section { min-height: auto; }
  .rv { opacity: 1; transform: none; }
}


/* ── FABs ── */
.fab{
  position:fixed;right:20px;width:52px;height:52px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:26px;cursor:pointer;z-index:200;transition:transform .2s;
}
.fab:hover{transform:scale(1.1);}
.fab-wa{bottom:80px;background:#25d366;box-shadow:0 4px 16px rgba(37,211,102,.5);}
.fab-up{bottom:20px;background:#b51733;font-size:18px;box-shadow:0 4px 14px rgba(139,0,0,.5);}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .cards-grid{grid-template-columns:repeat(2,1fr);gap:18px;}
  .nav-links li:nth-child(n+5){display:none;}
}
@media(max-width:768px){
  nav{padding:0 18px;}
  .nav-links{display:none;}
  .cards-grid{grid-template-columns:repeat(2,1fr);gap:14px;}
}
@media(max-width:460px){
  .cards-grid{grid-template-columns:1fr;gap:14px;}
  .section{padding:36px 12px 56px;}
}

.hero-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  /* background: #ff6b5c; */
  color: #0e0202;

  padding: 6px 12px;
  border-radius: 2px;

  margin-bottom: 18px;
}

.hero-circle {
  position: absolute;
  bottom: 40px;
  right: 120px;

  width: 110px;
  height: 110px;
  border-radius: 50%;

  background: #111;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 10px;
  letter-spacing: 2px;
  text-align: center;

  z-index: 3;
}

/* rotating text */
.hero-circle span {
  position: absolute;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* center dot */
.hero-circle::after {
  content: '';
  width: 6px;
  height: 6px;
  /* background: #ff6b5c; */
  border-radius: 50%;
  position: absolute;
}

@media (max-width: 991px) {
  .hero-circle {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar {
    height: 60px;
  }

  .brand-logo img {
    height: 32px;
  }

  .nav-link {
    line-height: normal;
    padding: 10px 16px !important;
  }
}

.top-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* enroll button */



/* Enroll button */
.btn-nav-reg {
  background: var(--text);
  color: black;
  border: none;
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
  border-radius: 0;
}

.btn-nav-reg:hover { background:#A6192E ;  color: white;}

@media (max-width: 991px) {
  .navbar .container { height: auto; padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .navbar-collapse { padding: 1rem 0 0.5rem; border-top: 1px solid var(--border); margin-top: 0.75rem; }
  .navbar-nav .nav-link { padding: 0.55rem 0 !important; border-bottom: 1px solid var(--border); }
  .btn-nav-reg { width: 100%; margin-top: 0.5rem; }
  .dropdown-menu { border: none; padding-left: 1rem; box-shadow: none; background: transparent; }
}

/* ══════════════════════════
   ENROLL OVERLAY
══════════════════════════ */
.enroll-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.enroll-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* left dim */
.overlay-dim {
  flex: 1;
  background: rgba(26,26,26,0.55);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

/* right panel slides in */
.overlay-panel {
  width: min(680px, 100vw);
  background: var(--bg);
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.enroll-overlay.active .overlay-panel {
  transform: translateX(0);
}

/* close button */
.overlay-close {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s;
  z-index: 2;
}

.overlay-close:hover { color: var(--text); }

/* panel header */
.panel-head {
  padding: 3.5rem 3rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.panel-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #b51733;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.panel-tag::before { content: '✦'; }

.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.panel-title em { font-style: italic; }

.panel-desc {
  font-size: 12.5px;
  color: #777;
  line-height: 1.8;
  max-width: 420px;
}

/* form */
.panel-form {
  padding: 0 3rem 3rem;
  flex: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.form-field {
  padding: 2.2rem 2rem 2.2rem 0;
  border-bottom: 1px solid var(--border);
}

.form-field:nth-child(even) {
  padding-left: 2rem;
  padding-right: 0;
  border-left: 1px solid var(--border);
}

.form-field.full-width {
  grid-column: 1 / -1;
  padding-right: 0;
  border-left: none !important;
}

.field-label {
  display: block;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: #b51733;
  margin-bottom: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.field-input,
.field-select,
.field-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  width: 100%;
  padding: 5px 0 9px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  border-radius: 0;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: #c0b8ae;
  font-style: italic;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-bottom-color: var(--text);
}

.field-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23999' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}

.field-textarea {
  resize: none;
  min-height: 80px;
  line-height: 1.75;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  margin-top: 0;
}

.form-disclaimer {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  text-transform: uppercase;
}

.form-disclaimer::before {
  content: '✦';
  font-size: 7px;
  color: #b51733;
  margin-top: 3px;
  flex-shrink: 0;
}

.btn-send {
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-send:hover { background: #2e2e2e; }

@media (max-width: 600px) {
  .overlay-dim { display: none; }
  .overlay-panel { width: 100vw; }
  .panel-head { padding: 3rem 1.5rem 2rem; }
  .panel-form { padding: 0 1.5rem 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field:nth-child(even) { padding-left: 0; border-left: none; }
  .form-footer { flex-direction: column; }
  .btn-send { width: 100%; justify-content: center; }
}

/* toast */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text);
  color: var(--bg);
  padding: 13px 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s;
  pointer-events: none;
  z-index: 2000;
}

.toast-msg.show { opacity: 1; transform: translateY(0); }

 
  /* ── Base ── */
  footer {
    background: #111;
    color: #fff;
    padding: 60px 0 0;
  }
 
  /* ── Brand ── */
  .f-brand { margin-bottom: 16px; }
  .f-brand img { max-height: 48px; width: auto; }
  .f-desc {
    font-size: 13.5px;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 22px;
  }
 
  /* ── Social icons — FIX: Font Awesome needs <i> tags + fa lib loaded ── */
  .soc { display: flex; gap: 10px; flex-wrap: wrap; }
  .soc a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s;
  }
  .soc a:hover { border-color: #b51733; color: #b51733; }
 
  /* ── Column headings ── */
  footer h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }
 
  /* ── Nav lists ── */
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer ul li { margin-bottom: 10px; }
  footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }
  footer ul li a:hover { color: #b51733; }
  footer ul li a i,
  footer ul li span i { color: #b51733; font-size: 13px; }
  footer ul li span {
    font-size: 12px;
    color: #fff;
    display: flex; align-items: flex-start; gap: 8px;
    line-height: 1.6;
  }
 
  /* ── Divider ── */
  .f-hr { border: none; border-top: 1px solid #1e1e1e; margin: 44px 0 0; }
 
  /* ── Trending section ── */
  .trending-links-section { padding: 36px 0 8px; }
  .trending-links-block { margin-bottom: 24px; }
  .trending-links-block h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .trending-links-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 2.2;
  }
  .trending-links-list a {
    color: #fff;
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .trending-links-list a:hover { color: #fff; }
  .trending-links-list .sep {
    color: #fff;
    margin: 0 8px;
    font-size: 13px;
    user-select: none;
  }
 
  /* ── Disclaimer ── */
  .disclaimer-block {
    border-top: 1px solid #fff;
    padding: 24px 0 0;
    margin-top: 8px;
  }
  .disclaimer-block p {
    color: #fff;
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 8px;
  }
  .disclaimer-block strong { color: #fff; }
 
  /* ── Copyright bar ── */
  .f-copy {
    text-align: center;
    color: #fff;
    font-size: 12px;
    padding: 18px 0 28px;
    border-top: 1px solid #fff;
    margin-top: 16px;
  }
 
  /* ── Responsive — DO NOT override Bootstrap col-6 ── */
  @media (max-width: 576px) {
    .trending-links-list a { white-space: normal; }
  }
 


/* enroll css */

/* ════════════════════════════
   CONTACT DETAILS
════════════════════════════ */
.hero-right {
  padding: 4rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child {
  padding-top: 0;
  border-top: none;
}

.contact-cat {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-val {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 600;
}

/* ════════════════════════════
   FORM
════════════════════════════ */
.form-section {
  padding: 0 3rem 5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.form-field {
  padding: 2.8rem 3rem 2.8rem 0;
  border-bottom: 1px solid var(--border);
}

.form-field:nth-child(even) {
  padding-left: 3rem;
  padding-right: 0;
  border-left: 1px solid var(--border);
}

.form-field.full-width {
  grid-column: 1 / -1;
  padding-right: 0;
  border-left: none !important;
}

.field-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #b51733;
  margin-bottom: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}

.field-input,
.field-select,
.field-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  width: 100%;
  padding: 6px 0 10px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  border-radius: 0;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: #c0b8ae;
  font-style: italic;
  font-size: 15px;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-bottom-color: var(--text);
}

.field-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23999' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}

.field-textarea {
  resize: none;
  min-height: 90px;
  line-height: 1.75;
}

.form-divider {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--border);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.8rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.form-disclaimer {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  text-transform: uppercase;
}

.form-disclaimer::before {
  content: '✦';
  font-size: 8px;
  color: #b51733;
  margin-top: 3px;
  flex-shrink: 0;
}

.btn-send {
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 16px 32px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.btn-send:hover { background: #2e2e2e; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 960px) {
  .hero-right { padding: 2.5rem 2rem; }
  .form-section { padding: 0 2rem 4rem; }
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field:nth-child(even) { padding-left: 0; border-left: none; }
  .form-field { padding: 2rem 0; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .btn-send { width: 100%; justify-content: center; }
}


/* top course */

/* ── Top Courses fonts only ── */
 .section {
      background: #111;
      padding: 60px 20px 80px;
    }

    .section-title {
      text-align: center;
      font-size: 56px;
      font-weight: 650;
      color: #fff;
      margin-bottom: 48px;
      margin-top: -30px;
      font-family: 'Poppins', sans-serif;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1300px;
      margin: 0 auto;
    }

    /* card itself is transparent — only body is white */
    .card {
      background: transparent;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      position: relative;
    }

    .card-img-wrap {
      overflow: hidden;
      width: 100%;
      aspect-ratio: 4/3;
      flex-shrink: 0;
    }

    .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }

    .card:hover .card-img {
      transform: scale(1.08);
    }

    /* white body below the image */
    .card-body {
      padding: 28px 22px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
      background: #fff;
    }

    .card-title {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 14px;
      text-align: center;
      line-height: 1.25;
      color: #111;
    }

    .card-desc {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 1.7;
      text-align: center;
      color: #444;
      flex: 1;
      margin-bottom: 24px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 18px;
      font-family: 'Barlow', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 0;
      transition: background .25s, border-color .25s, color .25s;
      text-decoration: none;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid #111;
      color: #111;
    }

    .card:hover .btn-outline {
      background: #b51733;
      border-color: #b51733;
      color: #fff;
    }

    /* active card — red body */
    .card.active-card .card-body {
      background: #b51733;
    }
    .card.active-card .card-title { color: #fff; }
    .card.active-card .card-desc  { color: rgba(255,255,255,.85); }
    .card.active-card .btn-outline { border-color: #fff; color: #fff; }
    .card.active-card:hover .btn-outline { background: #fff; border-color: #fff; color: #b51733; }

    @media (max-width: 1024px) {
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
      .section-title { font-size: 40px; }
    }
    @media (max-width: 600px) {
      .cards-grid { grid-template-columns: 1fr; }
      .section-title { font-size: 30px; }
    }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 625;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.card-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.card-body .btn-outline {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* enquiry */

/* ── CTA Section fonts only ── */

.cta-section h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 56px;
}

.cta-section p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.btn-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}