@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;
}

.nav-spacer {
  height: 88px;
  background: var(--white);
  width: 100%;
}

/* ============================
   NAVBAR
============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 18px;
  background: #ffffff; /* CHANGE: transparent → #ffffff */

  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: 140px 0 60px 80px; /* 120px → 140px */
  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);
}

.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%
    );
  }
}

/* 1 */
/* ============================================================
   ABOUT PAGE
============================================================ */

.about-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  background: var(--white);
}

/* ---- Row layout ---- */
.about-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* .about-text {
  max-height: 140px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.about-text.expanded {
  max-height: 600px;
} */
.about-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-row.reverse {
  flex-direction: row-reverse;
}

/* ---- Content side ---- */
.about-content {
  flex: 1;
}

.small-heading {
  color: var(--primary);
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  text-transform: none;
}

.main-heading {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.about-text {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.8;
  color: #6b6b6b;
  max-width: 500px;
  margin-bottom: 32px;

  /* max-height: 90px;  */
  /* overflow: hidden; */
  /* transition: max-height 0.5s ease; */
}

/* .about-text.expanded {
  max-height: 1000px;
} */

/* Sirf pehli row ka text truncate */
.about-row:first-child .about-text {
  max-height: 90px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.about-row:first-child .about-text.expanded {
  max-height: 1000px;
}
.about-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--secondary);
  transition: var(--transition);
}

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

button.about-btn {
  cursor: pointer;
  font-family: var(--body-font);
}

/* ---- Image side ---- */
.about-image {
  flex: 1;
  overflow: hidden;
  border-radius: 22px;
}

.about-image img {
  width: 100%;
  height: 380px;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.04);
}

/* ============================================================
   RESPONSIVE — ABOUT
============================================================ */

@media (max-width: 991px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
    gap: 36px;
    margin-bottom: 60px;
  }
  .about-image img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .about-wrapper {
    padding: 40px 16px 60px;
  }
  .main-heading {
    font-size: clamp(1.6rem, 6vw, 2rem); /* ← yeh add karo */
  }
  .about-text {
    font-size: 0.9rem;
  }
  .about-btn {
    font-size: 0.88rem;
    padding: 12px 26px;
  }
  .about-image img {
    height: 240px;
  }
}

/* ============================================================
   MISSION SECTION
============================================================ */

.mission-section {
  background: var(--primary);
  padding: 80px 20px 100px;
  overflow: hidden;
}

.mission-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.mission-top {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.mission-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-subtitle {
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  opacity: 0.85;
}

.mission-title {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); /* updated */
  font-weight: 800;
  line-height: 1.2; /* 1.1 → 1.2 */
}

/* ---- Cards Grid ---- */
.mission-cards {
  display: flex;
  justify-content: center;
  align-items: stretch; /* ADD: sab cards equal height */
  gap: 28px;
  flex-wrap: wrap;
}

/* ---- Single Card ---- */
.mission-card {
  background: var(--white);

  flex: 1 1 300px;

  max-width: 380px;

  min-height: 260px;

  border-radius: 20px;

  padding: 44px 36px;

  text-align: left;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  opacity: 0;

  transform: translateY(40px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.mission-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

/* Stagger delay */
.mission-card:nth-child(1) {
  transition-delay: 0.1s;
}
.mission-card:nth-child(2) {
  transition-delay: 0.22s;
}
.mission-card:nth-child(3) {
  transition-delay: 0.34s;
}

/* ---- Card Header: icon + title ---- */
.card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.card-heading h3 {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.mission-card p {
  color: #555;
  font-family: var(--body-font);
  font-size: 0.95rem;
  line-height: 1.9;
}

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

@media (max-width: 1024px) {
  .mission-cards {
    gap: 24px;
  }
  .mission-card {
    flex: 1 1 260px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    padding: 60px 20px 80px;
  }
  .mission-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .mission-card {
    width: 100%;
    max-width: 520px;
    flex: none;
  }
}

@media (max-width: 480px) {
  .mission-section {
    padding: 48px 16px 64px;
  }
  .mission-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .card-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .card-heading h3 {
    font-size: 1.1rem;
  }
  .mission-card {
    padding: 28px 24px;
  }
}

/* 3 */
/* ============================================================
   APART SECTION — uses root variables from about.css
============================================================ */

.apart-section {
  background: var(--white);
  padding: 90px 40px;
  overflow: hidden;
}

/* ---- Header ---- */
.apart-top {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 64px;

  /* Animate in */
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.apart-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.apart-subtitle {
  display: block;
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.apart-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); /* updated */
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2; /* 1.1 → 1.2 */
}

/* ---- Items Row ---- */
.apart-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* ---- Single Item ---- */
.apart-item {
  flex: 1;
  text-align: center;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  /* Animate in — staggered via JS */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.apart-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Icon ---- */
.apart-icon {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3.2rem;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}
.apart-item:hover .apart-icon {
  transform: scale(1.15);
  color: #a81e36;
}

/* ---- Label ---- */
.apart-item h3 {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--dark);
}

/* ---- Vertical Divider ---- */
.apart-line {
  width: 1px;
  height: 110px;
  background: rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

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

/* Tablet landscape */
@media (max-width: 1024px) {
  .apart-section {
    padding: 70px 32px;
  }
  .apart-icon {
    width: 64px;
    height: 64px;
    font-size: 1.45rem;
  }
  .apart-item h3 {
    font-size: 0.88rem;
  }
}

/* Tablet portrait — hide dividers, wrap to 3 cols */
@media (max-width: 768px) {
  .apart-section {
    padding: 60px 24px;
  }
  .apart-top {
    margin-bottom: 48px;
  }
  .apart-wrapper {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  .apart-item {
    flex: 0 0 calc(33.33% - 24px);
    min-width: 140px;
    padding: 16px 12px;
  }
  .apart-line {
    display: none;
  }
}

/* Mobile — 2 columns */
@media (max-width: 520px) {
  .apart-section {
    padding: 50px 20px;
  }
  .apart-title {
    font-size: clamp(1.6rem, 6vw, 2rem); /* ← yeh add karo */
  }
  .apart-wrapper {
    gap: 24px;
  }
  .apart-item {
    flex: 0 0 calc(50% - 16px);
    gap: 16px;
    padding: 14px 8px;
  }
  .apart-icon {
    width: 58px;
    height: 58px;
    font-size: 1.3rem;
  }
  .apart-item h3 {
    font-size: 0.84rem;
  }
}

/* 4 */
/* ============================================================
   PILLARS SECTION — uses root variables from about.css
============================================================ */

.pillars-section {
  background: var(--white);
  padding: 90px 40px;
  overflow: hidden;
}

/* ---- Header ---- */
.pillars-top {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 72px;

  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.pillars-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pillars-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); /* updated */
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
  line-height: 1.2; /* 1.15 → 1.2 */
}

.pillars-description {
  font-family: var(--body-font);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: #444;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* ---- Cards Row ---- */
.pillars-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Leader Card ---- */
.leader-card {
  width: calc(50% - 18px);
  max-width: 620px;
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;

  /* Animate in */
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    box-shadow 0.35s ease;
}
.leader-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.leader-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.red-card {
  background: var(--primary);
}
.blue-card {
  background: var(--thirdary);
}

/* ---- Text Content ---- */
.leader-content {
  width: 52%;
  flex-shrink: 0;
  padding: 44px 32px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.leader-content h3 {
  font-family: var(--heading-font);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.leader-content h4 {
  font-family: var(--body-font);
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* LinkedIn icon button */
.leader-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 6px;
  color: var(--primary);
  font-size: 0.82rem;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.blue-card .leader-linkedin {
  color: var(--thirdary);
}
.leader-linkedin:hover {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.85);
}

.leader-content p {
  font-family: var(--body-font);
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

/* ---- Person Image ---- */
.leader-image {
  flex: 1;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}
.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Subtle left-edge fade so image blends into card color */
.leader-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.12) 0%,
    transparent 35%
  );
  z-index: 2;
  pointer-events: none;
}

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

/* Tablet landscape — full width cards */
@media (max-width: 1100px) {
  .leader-card {
    width: 100%;
    max-width: 680px;
  }
}

/* Tablet portrait — stack layout */
@media (max-width: 768px) {
  .pillars-section {
    padding: 70px 24px;
  }
  .pillars-top {
    margin-bottom: 52px;
  }
  .leader-card {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .leader-content {
    width: 100%;
    padding: 36px 28px 28px;
    justify-content: flex-start;
  }
  .leader-image {
    min-height: 300px;
    width: 100%;
    flex: none;
  }
  .leader-image::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      transparent 40%
    );
  }
}

/* Mobile */
@media (max-width: 520px) {
  .pillars-section {
    padding: 56px 16px;
  }
  .pillars-title {
    font-size: clamp(1.6rem, 6vw, 2rem); /* ← yeh add karo */
  }
  .pillars-wrapper {
    gap: 24px;
  }
  .leader-card {
    border-radius: 20px;
  }
  .leader-content {
    padding: 28px 22px 22px;
  }
  .leader-image {
    min-height: 240px;
  }
  .leader-content h3 {
    font-size: 1.3rem;
  }
  .leader-content h4 {
    font-size: 0.78rem;
  }
  .leader-content p {
    font-size: 0.8rem;
  }
}

/* SECTION */
/* ============================================================
   ADVISORY BOARD SECTION
============================================================ */

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

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

.advisory-title {
  font-family: var(--heading-font);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); /* updated */
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2; /* 1.15 → 1.2 */
}

.advisory-description {
  font-family: var(--body-font);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: #444;
  line-height: 1.8;
  max-width: 860px; /* ← yeh add karo */
  margin: 0 auto; /* ← yeh bhi add karo — center karne ke liye */
}

/* ---- Desktop Grid ---- */
.advisory-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---- Single Card ---- */
.advisor-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.35s ease;
}
.advisor-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.advisor-card.is-visible:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.advisor-image {
  width: 100%;
  aspect-ratio: 3 / 3.5;
  overflow: hidden;
}
.advisor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.advisor-card:hover .advisor-image img {
  transform: scale(1.05);
}

.advisor-content {
  background: var(--primary);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.advisor-info h3 {
  font-family: var(--heading-font);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.advisor-info p {
  font-family: var(--body-font);
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.linkedin-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 7px;
  color: var(--white);
  font-size: 0.88rem;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.linkedin-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
  transform: scale(1.1);
}

/* ---- Desktop slider controls (hidden on desktop) ---- */
.advisory-slider-controls {
  display: none;
}
.advisory-dots {
  display: none;
}

/* ============================================================
   TABLET
============================================================ */
@media (max-width: 900px) {
  .advisory-section {
    padding: 44px 32px 70px;
  }
  .advisory-wrapper {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    gap: 24px;
  }
  .advisor-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ============================================================
   MOBILE SLIDER  ≤ 640px
============================================================ */
@media (max-width: 640px) {
  .advisory-section {
    padding: 36px 0 56px;
  }

  .advisory-top {
    padding: 0 20px;
    margin-bottom: 28px;
  }
  .advisory-title {
    font-size: clamp(1.6rem, 6vw, 2rem); /* ← yeh add karo */
  }

  /* ── Arrow controls row ── */
  .advisory-slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 18px;
  }

  .advisory-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.8px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      transform 0.2s ease;
    flex-shrink: 0;
  }
  .advisory-arrow:hover,
  .advisory-arrow:active {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
  }

  /* ── Slider track ── */
  .advisory-wrapper {
    display: flex;
    grid-template-columns: unset;
    gap: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 4px 0 12px;
    cursor: grab;
    justify-content: center;
    align-items: flex-start;
  }
  .advisory-wrapper.is-dragging {
    cursor: grabbing;
  }

  /* Reset tablet nth-child */
  .advisor-card:nth-child(3) {
    grid-column: unset !important;
    max-width: none;
    margin: 0;
  }

  .advisor-card {
    flex: 0 0 76vw;
    max-width: 76vw;
    margin: 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transition:
      opacity 0.6s ease,
      transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
      box-shadow 0.35s ease;
  }

  /* Active card */
  .advisor-card.slider-active {
    box-shadow: 0 10px 36px rgba(206, 41, 69, 0.18);
  }
  .advisor-card.is-visible:hover {
    transform: none;
  }

  /* image fills naturally — no fixed aspect ratio forcing white space */
  .advisor-image {
    width: 100%;
    height: 72vw;
    max-height: 340px;
    aspect-ratio: unset;
  }

  .advisor-content {
    padding: 14px 16px;
  }

  /* ── Dots ── */
  .advisory-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
    padding: 0;
  }
  .advisory-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(206, 41, 69, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
      background 0.3s ease,
      transform 0.3s ease,
      width 0.3s ease;
  }
  .advisory-dot.active {
    background: var(--primary);
    transform: scale(1.2);
    width: 20px;
    border-radius: 4px;
  }
}

@media (max-width: 380px) {
  .advisor-card {
    flex: 0 0 80vw;
  }
}

/* ============================================================
   LEADERSHIP TEAM SECTION
============================================================ */

.leadership-section {
  background: var(--white);
  padding: 80px 40px 90px;
  overflow: hidden;
}

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

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

.leadership-description {
  font-family: var(--body-font);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: #555;
  line-height: 1.8;
  max-width: 860px;
  margin: 0 auto;
}

/* ---- Desktop 4-col Grid ---- */
.leadership-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start; /* so cards don't stretch */
}

.leadership-mobile {
  display: none;
}

/* ---- Team Card ---- */
.team-card {
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.team-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image — fixed aspect ratio so all same height */
.team-image {
  width: 100%;
  aspect-ratio: 1 / 1.1; /* square-ish, consistent */
  overflow: hidden;
  flex-shrink: 0;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%);
  transition:
    filter 0.45s ease,
    transform 0.45s ease;
}
.team-card:hover .team-image img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

/* Content bar */
.team-content {
  background: #2e2b2c;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  transition: background 0.35s ease;
  flex: 1;
}
.team-card:hover .team-content {
  background: var(--primary);
}

.team-content-text {
  flex: 1;
  min-width: 0;
}

.team-content h3 {
  font-family: var(--heading-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.3;
}

/* Role — first <p> */
.team-content .team-role {
  font-family: var(--body-font);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
  margin-bottom: 4px;
  font-weight: 600;
}

/* Bio — second <p> — collapsed by default */
.team-content .team-bio {
  font-family: var(--body-font);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.3s ease;
  opacity: 0;
  margin-top: 0;
}
.team-card.expanded .team-bio {
  max-height: 200px;
  opacity: 1;
  margin-top: 6px;
}

/* Right side: LinkedIn + expand btn stacked */
.team-card-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* LinkedIn icon */
.linkedin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.78rem;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.linkedin-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Expand toggle button */
.team-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 0.75rem;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.3s ease;
  padding: 0;
}
.team-expand-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.team-card.expanded .team-expand-btn {
  transform: rotate(180deg);
}

/* ---- See More Button ---- */
.leadership-btn-wrap {
  text-align: center;
  margin-top: 52px;
}
.leadership-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 40px;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.25s ease;
}
.leadership-btn:hover {
  background: var(--thirdary, #37748c);
  transform: translateY(-2px);
}

/* Bio — hidden by default inside mini card */
.ls-mini-bio {
  font-family: var(--body-font);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease,
    margin-top 0.3s ease;
}

.ls-mini-card.expanded .ls-mini-bio {
  max-height: 200px;
  opacity: 1;
  margin-top: 5px;
}

.ls-mini-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ls-mini-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 0.6rem;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s ease,
    transform 0.3s ease;
}

.ls-mini-expand-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.ls-mini-card.expanded .ls-mini-expand-btn {
  transform: rotate(180deg);
}

.ls-row:has(.ls-mini-card.expanded) .ls-track {
  animation-play-state: paused;
}

/* ============================================================
   TABLET — 2 columns
============================================================ */
@media (max-width: 1024px) {
  .leadership-section {
    padding: 70px 32px 80px;
  }
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    margin: 0 auto;
    gap: 18px;
  }
}

/* ============================================================
   MOBILE — infinite scroll rows
============================================================ */
@media (max-width: 640px) {
  .leadership-section {
    padding: 48px 0 64px;
  }

  .leadership-top {
    padding: 0 20px;
    margin-bottom: 36px;
  }

  .leadership-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .leadership-grid {
    display: none;
  }

  .leadership-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
  }

  .ls-row {
    overflow: hidden;
    width: 100%;
  }

  .ls-track {
    display: flex;
    gap: 14px;
    width: max-content;
  }

  .ls-row-rtl .ls-track {
    animation: scrollRTL 28s linear infinite;
  }
  .ls-row-ltr .ls-track {
    animation: scrollLTR 28s linear infinite;
  }

  .ls-row:hover .ls-track,
  .ls-row.paused .ls-track {
    animation-play-state: paused;
  }

  /* Pause scroll when any card is expanded */
  .ls-row:has(.ls-mini-card.expanded) .ls-track {
    animation-play-state: paused;
  }

  @keyframes scrollRTL {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  @keyframes scrollLTR {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  /* ---- Mini Card ---- */
  .ls-mini-card {
    flex-shrink: 0;
    width: 38vw;
    max-width: 160px;
    overflow: visible; /* allow bio to expand */
    background: var(--white);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }

  /* Expanded card sits above siblings */
  .ls-mini-card.expanded {
    z-index: 20;
  }

  /* Image — still clipped */
  .ls-mini-img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
  }
  .ls-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
  }
  .ls-mini-card:hover .ls-mini-img img {
    filter: grayscale(0%);
  }

  /* Content bar */
  .ls-mini-content {
    background: #2e2b2c;
    padding: 8px 10px;
    display: flex;
    align-items: flex-start; /* top-align so bio expands naturally */
    justify-content: space-between;
    gap: 6px;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
  }
  .ls-mini-card:hover .ls-mini-content,
  .ls-mini-card.expanded .ls-mini-content {
    background: var(--primary);
  }

  /* Text area */
  .ls-mini-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .ls-mini-content h3 {
    font-family: var(--heading-font);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95px;
  }

  /* Role */
  .ls-mini-role {
    font-family: var(--body-font);
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95px;
    display: block;
    margin-bottom: 0;
  }

  /* Bio — collapsed by default */
  .ls-mini-bio {
    font-family: var(--body-font);
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    white-space: normal;
    transition:
      max-height 0.4s ease,
      opacity 0.35s ease,
      margin-top 0.3s ease;
  }

  /* Bio visible on expand */
  .ls-mini-card.expanded .ls-mini-bio {
    max-height: 300px;
    opacity: 1;
    margin-top: 6px;
  }

  /* Actions: LinkedIn + expand btn stacked */
  .ls-mini-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  /* LinkedIn icon */
  .ls-mini-li {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.6rem;
    text-decoration: none;
  }

  /* Expand button */
  .ls-mini-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    font-size: 0.6rem;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition:
      background 0.25s ease,
      transform 0.3s ease;
  }
  .ls-mini-expand-btn:hover {
    background: rgba(255, 255, 255, 0.15);
  }
  .ls-mini-card.expanded .ls-mini-expand-btn {
    transform: rotate(180deg);
  }

  .leadership-btn-wrap {
    margin-top: 36px;
    padding: 0 20px;
  }
}

/* 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;
  }
}

/* ============================
   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;
  }
}
