:root {
  --container-pad: 100px;
  --container-max: 1250px; /* you already use 1200px */
}

body {
  margin: 0;

  font-family: "Arial", sans-serif;
}

.nav-item {
  text-decoration: none;
  color: white;
  font-size: clamp(12px, 1vw, 12px); /* ✅ scales */
  letter-spacing: 1px;
  padding: clamp(6px, 0.8vw, 8px) clamp(10px, 1vw, 14px); /* ✅ scales */
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  white-space: nowrap; /* ✅ prevents two-line wrap */
}

/* 🌟 Hover glow for NON-active items */
.nav-item:hover:not(.active) {
  color: #c1d83c;
  text-shadow:
    0 0 5px #c1d83c,
    0 0 10px #c1d83c;
}

/* 🟢 Active page = yellow-green border */
.nav-item.active {
  color: black;
  background-color: #c1d83c;
  border: 2px solid #c1d83c;
}

/*----------------------------------------------------------------------------------------*/
/*About hero info*/
.abt-what {
  position: relative;
  background: #fff;
  padding: 90px 15%;
  overflow: hidden;
}

.abt-what__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* circles behind */
.bg-orbits {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* make circles actually visible */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(146, 199, 81, 0.25);
  box-shadow: 0 0 30px rgba(146, 199, 81, 0.08);
}
.orbit::after {
  content: "";
  position: absolute;
  top: -4px; /* sits on edge */
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #c1d83c;
  border-radius: 50%;
  box-shadow:
    0 0 8px #c1d83c,
    0 0 16px #c1d83c;
}

/* positions + sizes */
.orbit.o1 {
  width: 520px;
  height: 520px;
  top: -180px;
  left: -160px;
  animation-duration: 18s;
}
.orbit.o2 {
  width: 720px;
  height: 720px;
  top: -260px;
  right: -260px;
  animation-duration: 28s;
}
.orbit.o4 {
  width: 900px;
  height: 900px;
  bottom: -420px;
  left: 20%;
  opacity: 0.18;
  animation-duration: 40s;
}
@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* -----------------------------------End Of Orbit-------------------------- */
.abt-mission-row {
  position: relative; /* IMPORTANT */
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;

  padding: 90px 100px 90px 119px;

  margin: 0 auto;
  background: #fff;
}

/* top area */
.abt-what__top {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 44px;
}

.abt-what__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 35px);
  letter-spacing: 1px;
}

.abt-what__lead {
  margin: 0;
  max-width: 70ch;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
}

/* Lime blob */
.abt-what__blob {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(209, 255, 69, 0.95),
    rgba(209, 255, 69, 0.35)
  );
  filter: blur(0.2px);
  box-shadow: 0 20px 50px rgba(209, 255, 69, 0.25);
}

.abt-what__top2 {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 60px;
}

.abt-what__media {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
}

.abt-what__media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.abt-what__media:hover img {
  transform: scale(1.08);
}

/* blob floats over image edge */
.abt-what__mediaBlob {
  display: none;
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  right: -50px;
  top: -50px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(209, 255, 69, 0.95),
    rgba(209, 255, 69, 0.25)
  );
  box-shadow: 0 20px 50px rgba(209, 255, 69, 0.25);
}

.abt-mission-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr; /* mission | video */

  align-items: stretch;

  padding: 90px 4.9% 90px 6.3%;

  margin: 0 auto;
  background: #fff;
}

/* ============================= */
/* LEFT SIDE (MISSION) */
/* ============================= */

.abt-mission-row__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* subtle technical grid background */
.abt-mission-row__content::before {
  content: "";
  position: absolute;
  inset: -40px -40px -40px -40px;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size:
    220px 220px,
    220px 110px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.abt-heading,
.abt-mission-grid {
  position: relative;
  z-index: 1;
}

.abt-heading h1 {
  margin: 0 0 26px;
  font-size: clamp(28px, 2.5vw, 35px);
  letter-spacing: 1px;
}

/* 4-block layout */
.abt-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.abt-mission-card {
  display: flex;
  flex-direction: row;
  padding: 20px;
  border-left: 2px solid rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  gap: 15px;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 90px;
  margin-top: -10px;
}
.icon img {
  height: 35px;
  width: auto;
  margin-top: -10px;
}

.abt-mission-card:hover {
  border-left-color: #c1d83c;
  transform: translateY(-4px);
}

.abt-mission-title {
  margin: 0 0 10px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.abt-mission-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}

/* ============================= */
/* RIGHT SIDE (VIDEO) */
/* ============================= */

.abt-mission-row__video {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
  background: #070b0c;
}

.abt-mission-row__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(0.9); /* 👈 zoom amount */
  transform-origin: center; /* keep it centered */
  animation: videoDrift 18s ease-in-out infinite alternate;
}
@keyframes videoDrift {
  from {
    transform: scale(1.12) translateY(-8px);
  }
  to {
    transform: scale(1.16) translateY(8px);
  }
}

/* softer blend toward text side */
.abt-mission-row__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

/*----------------------------------------------------------------------------------------*/
/*Video section*/

/*----------------------------------------------------------------------------------------*/
/* ============================= */
/* WHY US SECTION (matches mission vibe) */
/* ============================= */

.whyus2 {
  position: relative;
  padding: 100px 15%;
  background: #fff;
  overflow: hidden;
}

/* subtle grid background like your mission section */
.whyus2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size:
    240px 240px,
    240px 120px;
  opacity: 0.22;
  pointer-events: none;
}

.whyus2-inner {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
}

/* header */
.whyus2-kicker {
  margin: 0 0 20px;
  letter-spacing: 2px;
  font-size: 20px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
}

.whyus2-title {
  font-size: clamp(30px, 3.2vw, 35px);
  letter-spacing: 1px;
}

/* layout */
.whyus2-layout {
  display: flex;
  flex-direction: row;
  gap: 100px;

  align-items: stretch;

  /* define logical positions */
  grid-template-areas: "left right";
}
.whyus2-left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
}
.whyus2-right {
  grid-area: right;
  width: 50%;
}
/* left column */
.whyus2-lead {
  margin: 10px 0 26px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.72);
  max-width: 90ch;
}

/* process chips (impactful + modern) */
.whyus2-process {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 40px; /* anchors lower block */
}

.whyus2-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(209, 255, 69, 0.14);
  color: rgba(0, 0, 0, 0.78);
  font-size: 12px;
  letter-spacing: 0.4px;
}
/*Icon box*/
.whyus2-icon-box {
  display: flex;
  align-content: center;
  justify-content: center;
  height: 350px;
  width: auto;
}
.card {
  position: relative;
  width: 104px;
  height: 104px;
  color: #0a1012;
  transition: 0.4s ease;
  cursor: pointer;
  margin-top: 50px;
}

.card:hover {
  transform: translateY(-16px);
}

/* outer glow frame */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;

  /* brand gradient instead of orange/pink */
  background: linear-gradient(135deg, #c1d83c 0%, #c1d83c 40%, #1a1f22 100%);
}

/* soft glow diffusion */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;

  background: linear-gradient(
    135deg,
    rgba(209, 255, 69, 0.55),
    rgba(209, 255, 69, 0.18),
    rgba(26, 31, 34, 0.4)
  );

  filter: blur(26px);
  opacity: 0.75;
}

/* inner panel */
.card span {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  z-index: 2;

  background: rgba(10, 16, 18, 0.92);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(209, 255, 69, 0.25);
}

/* subtle technical sheen */
.card span::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 55%;

  background: linear-gradient(to right, rgba(255, 255, 255, 0.08), transparent);
}

/* content */
.card .content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 1px;
  color: #c1d83c; /* brand text */
}
.card::before {
  background-size: 140% 140%;
  animation: cardShift 6s ease-in-out infinite alternate;
}

@keyframes cardShift {
  from {
    background-position: left top;
  }
  to {
    background-position: right bottom;
  }
}
/* Make chips behave like your spans but clickable */
.whyus2-chip {
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.whyus2-chip:hover {
  transform: translateY(-1px);
}

/* Active chip state */
.whyus2-chip.is-active {
  border-color: rgba(209, 255, 69, 0.9);
  box-shadow: 0 0 0 6px rgba(209, 255, 69, 0.16);
}

/* logo + label inside the circular card */
.card .content {
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

/* SVG/PNG icon */
.whyus2-card-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  animation: logoFloat 1.6s ease-in-out infinite;
  will-change: transform;
}

/* label */
.whyus2-card-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(209, 255, 69, 0.95);
  opacity: 1;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* right column points */
.whyus2-point {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(14px);
}

.whyus2-point:last-child {
  border-bottom: none;
}

.whyus2-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  margin-top: 8px;
  background: #c1d83c;
  box-shadow: 0 0 0 6px rgba(209, 255, 69, 0.16);
  flex: 0 0 10px;
}

.whyus2-point h3 {
  margin: 0 0 6px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.whyus2-point p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.68);
}

/* =============================
   Tablet
   ============================= */

/* keyframes */
@keyframes logoFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* stronger bounce when chip changes */
.whyus2-card-logo.is-bounce {
  animation: logoBounce 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes logoBounce {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-16px) scale(1.04);
  }
  70% {
    transform: translateY(2px) scale(0.99);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* --- Swap sides on desktop --- */

/* animation stays inside the box */

/* Icon wrapper: fixed size always */
.abt-mission-card .icon {
  width: 100px; /* pick your size */
  height: 100px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  overflow: hidden; /* keeps gif inside */
  border-radius: 12px; /* optional */
}

/* Any icon image inside (png/gif/svg) */
.abt-mission-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* keep full icon visible */
  display: block;
}
/* Target only the trophy */
.abt-mission-card .icon img[src*="Trophy"] {
  transform: scale(0.85);
}

/* Last section of About page */
:root {
  --accent: #c1d83c;
  --ink: #0a1012;
  --muted: rgba(10, 16, 18, 0.62);
  --line: rgba(10, 16, 18, 0.1);

  /* Light theme surfaces (helps accent pop) */
  --page: #ffffff;
  --section: #f6f7f8; /* very light grey */
  --card: rgba(255, 255, 255, 0.75);

  --radius: 18px;
}

.tb-diff.premium {
  background: var(--section);
  padding: clamp(64px, 7vw, 120px) 16px;
}

.tb-container {
  max-width: 1250px;
  margin: 0 auto;
}

/* HEADER */
.tb-kicker {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgb(121, 120, 120);
}

.tb-title {
  font-size: clamp(26px, 3.3vw, 48px);
  margin: 10px 0 14px;
  color: black;
  font-weight: 650;
  line-height: 1.1;
}

.tb-divider {
  width: 90px;
  height: 3px; /* thicker so it shows */
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(209, 255, 69, 0.35); /* subtle pop */
  margin-bottom: clamp(22px, 4vw, 46px);
}

/* ACCORDION WRAP (card-like) */
.tb-accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(10, 16, 18, 0.08);
}

/* ITEM */
.tb-item {
  border-bottom: 1px solid var(--line);
}

.tb-item:last-child {
  border-bottom: none;
}

/* CLICK ROW */
.tb-trigger {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: clamp(16px, 2.2vw, 22px) clamp(14px, 2.2vw, 22px);
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 600;
  color: rgba(10, 16, 18, 0.92);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.tb-trigger:hover {
  background: rgba(209, 255, 69, 0.1);
}

/* ICON (never shrink on mobile) */
.tb-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  position: relative;
  border: 1px solid rgba(10, 16, 18, 0.5);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.tb-icon::before,
.tb-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(10, 16, 18, 0.9);
  transform: translate(-50%, -50%);
}

.tb-icon::before {
  width: 11px;
  height: 2px;
  border-radius: 999px;
}

.tb-icon::after {
  width: 2px;
  height: 11px;
  border-radius: 999px;
}

.tb-item.active .tb-icon {
  transform: rotate(45deg);
  border-color: rgba(10, 16, 18, 0.75);
}

/* PANEL (smooth height animation with JS controlled height) */
.tb-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.42s ease;
}

/* CONTENT */
.tb-panel > * {
  padding: 0 clamp(14px, 2.2vw, 22px) clamp(16px, 2.2vw, 22px);
}

/* GREEN STATEMENT STYLE (more visible on light background) */
.tb-highlight {
  margin: 10px 0 0;
  padding: 12px 14px 12px 16px;
  border-left: 4px solid var(--accent);
  background: rgba(209, 255, 69, 0.16);
  border-radius: 14px;
  color: rgba(10, 16, 18, 0.92);
  line-height: 1.6;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(10, 16, 18, 0.06);
}

/* FOR ITEMS THAT HAVE NO GREEN NOTE */
.tb-empty {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.tb-diff.premium {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* background layer */
.tb-diff.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    /* soft lime glow */
    radial-gradient(
      800px 400px at 10% 20%,
      rgba(209, 255, 69, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 350px at 90% 80%,
      rgba(209, 255, 69, 0.12),
      transparent 65%
    ),
    /* subtle architectural grid */
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);

  background-size:
    auto,
    auto,
    60px 60px,
    60px 60px;
}

/* keep content above */
.tb-diff.premium > .tb-container {
  position: relative;
  z-index: 1;
}
