@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1c1c1c;
  color: #fff;
}

h1 span {
  color: #41866e;
}


html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* ======================================================================================================== */
/* ========================= */
/* HERO SECTION */
/* ========================= */
.about-hero {
  position: relative;
  height: 100vh;
  margin-top: 80px;

  background-image: url("/assets/images/banners/about-banner.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;      /* ✅ vertical center */
  justify-content: center;  /* ✅ horizontal center */

  overflow: hidden;
}

/* ========================= */
/* OVERLAY */
/* ========================= */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.289);

  z-index: 1;
}

/* ========================= */
/* BREADCRUMB */
/* ========================= */
.breadcrumb {
  position: relative;
  z-index: 2; /* ✅ overlay वर */

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;
  border-radius: 40px;

  /* 🔥 gradient */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(20, 20, 20, 0.5) 40%,
    rgba(40, 40, 40, 0) 100%
  );

  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;

  border: 1px solid rgba(255,255,255,0.08);

  /* ✨ glass effect */
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255,255,255,0.06);

  transition: all 0.3s ease;
  margin-bottom: 80px;
}

/* ========================= */
/* HOVER */
/* ========================= */
.breadcrumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(158, 255, 198, 0.088);
}

/* ========================= */
/* ICON */
/* ========================= */
.home-icon i {
  color: #9effc7;
  font-size: 14px;
  transition: 0.3s;
}

.breadcrumb:hover .home-icon i {
  transform: scale(1.2);
}

/* ========================= */
/* TEXT */
/* ========================= */
.breadcrumb-text {
  color: #bbb;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.breadcrumb-text:hover {
  color: #9effc7;
  cursor: pointer;
}

.breadcrumb-active {
  color: #fff;
  font-weight: 500;
}

.arrow {
  color: #777;
  font-size: 16px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {
  .about-hero {
    height: 80vh;
  }
}

@media (max-width: 768px) {

  .about-hero {
    height: 60vh;
    padding: 0 15px;
  }

  .breadcrumb {
    font-size: 12px;
    padding: 8px 14px;
    gap: 6px;
  }

  .arrow {
    font-size: 14px;
  }
}
/* ================================================================================================== */

/* ================= ABOUT SECTION (premium + scroll-driven) ================= */

.about-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: clamp(520px, 72vh, 880px);
  box-sizing: border-box;
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 6vw, 72px) clamp(16px, 4vw, 32px);
  padding-left: max(clamp(16px, 4vw, 32px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(16px, 4vw, 32px), env(safe-area-inset-right, 0px));
  overflow-x: hidden;
  isolation: isolate;
}

.about-section__ambient {
  position: absolute;
  inset: -20% -10% auto;
  height: min(70vh, 620px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(65, 134, 110, 0.35), transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(100, 200, 255, 0.08), transparent 65%),
    radial-gradient(ellipse 45% 35% at 15% 40%, rgba(145, 231, 189, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.about-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px) clamp(20px, 4.5vw, 48px);
  border-radius: clamp(18px, 2.4vw, 28px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(0, 0, 0, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(65, 134, 110, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.65s ease, border-color 0.5s ease;
  --about-mx: 50%;
  --about-my: 35%;
}

.about-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 90% 70% at var(--about-mx) var(--about-my),
    rgba(145, 231, 189, 0.14),
    transparent 58%
  );
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}

.about-container > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .about-container:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.45) inset,
      0 32px 96px rgba(0, 0, 0, 0.62),
      0 0 140px rgba(65, 134, 110, 0.1);
    transform: translateY(-3px);
  }
}

.about-section__eyebrow {
  font-size: clamp(11px, 1.8vw, 13px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(145, 231, 189, 0.75);
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-weight: 500;
}

.about-main-title {
  margin: 0 0 clamp(22px, 3.5vw, 36px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.35rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #f4f8f6;
}

.about-main-title__accent {
  background: linear-gradient(135deg, #b8f5d8, #60aa88 45%, #41866e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-main-title__plain {
  -webkit-text-fill-color: #f4f8f6;
  color: #f4f8f6;
}

.reveal-wrapper {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.reveal-wrapper p {
  font-size: clamp(15px, 1.35vw + 0.65rem, 17px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 clamp(16px, 2.5vw, 22px);
}

.reveal-wrapper p:last-child {
  margin-bottom: 0;
}

.reveal-wrapper .about-char {
  display: inline-block;
  opacity: 0.14;
  color: rgba(255, 255, 255, 0.92);
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  .about-container {
    transition: none;
  }

  .reveal-wrapper .about-char {
    opacity: 1 !important;
    will-change: auto;
  }
}

/* ================= ABOUT SECTION — responsive ================= */

@media (max-width: 768px) {
  .about-section {
    min-height: 0;
    padding-top: clamp(24px, 8vw, 40px);
    padding-bottom: clamp(32px, 10vw, 48px);
  }

  .about-section__ambient {
    height: min(50vh, 420px);
    opacity: 0.75;
  }

  .about-container {
    padding: clamp(18px, 5vw, 28px) clamp(16px, 4vw, 24px);
  }

  .about-main-title {
    line-height: 1.15;
  }

  .reveal-wrapper p {
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .about-section__grid {
    background-size: 32px 32px;
  }

  .about-section__eyebrow {
    letter-spacing: 0.22em;
  }
}

@media (max-width: 360px) {
  .about-container {
    border-radius: 16px;
  }
}


/* ================================================================================================= */


.who-section {
  position: relative;
  min-height: 130vh;
  background: radial-gradient(circle at 20% -10%, rgba(77, 184, 146, 0.16), transparent 35%), #000;
  padding: 30px 5%;
  overflow: hidden;
  isolation: isolate;
}

.who-btn-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 48px;
}

.who-btn {
  padding: 12px 28px;
  border-radius: 40px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

/* STICKY CONTAINER */
.who-stack {
  position: sticky;
  top: 46%;
  transform: translateY(-36%);
  max-width: 1200px;
  height: clamp(340px, 52vh, 430px);
  margin: auto;
  z-index: 2;
}

/* CARD */
.who-card {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 95% at 0% 0%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(30px, 5vw, 80px);
  padding: clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  transform: translateY(120%) scale(0.95);
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  will-change: transform, opacity;
}

.who-card:not(.is-active) {
  pointer-events: none;
}

.who-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.09) 50%, transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.who-card.is-active {
  border-color: rgba(114, 217, 172, 0.45);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(195, 244, 223, 0.133),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: saturate(1.05);
}

.who-card.is-active::after {
  opacity: 1;
}

/* TEXT */
.who-text h2 {
  font-size: clamp(20px, 2.4vw, 32px);
  color: #fff;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* IMAGE */
.who-image img {
  max-width: 520px;
  width: 100%;
  border-radius: clamp(16px, 3vw, 40px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.who-card.is-active .who-image img {
  transform: scale(1.02);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
}

/* MOBILE */
@media (max-width: 992px) {
  .who-section {
    min-height: 132vh;
  }

  .who-stack {
    top: 52%;
    transform: translateY(-44%);
    height: clamp(440px, 70vh, 640px);
  }

  .who-card {
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
    padding: clamp(18px, 4vw, 40px);
    gap: 14px;
  }

  .who-text {
    margin-bottom: 0;
  }

  .who-text h2 {
    font-size: clamp(18px, 4.8vw, 24px);
  }

  .who-image img {
    max-width: min(520px, 100%);
  }
}

@media (max-width: 600px) {
  .who-section {
    min-height: 120vh;
    padding: 22px 4%;
  }

  .who-btn-wrapper {
    margin-top: 26px;
  }

  .who-stack {
    top: 54%;
    transform: translateY(-48%);
    height: clamp(360px, 58vh, 520px);
  }

  .who-card {
    padding: 18px;
    border-radius: 26px;
    gap: 12px;
  }

  .who-text {
    margin-bottom: 30px;
  }

  .who-image img {
    width: 100%;
    max-width: 520px;
    max-height: 280px;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 430px) {
  .who-section {
    min-height: 116vh;
  }

  .who-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  .who-text h2 {
    line-height: 1.45;
  }

  .who-card {
    gap: 10px;
  }

  .who-stack {
    top: 56%;
    transform: translateY(-52%);
    height: clamp(340px, 54vh, 460px);
  }

  .who-image img {
    max-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .who-card,
  .who-card::after,
  .who-image img {
    transition: none !important;
  }
}




/* ===================================================================================================== */

/* ================= FEATURE SECTION ================= */
.feature-section {
  position: relative;
  background: #000;
  padding: 72px 6% 88px;
  overflow: hidden;
}

.feature-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(5, 151, 71, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 60%, rgba(0, 170, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #030303 0%, #000 45%, #050505 100%);
  pointer-events: none;
  z-index: 0;
}

.feature-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto 56px;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}

.section-title-accent {
  background:#41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.feature-card {
  position: relative;
  text-align: center;
  border-radius: 22px;
  padding: 14px 14px 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(65, 134, 110, 0.28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  outline: none;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
  transition: opacity 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(5, 151, 71, 0.5);
    box-shadow:
      0 28px 64px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(61, 214, 140, 0.12);
  }

  .feature-card:hover::after {
    opacity: 1;
  }
}

.feature-card:focus-visible {
  outline: 2px solid #3dd68c;
  outline-offset: 4px;
}

.feature-card.is-open {
  border-color: rgba(61, 214, 140, 0.55);
  box-shadow:
    0 28px 64px rgba(5, 151, 71, 0.12),
    0 0 0 1px rgba(61, 214, 140, 0.2);
}

.card-image {
  position: relative;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  background: #0d0d0d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(5, 40, 28, 0.88) 45%,
    rgba(5, 151, 71, 0.42) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.card-overlay p {
  color: #eafff0;
  font-size: 15px;
  line-height: 1.65;
  max-width: 42ch;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.feature-card:hover .card-overlay,
.feature-card:focus-within .card-overlay,
.feature-card.is-open .card-overlay {
  transform: translateY(0);
}

.feature-card:hover .card-image img,
.feature-card:focus-within .card-image img,
.feature-card.is-open .card-image img {
  transform: scale(1.06);
}

.feature-card h3 {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 18px;
  color: #f2fff9;
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .feature-section {
    padding: 56px 5% 72px;
  }
}

@media (max-width: 500px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .card-image {
    height: 220px;
  }

  .feature-card {
    padding: 12px 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-card::after,
  .card-image img,
  .card-overlay {
    transition: none;
  }

  .feature-card:hover,
  .feature-card.is-open {
    transform: none;
  }

  .feature-card:hover .card-image img,
  .feature-card:focus-within .card-image img,
  .feature-card.is-open .card-image img {
    transform: none;
  }
}

/* ====================================================================================================== */

/* feature-section */
.quality {
  padding: 100px 6%;
  background: #050505;
  color: #fff;
  position: relative;
  z-index: 5;
}

.quality-container {
  max-width: 1200px;
  margin: auto;
}

.quality-container h2 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  color: #ffffff;
}

.quality-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.quality-card {
  background: linear-gradient(180deg, #111, #0b0b0b);
  border-radius: 18px;
  padding: 35px 28px;
  text-align: center;
  border: 1px solid rgba(59, 154, 116, 0.463);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.quality-card i {
  font-size: 46px;
  background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  filter: drop-shadow(0 0 12px rgba(108, 207, 172, 0.385));
  margin-bottom: 20px;
  display: inline-block;
}

.quality-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.quality-card p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

.quality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(89, 169, 134, 0.35);
  border-color: rgba(26, 135, 91, 0.263);
}

.quality-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(62, 137, 103, 0.386), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.quality-card:hover::after {
  opacity: 1;
}

/* =============================================================================================================== */

/* ================= FOUNDERS SECTION ================= */

.founders-section {
  position: relative;
  background: #000;
  padding: 88px 6% 100px;
  overflow: hidden;
}

.founders-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 45% at 20% 20%, rgba(5, 151, 71, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 85% 75%, rgba(0, 170, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #020202 0%, #000 40%, #050505 100%);
  pointer-events: none;
  z-index: 0;
}

.founders-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.founders-heading {
  text-align: center;
  margin-bottom: 72px;
}

.founders-heading h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.founders-title-accent {
  background:#41866e;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founders-lead {
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(191, 232, 217, 0.88);
}

.founders-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founder-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}

.founder-row.reverse {
  flex-direction: row-reverse;
}

.founder-card {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(65, 134, 110, 0.28);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
  transition:
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(5, 151, 71, 0.12) 0%, transparent 65%);
  transition: opacity 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .founder-card:hover {
    border-color: rgba(5, 151, 71, 0.48);
    box-shadow:
      0 32px 80px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(61, 214, 140, 0.12);
    transform: translateY(-4px);
  }

  .founder-card:hover::before {
    opacity: 1;
  }
}

.founder-visual {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-image {
  perspective: 1400px;
  width: 100%;
  max-width: 380px;
}

.founder-image-3d {
  position: relative;
  padding: 3px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(5, 151, 71, 0.55), rgba(255, 255, 255, 0.18), rgba(5, 151, 71, 0.35));
  transform-style: preserve-3d;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .founder-card:hover .founder-image-3d {
    box-shadow:
      0 36px 72px rgba(5, 151, 71, 0.15),
      0 0 0 1px rgba(61, 214, 140, 0.2);
  }
}

.founder-image-3d::after {
  content: "";
  position: absolute;
  inset: -20%;
  border-radius: 32px;
  background: radial-gradient(circle at 50% 40%, rgba(61, 214, 140, 0.25) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}

.founder-image-3d img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 21px;
  display: block;
  background: #0d0d0d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateZ(24px);
}

.founder-content {
  flex: 1;
  min-width: 0;
  max-width: 520px;
}

.founder-quote {
  margin: 0 0 28px;
  padding: 0;
  border: none;
  position: relative;
}

.founder-quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 0.85;
  background: linear-gradient(180deg, #3dd68c, #059747);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.85;
  margin-bottom: 4px;
}

.founder-quote p {
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.founder-info {
  padding-top: 8px;
  border-top: 1px solid rgba(65, 134, 110, 0.35);
}

.founder-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f2fff9;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.founder-info span {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(125, 230, 190, 0.95);
  text-transform: uppercase;
}

.founder-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 200px;
  margin: 36px auto;
}

.founder-connector-line {
  flex: 1;
  height: 1px;
  max-width: 72px;
  background: linear-gradient(90deg, transparent, rgba(5, 151, 71, 0.65), transparent);
}

.founder-connector-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3dd68c, #059747);
  box-shadow: 0 0 20px rgba(5, 151, 71, 0.65);
  flex-shrink: 0;
}

@media (max-width: 992px) {

  .founder-row,
  .founder-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .founder-content {
    margin: 0 auto;
    max-width: 560px;
  }

  .founder-quote-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .founder-info {
    text-align: center;
  }

  .founders-section {
    padding: 72px 5% 88px;
  }

  .founders-heading {
    margin-bottom: 56px;
  }
}

@media (max-width: 576px) {
  .founders-section {
    padding: 56px 5% 72px;
  }

  .founder-card {
    padding: 22px 18px;
  }

  .founder-image-3d img {
    max-width: 100%;
  }

  .founder-connector {
    margin: 28px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-card,
  .founder-card::before,
  .founder-image-3d {
    transition: none;
  }

  .founder-card:hover {
    transform: none;
  }
}

/* ================================================================================================== */

/* ================= WHY CHOOSE US ================= */

.why-section {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url("/assets/images/banners/why-choose-us-bg.jpg") center/cover no-repeat;
  padding: 100px 6% 0;
  overflow-x: hidden;
  overflow-y: visible;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(0, 0, 0, 0.93) 0%,
      rgba(0, 0, 0, 0.72) 42%,
      rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(ellipse 90% 70% at 70% 40%, rgba(5, 151, 71, 0.12) 0%, transparent 55%);
  z-index: 1;
}

.why-section-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 40% at 20% 80%, rgba(61, 214, 140, 0.08) 0%, transparent 60%);
  mix-blend-mode: screen;
}

.why-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 0;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 420px);
  width: fit-content;
  max-width: 100%;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.45), rgba(5, 151, 71, 0.22));
  border: 1px solid rgba(65, 134, 110, 0.45);
  color: #c8f5dc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.why-left {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.why-left h2 {
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.why-title-accent {
  background: linear-gradient(90deg, #41866e, #3dd68c, #7ee8c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-left-lead {
  max-width: 420px;
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(191, 232, 217, 0.88);
}

@media (hover: hover) and (pointer: fine) {
  .why-left-lead {
    margin-bottom: 36px;
  }
}

.why-person {
  margin-top: auto;
  padding-bottom: 0;
  line-height: 0;
}

.why-person img {
  max-width: 470px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
}

.why-right {
  align-self: stretch;
  min-width: 0;
  min-height: 0;
}

.why-right-wrap {
  position: relative;
  width: 100%;
}

.why-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.why-rail-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.why-rail-track {
  position: absolute;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  top: 0;
  height: 0;
  bottom: auto;
}

.why-rail-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  transform: translateX(-50%);
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #059747, #3dd68c, #7ee8c7);
  box-shadow: 0 0 24px rgba(5, 151, 71, 0.45);
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.why-rail-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-rail-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 12px;
  height: 12px;
  margin: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.why-rail-dot.is-lit {
  border-color: rgba(61, 214, 140, 0.9);
  background: linear-gradient(135deg, #3dd68c, #059747);
  box-shadow: 0 0 16px rgba(5, 151, 71, 0.65);
  transform: translate(-50%, -50%) scale(1.08);
}

.why-features-col {
  min-width: 0;
  padding-left: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-feature {
  position: relative;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 22px 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(65, 134, 110, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.105) 0%, rgba(0, 0, 0, 0.25) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease;
}

.why-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  opacity: 0.95;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.why-feature:hover,
.why-feature:focus-within {
  border-color: rgba(5, 151, 71, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.why-feature.is-active {
  border-color: rgba(61, 214, 140, 0.55);
  background: linear-gradient(165deg, rgba(5, 151, 71, 0.14) 0%, rgba(0, 0, 0, 0.35) 100%);
  box-shadow:
    0 28px 64px rgba(5, 151, 71, 0.12),
    0 0 0 1px rgba(61, 214, 140, 0.15);
}

.why-feature.is-active::before {
  background: linear-gradient(180deg, #059747, #3dd68c);
  box-shadow: 0 0 14px rgba(61, 214, 140, 0.55);
}

.why-feature:focus-visible {
  outline: 2px solid #3dd68c;
  outline-offset: 3px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 4px;
  color: #041a12;
  background: linear-gradient(120deg, #c4efd3, #67a879, #4fa878);
  box-shadow: 0 14px 32px rgba(5, 151, 71, 0.35);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.why-feature:hover .feature-icon,
.why-feature.is-active .feature-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 18px 40px rgba(5, 151, 71, 0.45);
}

.why-feature-body {
  min-width: 0;
}

.why-feature h4 {
  font-size: 18px;
  font-weight: 700;
  color: #f2fff9;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.why-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 992px) {
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-left-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .why-person {
    align-self: center;
  }

  .why-right {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }

  .why-right-wrap {
    position: static;
  }

  .why-rail {
    display: none;
  }

  .why-features-col {
    padding-left: 0;
  }

  .why-feature {
    text-align: left;
  }

  .why-left h2 {
    font-size: clamp(28px, 6vw, 36px);
  }
}

@media (max-width: 576px) {
  .why-section {
    padding: 72px 5% 80px;
    min-height: unset;
  }

  .why-left h2 {
    font-size: 26px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .why-person {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-feature,
  .why-feature::before,
  .feature-icon,
  .why-rail-fill,
  .why-rail-dot {
    transition: none;
  }

  .why-feature:hover,
  .why-feature:focus-within,
  .why-feature.is-active {
    transform: none;
  }

  .why-feature:hover .feature-icon,
  .why-feature.is-active .feature-icon {
    transform: none;
  }
}


/* ====================================================================================================== */


.vision-section {
  position: relative;
  padding: 80px 6% 100px;
  background: #ffffff;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(5, 151, 71, 0.06) 0%, transparent 55%);
}

.vision-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 140px;
}

.vision-row:last-child {
  margin-bottom: 0;
}

/* IMAGE — same footprint as original layout */
.vision-image {
  width: 60%;
  height: 450px;
  border-radius: 40px;
  overflow: hidden;
  background: #f0f4f2;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(5, 151, 71, 0.12);
  transition: box-shadow 0.45s ease;
}

.vision-image-frame {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: box-shadow 0.45s ease;
}

.vision-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transform: scale(1.001);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* CARD — premium dark panel on white (brand contrast) */
.vision-card {
  position: absolute;
  z-index: 2;
  max-width: 480px;
  padding: 35px 42px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(4, 42, 28, 0.96) 0%, rgba(2, 32, 24, 0.98) 100%);
  border: 1px solid rgba(61, 214, 140, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  color: #fff;
  outline: none;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.vision-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #059747, #3dd68c);
  opacity: 0.85;
  transition: opacity 0.35s ease, box-shadow 0.35s ease;
}

.vision-card h3 {
  margin: 0 0 14px;
  padding-left: 6px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #c8ffd9, #7ee8c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vision-card p {
  margin: 0;
  padding-left: 6px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(234, 255, 243, 0.9);
}

.vision-card:focus-visible {
  outline: 2px solid #059747;
  outline-offset: 4px;
}

/* ZIG ZAG — same as original */
.right-text .vision-image {
  margin-left: auto;
}

.right-text .vision-card {
  right: 55%;
}

.left-text .vision-image {
  margin-right: auto;
}

.left-text .vision-card {
  left: 55%;
}

@media (hover: hover) and (pointer: fine) {
  .vision-row:hover .vision-image {
    box-shadow:
      0 32px 72px rgba(5, 151, 71, 0.14),
      0 0 0 1px rgba(5, 151, 71, 0.22);
  }

  .vision-row:hover .vision-image img {
    transform: scale(1.05);
  }

  .vision-row:hover .vision-card {
    transform: translateY(-8px);
    border-color: rgba(61, 214, 140, 0.45);
    box-shadow:
      0 32px 70px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(61, 214, 140, 0.15) inset;
  }

  .vision-row:hover .vision-card::before {
    opacity: 1;
    box-shadow: 0 0 18px rgba(61, 214, 140, 0.45);
  }
}

@media (max-width: 992px) {
  .vision-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }

  .vision-image {
    width: 100%;
    height: 300px;
    border-radius: 28px;
  }

  .vision-image img {
    border-radius: 28px;
  }

  .vision-card {
    position: relative;
    max-width: 100%;
    left: auto !important;
    right: auto !important;
    margin-top: -56px;
    width: calc(100% - 32px);
  }
}

@media (max-width: 576px) {
  .vision-section {
    padding: 64px 5% 80px;
  }

  .vision-card {
    padding: 24px 22px;
  }

  .vision-card h3 {
    font-size: 22px;
  }

  .vision-card p {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vision-image,
  .vision-image img,
  .vision-card,
  .vision-card::before {
    transition: none;
  }

  .vision-row:hover .vision-image img {
    transform: none;
  }

  .vision-row:hover .vision-card {
    transform: none;
  }
}

[data-aos] {
  transition-property: transform, opacity, box-shadow;
}

.vision-card[data-aos].aos-animate {
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(61, 214, 140, 0.2);
}





* {
  scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card,
.why-feature,
.vision-row {
  will-change: transform, opacity;
}