@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #ce2945;
  --secondary: #4a95c7;
  --thirdary: #37748c;
  --dark: #0d0d0d;
  --light: #f0f0f0;
  --white: #ffffff;
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Inter", sans-serif;
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body-font);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ============================
   NAVBAR
============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 18px;
  background: transparent;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--body-font);
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 16px;
  transition: color 0.25s ease;
}
.nav-link:hover {
  color: var(--secondary);
}
/* active = primary (red/pink) */
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-contact {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  padding: 10px 26px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  white-space: nowrap;
  display: inline-block;
  line-height: 1.2;
}
.btn-contact:hover {
  background: transparent;
  color: var(--secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
}
.hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}
.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.mobile-menu.open {
  max-height: 400px;
  padding: 12px 0 20px;
}
.mobile-link {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 32px;
  transition:
    color 0.2s,
    background 0.2s;
}
.mobile-link:hover {
  color: var(--secondary);
  background: rgba(74, 149, 199, 0.05);
}
.mobile-link.active {
  color: var(--primary);
  font-weight: 600;
}
.mobile-cta {
  margin: 12px 32px 0;
  text-align: center;
  padding: 12px 24px;
}

/* ============================
   HERO — full-bleed bg image
   Navbar transparent on top
============================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero {
  padding-top: 20px;
}

/* Full-bleed background image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}
.hero {
  padding-top: 20px;
}
/* Left gradient overlay — makes text readable */
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, var(--light) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Text content — above the bg */
.hero-content {
  position: relative;
  z-index: 2;

  padding: 120px 0 60px 80px;

  width: 48%;
  max-width: 680px;
}

.hero-title span {
  white-space: nowrap;
}
/* ---- TITLE: exactly 3 lines, big font ---- */
.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}
.title-red {
  color: var(--primary);
  display: block;
}
.title-blue {
  color: var(--secondary);
  display: block;
}

.hero-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  background: transparent;
  color: var(--secondary);
}

/* Hero dropdown styles */
.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  outline: none;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown-wrapper.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  overflow: hidden;
}

.dropdown-wrapper.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  text-decoration: none;
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
}

.dropdown-item:hover {
  background: rgba(74, 149, 199, 0.1);
  color: var(--secondary);
}

.btn-outline {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  background: transparent;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #bbb;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.title-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.inline-blue {
  white-space: nowrap;
}

.title-blue-block {
  display: block;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1280px) {
  .hero-content {
    padding: 100px 0 50px 60px;
  }
  .hero-bg::after {
    width: 65%;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 0;
  }
  .nav-link {
    padding: 7px 10px;
    font-size: 0.84rem;
  }
  .hero-content {
    padding: 100px 0 44px 48px;
  }
  .hero-bg::after {
    width: 70%;
  }
}

/* ---- TABLET ---- */
@media (max-width: 768px) {
  .hero-bg {
    padding-top: 72px;
  }
  /* Navbar: solid white on mobile always */
  .navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .nav-links {
    display: none;
  }
  .nav-right .btn-contact {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .nav-container {
    padding: 0 24px;
  }

  /* Hero: image is full background, content overlays */
  .hero {
    min-height: 100svh;
    align-items: center;
  }

  /* On mobile the gradient covers more of the image */
  .hero-bg::after {
    width: 100%;

    background: linear-gradient(
      to bottom,
      rgba(240, 240, 240, 0.92) 0%,
      rgba(240, 240, 240, 0.82) 35%,
      rgba(240, 240, 240, 0.3) 70%,
      rgba(240, 240, 240, 0.08) 100%
    );
  }

  .hero-bg img {
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.15);
  }

  .hero-content {
    padding: 120px 24px 60px;
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
  .hero-desc {
    max-width: 100%;
    font-size: 0.875rem;
  }
}

/* ---- MOBILE ---- */
@media (max-width: 480px) {
  .nav-logo img {
    height: 42px;
  }
  .nav-container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 80px 20px 36px;
  }
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 1.85rem);
  }
  .hero-desc {
    font-size: 0.83rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 11px 22px;
    font-size: 0.85rem;
  }
  .hero-actions {
    gap: 10px;
  }

  .hero-bg img {
    object-position: 80% bottom;
  }
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(240, 240, 240, 0.9) 0%,
      rgba(240, 240, 240, 0.75) 50%,
      rgba(240, 240, 240, 0.1) 100%
    );
  }
}

/* ============================
   FOOTER
============================ */
.footer {
  background: #fdf0f2;
  padding: 60px 0 0;
  font-family: var(--body-font);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

/* --- Brand Column --- */
.footer-brand {
}

.footer-logo-wrap {
  margin-bottom: 4px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(206, 41, 69, 0.2);
  margin-bottom: 22px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}

.footer-contact-val {
  display: block;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.65;
}

/* --- Link Columns --- */
.footer-col {
}

.footer-col-title {
  font-family: var(--heading-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link {
  font-size: 0.82rem;
  color: #555;
  text-decoration: none;
  transition: color 0.22s ease;
}
.footer-link:hover {
  color: var(--primary);
}

/* --- Right Column (Social + Salesforce) --- */
.footer-col-right {
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-partner {
}

.footer-partner-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.footer-salesforce-logo {
  height: 72px;
  width: auto;
  display: block;
}

/* --- Bottom Bar --- */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 16px 40px;
  text-align: center;
  max-width: 100%;
}

.footer-copy {
  font-size: 0.78rem;
  color: #777;
}

/* ============================
   FOOTER RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 32px;
  }
  /* Move right col (social+salesforce) to a new row spanning full width */
  .footer-col-right {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .footer-social {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 24px 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col-right {
    grid-column: 1 / -1;
    gap: 32px;
  }
  .footer-bottom {
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 44px 0 0;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 36px;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-col-right {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-bottom {
    padding: 14px 20px;
  }
}

/* 2 */
/* ============================
   OPPORTUNITY SECTION
============================ */
.opportunity {
  padding: 80px 0;
  background: var(--white);
}

.opportunity-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.opportunity-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}

.opportunity-label {
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.opportunity-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--primary);
}

.opp-line1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--primary);
  display: block;
}

.opp-line2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 14px;
}

.opportunity-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    transform 0.35s ease,
    box-shadow 0.3s ease;
}

.opportunity-arrow-btn:hover {
  background: var(--secondary);
  transform: scale(1.14) rotate(-45deg);
  box-shadow: 0 6px 20px rgba(74, 149, 199, 0.38);
}

.opportunity-desc {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.85;
  padding-top: 48px;
}

/* ============================
   STATS GRID
============================ */
.opportunity-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Base blue card */
.stat-card {
  background: #dceef8;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  cursor: default;
}

/* Blue card hover — lift only, no color */
.stat-card:not(.stat-red):hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 36px rgba(74, 149, 199, 0.22);
}

/* Red card */
.stat-card.stat-red {
  background: var(--primary);
}

/* Red card hover → GREEN */
.stat-card.stat-red:hover {
  background: #37748c;
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 36px rgba(55, 116, 140, 0.35);
}

.stat-card.stat-red .stat-number,
.stat-card.stat-red .stat-label {
  color: var(--white);
}

/* Numbers */
.stat-number {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.07);
}

.stat-label {
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
  max-width: 140px;
}

/* Grid placement */
.stat-card-large {
  grid-column: 1 / 3;
  grid-row: 1;
}
.stat-card-red-tall-1 {
  grid-column: 3;
  grid-row: 1 / 3;
}
.stat-card-red-tall-2 {
  grid-column: 4;
  grid-row: 1 / 3;
}
.stat-card-sm-1 {
  grid-column: 1;
  grid-row: 2;
}
.stat-card-sm-2 {
  grid-column: 2;
  grid-row: 2;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .opportunity-top {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .opportunity {
    padding: 60px 0;
  }
  .opportunity-container {
    padding: 0 24px;
  }
  .opportunity-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .opportunity-desc {
    padding-top: 0;
  }
  .opp-line1,
  .opp-line2 {
    font-size: clamp(1.7rem, 5.5vw, 2.4rem);
  }
  .opportunity-stats {
    gap: 12px;
  }
  .stat-card {
    padding: 22px 16px;
  }
}

@media (max-width: 600px) {
  .opportunity {
    padding: 44px 0;
  }
  .opportunity-container {
    padding: 0 20px;
  }
  .opportunity-stats {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
    gap: 12px;
  }
  .stat-card-large {
    grid-column: 1 / 3;
    grid-row: unset;
  }
  .stat-card-red-tall-1 {
    grid-column: 1;
    grid-row: unset;
  }
  .stat-card-red-tall-2 {
    grid-column: 2;
    grid-row: unset;
  }
  .stat-card-sm-1 {
    grid-column: 1;
    grid-row: unset;
  }
  .stat-card-sm-2 {
    grid-column: 2;
    grid-row: unset;
  }
  .opp-line1,
  .opp-line2 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }
  .opportunity-arrow-btn {
    width: 40px;
    height: 40px;
  }
  .stat-number {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }
  .stat-label {
    font-size: 0.76rem;
  }
}

/* 3 */
/* ============================
   FOUNDERS SECTION
============================ */
.founders {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.founders-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

/* ---- Left: Text ---- */
.founders-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  min-height: 280px;
}

.founders-label {
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.founders-heading {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.18;
  margin-bottom: 18px;
}

.founders-desc {
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.founders-divider {
  width: 44px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 16px;
  margin-top: 4px;
}

.founders-author {
  margin-bottom: 0;
}

.founders-author-name {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.founders-author-role {
  font-family: var(--body-font);
  font-size: 0.78rem;
  color: #555;
  line-height: 1.6;
}

/* ---- Slide transitions ---- */
.founder-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  pointer-events: none;
}

.founder-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---- Right column: image + dots stacked ---- */
.founders-right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ---- Image wrap ---- */
.founders-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  height: 320px;
  box-shadow:
    0 20px 60px rgba(206, 41, 69, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.founders-image-wrap:hover {
  box-shadow:
    0 28px 72px rgba(206, 41, 69, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* All images stacked */
.founder-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
  transform-origin: center center;
}

.founder-img.active {
  opacity: 1;
  position: relative;
}

/* ---- Dots — below image ---- */
.founders-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.founder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(206, 41, 69, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.3s ease,
    border-radius 0.3s ease;
  flex-shrink: 0;
}

.founder-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .founders-container {
    gap: 36px;
  }
  .founders-image-wrap {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .founders {
    padding: 40px 0;
  }
  .founders-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* On mobile: image+dots on top, content below */
  .founders-right-col {
    order: -1;
    width: 100%;
  }
  .founders-image-wrap {
    height: 260px;
  }
  .founders-content {
    min-height: unset;
  }
  .founders-heading {
    font-size: clamp(1.6rem, 5.5vw, 2rem);
  }
}

@media (max-width: 480px) {
  .founders {
    padding: 32px 0;
  }
  .founders-container {
    padding: 0 16px;
    gap: 22px;
  }
  .founders-image-wrap {
    height: 220px;
  }
  .founders-heading {
    font-size: clamp(1.5rem, 6.5vw, 1.8rem);
  }
  .founders-desc {
    font-size: 0.84rem;
  }
}

/* 4 */
/* ============================================================
   OUR PROGRAMMES SECTION
   Add this block to your style.css
============================================================ */

/* ---- Section wrapper ---- */
.programmes {
  position: relative;
  width: 100%;
  padding: 100px 80px 120px;
  background: #fff;
  overflow: hidden;
}

/* ---- Decorative dots & star ---- */
.prog-dot,
.prog-star {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Blue dot — top-left area */
.prog-dot--tl {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  top: 52px;
  left: 60px;
  opacity: 0.7;
}

/* Blue dot — bottom-left */
.prog-dot--bl {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  bottom: 130px;
  left: 80px;
  opacity: 0.5;
}

/* Star / asterisk — top-right */
.prog-star--tr {
  width: 28px;
  height: 28px;
  top: 44px;
  right: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234a95c7' d='M12 2l.9 8.1L21 12l-8.1.9L12 21l-.9-8.1L3 12l8.1-.9z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  opacity: 0.8;
}

/* Star — bottom-right */
.prog-star--br {
  width: 22px;
  height: 22px;
  bottom: 110px;
  right: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234a95c7' d='M12 2l.9 8.1L21 12l-8.1.9L12 21l-.9-8.1L3 12l8.1-.9z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  opacity: 0.5;
}

/* ---- Section Header ---- */
.prog-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.prog-label {
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.08em;
  text-transform: none;
  margin-bottom: 10px;
}

.prog-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.prog-desc {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

/* ---- Cards Grid ---- */
.prog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* ---- Base Card ---- */
.prog-card {
  position: relative;
  padding: 44px 42px 52px;
  overflow: hidden;
  transition:
    background 0.45s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}

/* ---- Card Light (card 1) ---- */
.prog-card--light {
  background: #f5f5f7;
  color: var(--dark);
}

.prog-card--light:hover {
  background: var(--thirdary);
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(55, 116, 140, 0.35);
}

/* ---- Card Dark (card 2) ---- */
.prog-card--dark {
  background: var(--primary);
  color: var(--white);
}

.prog-card--dark:hover {
  background: var(--thirdary);
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(55, 116, 140, 0.35);
}

/* ---- Card number ---- */
.card-number {
  display: block;
  font-family: var(--heading-font);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.prog-card--light .card-number {
  color: var(--primary);
}
.prog-card--light:hover .card-number {
  color: rgba(255, 255, 255, 0.6);
}

.prog-card--dark .card-number {
  color: rgba(255, 255, 255, 0.5);
}
.prog-card--dark:hover .card-number {
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Card title ---- */
.card-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.prog-card--light .card-title {
  color: var(--dark);
}
.prog-card--light:hover .card-title {
  color: #fff;
}

.prog-card--dark .card-title {
  color: var(--white);
}

/* ---- Card desc ---- */
.card-desc {
  font-family: var(--body-font);
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 380px;
  transition: color 0.3s ease;
  margin-bottom: 26px;
}

.prog-card--light .card-desc {
  color: #555;
}
.prog-card--light:hover .card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.prog-card--dark .card-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Arrow button ---- */
.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition:
    background 0.35s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.prog-card--light .card-btn {
  background: var(--dark);
  color: var(--white);
}
.prog-card--light:hover .card-btn {
  background: #fff;
  color: var(--thirdary);
  transform: scale(1.12) translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.prog-card--dark .card-btn {
  background: var(--dark);
  color: var(--white);
}
.prog-card--dark:hover .card-btn {
  background: #fff;
  color: var(--thirdary);
  transform: scale(1.12) translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.card-btn:hover .btn-arrow {
  transform: translateX(2px);
}

/* ---- Decorative design image (bottom-right of card) ---- */
.card-deco {
  position: absolute;

  bottom: 8px;
  right: 18px;

  width: 165px;
  height: 165px;

  pointer-events: none;
  z-index: 1;

  opacity: 0.92;

  transition:
    opacity 0.3s ease,
    transform 0.4s ease;
}

.card-deco img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transform: scale(1.08);
}

.prog-card:hover .card-deco {
  opacity: 1;
  transform: scale(1.06) rotate(-3deg);
}

/* ---- GSAP fade-in targets ---- */
.prog-header,
.prog-card {
  will-change: transform, opacity;
}

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

/* Large screens */
@media (max-width: 1280px) {
  .programmes {
    padding: 80px 60px 100px;
  }
  .prog-card {
    padding: 44px 40px 72px;
  }
}

/* Laptops */
@media (max-width: 1024px) {
  .programmes {
    padding: 72px 48px 90px;
  }
  .prog-card {
    padding: 40px 36px 68px;
  }
  .card-title {
    font-size: 1.25rem;
  }
  .card-deco {
    width: 130px;
    height: 150px;
  }
}

/* Tablets — stack cards */
@media (max-width: 768px) {
  .programmes {
    padding: 64px 32px 80px;
  }

  .prog-grid {
    grid-template-columns: 1fr;
    box-shadow: none;
    gap: 16px;
    border-radius: 0;
    overflow: visible;
  }

  .prog-card {
    border-radius: 16px;
    padding: 40px 32px 70px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .prog-dot--tl {
    top: 28px;
    left: 24px;
  }
  .prog-star--tr {
    top: 24px;
    right: 28px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .programmes {
    padding: 52px 20px 64px;
  }
  .prog-header {
    margin-bottom: 36px;
  }
  .prog-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .prog-desc {
    font-size: 0.85rem;
  }

  .prog-card {
    padding: 32px 24px 64px;
  }
  .card-number {
    font-size: 1.9rem;
  }
  .card-title {
    font-size: 1.15rem;
  }
  .card-desc {
    font-size: 0.84rem;
    margin-bottom: 28px;
  }
  .card-deco {
    width: 110px;
    height: 130px;
  }
}

/* Card 1 deco: default Vector1 visible, Vector2 hidden */
.card-deco--1 .deco-pink {
  opacity: 1;
  transition: opacity 0.35s ease;
}
.card-deco--1 .deco-white {
  opacity: 0;
  transition: opacity 0.35s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
}

/* On hover: swap */
.prog-card--light:hover .card-deco--1 .deco-pink {
  opacity: 0;
}
.prog-card--light:hover .card-deco--1 .deco-white {
  opacity: 1;
}

/* 5 */
/* ============================================================
   TRAINED BY MAGIC BILLION SECTION — add to style.css
============================================================ */

.trained {
  width: 100%;
  padding: 50px 0;
  background: #fff;
  overflow: hidden;
}

/* ---- Full width red card ---- */
.trained-inner {
  position: relative;

  width: 100%;
  min-height: 280px;

  background: var(--primary);

  display: grid;
  grid-template-columns: 52% 48%;

  align-items: center;

  overflow: visible;
}

/* ---- LEFT: Text content ---- */
.trained-content {
  position: relative;
  z-index: 2;

  padding: 60px 70px;

  max-width: 560px;
}

.trained-title {
  font-family: var(--heading-font);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 18px;
}

.trained-desc {
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  max-width: 400px;
}

/* ---- RIGHT: Image overflows top & bottom ---- */
.trained-image-wrap {
  position: relative;

  z-index: 3;

  width: 100%;
  height: 100%;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: -50px;
  margin-bottom: -50px;
  margin-left: -20px;
}

.trained-image-card {
  width: 100%;
  max-width: 560px;

  height: 420px;

  border-radius: 0;

  overflow: hidden;

  background: #eceae7;

  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.16);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  z-index: 5;
}

.trained-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
}

.trained-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ---- GSAP will-change ---- */
.trained-content,
.trained-image-card {
  will-change: transform, opacity;
}
.trained-image-card img {
  transform: scale(1.02);
}
/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1280px) {
  .trained-content {
    padding: 44px 52px;
  }
  .trained-image-wrap {
    margin-right: 60px;
    margin-top: -44px;
    margin-bottom: -44px;
  }
  /* .trained-image-card {
    width: 320px;
    height: 290px;
  } */
  .trained-image-card {
    width: 500px;
    height: 380px;
  }
}

@media (max-width: 1024px) {
  .trained-content {
    padding: 40px 44px;
    max-width: 460px;
  }
  .trained-image-wrap {
    margin-right: 44px;
    margin-top: -40px;
    margin-bottom: -40px;
  }
  .trained-image-card {
    width: 290px;
    height: 260px;
  }
}

/* Tablet — stack */
@media (max-width: 768px) {
  .trained {
    padding: 40px 20px;
  }

  .trained-inner {
    display: flex;
    flex-direction: column;

    min-height: auto;

    overflow: hidden;

    border-radius: 20px;
  }

  /* TEXT TOP */
  .trained-content {
    width: 100%;

    max-width: 100%;

    padding: 40px 28px 24px;
  }

  .trained-title {
    font-size: 2rem;
    line-height: 1.2;

    margin-bottom: 18px;
  }

  .trained-desc {
    max-width: 100%;

    font-size: 0.92rem;

    line-height: 1.9;
  }

  /* IMAGE BOTTOM */
  .trained-image-wrap {
    width: 100%;

    margin: 0;

    display: flex;
    justify-content: center;

    padding: 0 20px 24px;
  }

  .trained-image-card {
    width: 100%;

    max-width: 320px;

    height: 260px;

    border-radius: 16px;

    overflow: hidden;
  }

  .trained-image-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;
  }
}

@media (max-width: 480px) {
  .trained {
    padding: 0 0 36px;
  }
  .trained-content {
    padding: 28px 20px 16px;
  }
  .trained-title {
    font-size: 1.3rem;
  }
  .trained-desc {
    font-size: 0.83rem;
  }
  .trained-image-card {
    width: 80%;
    height: 190px;
  }
}

/* ============================================================
   SUCCESS STORIES SECTION
============================================================ */

.success {
  width: 100%;
  padding: 60px 40px;
  background: var(--white);
  overflow: hidden;
}

/* ---- Slider Wrapper ---- */
.success-slider-wrap {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* ---- Track ---- */
.success-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* ---- Single Slide Card ---- */
.success-inner {
  flex-shrink: 0;
  width: 100%;
  border: 2.5px solid #d7264b;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 40px 52px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  transition: box-shadow 0.35s ease;
}
.success-inner:hover {
  box-shadow: 0 12px 48px rgba(215, 38, 75, 0.1);
}

/* ---- LEFT: Video ---- */
.success-image-wrap {
  flex-shrink: 0;
}

.success-image-card {
  width: 420px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.success-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.success-image-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- RIGHT: Text ---- */
.success-content {
  flex: 1;
  min-width: 0; /* prevents flex overflow */
}

.success-label {
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.success-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.success-desc {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* ---- Dots ---- */
.success-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.success-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(215, 38, 75, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    width 0.3s ease,
    border-radius 0.3s ease;
}
.success-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

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

@media (max-width: 1280px) {
  .success {
    padding: 52px 32px;
  }
  .success-inner {
    gap: 40px;
    padding: 32px 36px;
  }
  .success-image-card {
    width: 340px;
    height: 240px;
  }
}

@media (max-width: 1024px) {
  .success {
    padding: 44px 24px;
  }
  .success-inner {
    gap: 28px;
    padding: 28px 28px;
  }
  .success-image-card {
    width: 260px;
    height: 200px;
  }
}

/* Tablet — stack */
@media (max-width: 768px) {
  .success {
    padding: 36px 16px;
  }
  .success-inner {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 28px;
    align-items: stretch; /* full width dono elements ko */
    border-radius: 16px;
  }
  .success-image-wrap {
    width: 100%;
  }
  .success-image-card {
    width: 100%;
    height: 220px;
  }
  .success-content {
    width: 100%;
    padding: 0; /* koi extra spacing nahi */
  }
  .success-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .success {
    padding: 28px 14px;
  }
  .success-inner {
    padding: 18px 16px 24px;
    border-radius: 14px;
    gap: 16px;
  }
  .success-image-card {
    height: 200px;
    border-radius: 12px;
  }
  .success-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .success-desc {
    font-size: 0.875rem;
  }
}

/* 7 */
/* ============================================================
   TESTIMONIALS SECTION
============================================================ */

.testi-section {
  background: var(--white);
  padding: 50px 40px 60px;
  overflow: hidden;
}

/* ---- Header ---- */
.testi-top {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.testi-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testi-subtitle {
  display: block;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.testi-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

/* ---- Slider Wrapper ---- */
.testi-slider-wrap {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* ---- Track ---- */
.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  align-items: stretch;
}

/* ---- Single Card ---- */
.testi-card {
  flex-shrink: 0;
  background: var(--white);
  border: 1.8px solid #d4b0b8;
  border-radius: 20px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
  box-sizing: border-box;
}
.testi-card:hover {
  box-shadow: 0 16px 48px rgba(206, 41, 69, 0.12);
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* Top accent line */
.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 4px 4px;
}

/* ---- Avatar ---- */
.testi-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2.5px var(--primary);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- Stars ---- */
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.85rem;
}
.testi-stars .fa-regular {
  color: #ddd;
}

/* ---- Quote ---- */
.testi-quote {
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}

/* ---- Name & Role ---- */
.testi-name {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.testi-role {
  font-family: var(--body-font);
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---- Dots ---- */
.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(206, 41, 69, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.3s ease,
    border-radius 0.3s ease;
  flex-shrink: 0;
}
.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   TABLET — 2 cards visible, slide 1 card at a time
============================================================ */
@media (max-width: 1024px) {
  .testi-section {
    padding: 44px 32px 52px;
  }
}

/* ============================================================
   MOBILE — 1 card
============================================================ */
@media (max-width: 640px) {
  .testi-section {
    padding: 36px 20px 44px;
  }
  .testi-top {
    margin-bottom: 36px;
  }
  .testi-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .testi-avatar {
    width: 72px;
    height: 72px;
  }
  .testi-dots {
    margin-top: 28px;
  }
}
/* 8 */
/* ============================================================
   READY TO START YOUR JOURNEY SECTION — add to style.css
============================================================ */

.journey {
  width: 100%;
  padding: 54px 72px;
  background: #fff;
  overflow: hidden;
}

.journey-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---- LEFT: Text ---- */
.journey-content {
  flex: 1;
  max-width: 440px;
  will-change: transform, opacity;
}

.journey-title {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 18px;
}

.journey-desc {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 420px;
}

.journey-pick {
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
}

/* ---- Buttons ---- */
.journey-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.journey-btn {
  font-family: var(--body-font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}

.journey-btn:hover {
  background: transparent;
  color: var(--secondary);
}

/* ---- RIGHT: Red card ---- */
.journey-card {
  flex-shrink: 0;
  width: 480px;
  height: 236px;
  background: var(--primary);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(206, 41, 69, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  will-change: transform, opacity;
}

.journey-card {
  margin-top: 6px;
}

.journey-card {
  /* existing properties... */
  padding: 0;
  overflow: hidden;
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(206, 41, 69, 0.24);
}

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

@media (max-width: 1280px) {
  .journey {
    padding: 60px 60px;
  }
  .journey-card {
    width: 420px;
    height: 220px;
  }
}

@media (max-width: 1024px) {
  .journey {
    padding: 52px 40px;
  }
  .journey-inner {
    gap: 40px;
  }
  .journey-card {
    width: 360px;
    height: 200px;
  }
  .journey-title {
    font-size: 2rem;
  }
}

/* Tablet — stack */
@media (max-width: 768px) {
  .journey {
    padding: 48px 24px;
  }

  .journey-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .journey-content {
    max-width: 100%;
  }
  .journey-desc {
    max-width: 100%;
  }

  .journey-card {
    width: 100%;
    height: 200px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .journey {
    padding: 40px 16px;
  }
  .journey-title {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }
  .journey-desc {
    font-size: 0.85rem;
  }
  .journey-pick {
    font-size: 0.85rem;
  }
  .journey-btn {
    padding: 11px 22px;
    font-size: 0.84rem;
  }
  .journey-card {
    height: 170px;
    border-radius: 12px;
  }
}
