/* =========================
   RESET + FOUNDATION
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #001354;
  --primary-light: #394fab;
  --secondary: #eaeefe;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;

  --container: 1200px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* =========================
   BUTTONS
========================= */
.btn,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.85rem 1.5rem;
  border-radius: 12px;

  font-size: 0.95rem;
  font-weight: 600;

  transition: all var(--transition);
}

.btn-primary,
.cta-button {
  background: linear-gradient(180deg, #001354 0%, #394fab 156.57%);
  color: white;

  box-shadow:
    inset 4px 4px 4px rgba(72, 98, 186, 0.8),
    0 8px 20px rgba(0, 19, 84, 0.2);
}

.btn-primary:hover,
.cta-button:hover {
  transform: translateY(-2px);
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  transition: all 0.3s ease;
}

.navbar-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 78px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(17, 24, 39, 0.9);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.65);
  letter-spacing: 1px;
}

/* MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.8);
  transition: color var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
}

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* TOGGLE ANIMATION */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .nav-menu {
    gap: 1.2rem;
  }

  .nav-menu a {
    font-size: 0.88rem;
  }

  .cta-button {
    padding: 0.75rem 1rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .logo-main {
    font-size: 0.9rem;
  }

  .logo-sub {
    font-size: 0.62rem;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;

    padding: 1.5rem;

    /* background: rgba(255, 255, 255, 0.88); */
    background: #ffffff;

    /* backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%); */

    border-bottom: 1px solid rgba(255, 255, 255, 0.22);

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .cta-button {
    width: 100%;
    max-width: 220px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .navbar-container {
    min-height: 70px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .menu-toggle span {
    width: 20px;
  }
}

/* --------------------------- */
/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  overflow: hidden;

  background: linear-gradient(180deg, #eaeefe 0%, #dbe4ff 45%, #c7d6ff 100%);

  padding-top: 140px;
  padding-bottom: 80px;

  min-height: 100vh;

  display: flex;
  align-items: center;
}

.hero-container {
  width: min(100% - 2rem, 1360px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;

  max-width: 760px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  white-space: nowrap;
  max-width: fit-content;

  padding: 0.55rem 1rem;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);

  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;

  margin-bottom: 1.25rem;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-title {
  white-space: nowrap;
  font-size: clamp(2.5rem, 3.6vw, 4.6rem);
  line-height: 1.08;
  font-weight: 800;
  color: #111827;
  max-width: none;
}

.hero-title span.highlight {
  white-space: nowrap;
}

.hero-title span.highlight {
  white-space: nowrap;
}
/* .hero-title br:first-of-type {
  display: none;
} */

.hero-title .highlight {
  color: var(--primary);
}

.hero-description {
  max-width: 560px;

  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: #4b5563;

  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: #111827;
  font-weight: 600;
}

.arrow {
  transition: transform 0.3s ease;
}

.btn-secondary:hover .arrow {
  transform: translateX(4px);
}

/* =========================
   HERO VISUAL
========================= */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateX(-60px);
}

.container-visual {
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 620px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAIN IMAGE */
.container-main {
  width: clamp(460px, 48vw, 700px);
  max-width: none;
  height: auto;

  position: relative;
  z-index: 2;

  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.2));
}

/* DECORATIONS */
.container-decoration {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

/* CYLINDER */
.decoration-1 {
  width: clamp(130px, 14vw, 220px);

  top: -3%;
  left: -4%;

  z-index: 2;
}

/* HALF TORUS */
.decoration-2 {
  width: clamp(140px, 15vw, 240px);

  bottom: 3%;
  right: 0%;

  transform: rotate(20deg);
  z-index: 3;
}

/* =========================
   LARGE LAPTOP / DESKTOP
========================= */
@media (max-width: 1366px) {
  .container-main {
    width: clamp(580px, 70vw, 900px);
  }

  .decoration-1 {
    top: -7%;
    left: 3%;
    z-index: 2;
  }

  .decoration-2 {
    bottom: 4%;
    right: 7%;
  }
}

/* =========================
   TABLET / SMALL LAPTOP
========================= */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }

  .hero-content {
    align-items: left;
    order: 1;
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 5px;
  }

  .hero-title {
    white-space: normal;
    max-width: 760px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-buttons {
    align-items: center;
    justify-content: center;
  }

  .hero-visual {
    order: 2;
    width: 100%;
  }

  .container-visual {
    min-height: 460px;
    max-width: 100%;
  }

  .container-main {
    width: min(90vw, 760px);
  }

  .decoration-1 {
    width: 142px;
    top: -14%;
    left: 12%;
  }

  .decoration-2 {
    width: 149px;
    bottom: 0%;
    right: 16%;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .container-visual {
    min-height: 380px;
  }

  .container-main {
    width: min(92vw, 620px);
  }

  .decoration-1 {
    width: 100px;
    top: -11%;
    left: 10%;
  }

  .decoration-2 {
    width: 110px;
    bottom: 4%;
    right: 14%;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
  }

  /* FIX LABEL OVERFLOW */
  .hero-label {
    white-space: normal;
    max-width: 100%;
    width: 100%;

    font-size: 0.72rem;
    line-height: 1.4;
    padding: 0.55rem 0.8rem;
  }

  /* FIX TITLE */
  .hero-title {
    white-space: normal;
    max-width: 100%;

    font-size: 2rem;
    line-height: 1.15;
  }

  /* FIX DESCRIPTION */
  .hero-description {
    max-width: 100%;
    width: 100%;

    font-size: 0.95rem;
    line-height: 1.6;
    padding-inline: 0.25rem;
  }

  /* FIX BUTTONS */
  .hero-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 0.8rem;
    margin-bottom: 0;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
  }

  /* VISUAL SHIFT RIGHT */
  .hero-visual {
    transform: translateX(28px);
    width: 100%;
  }

  .container-visual {
    min-height: 300px;
    width: 100%;
  }

  .container-main {
    width: 95vw;
  }

  .decoration-1 {
    width: 70px;
    top: -1%;
    left: 12%;
    z-index: 2;
  }

  .decoration-2 {
    width: 80px;
    bottom: 8%;
    right: 13%;
  }
}

/* =========================
   EXPORT SECTION
========================= */
.export {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;

  background: linear-gradient(180deg, #f8fafc 0%, #e9efff 100%);
}

.export-container {
  width: 100%;
  max-width: none;
  padding: 0;
  text-align: center;
}

.section-pill--blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-inline: auto;
  margin-bottom: 1rem;

  padding: 0.65rem 1.25rem;

  background: linear-gradient(180deg, #edf4ff 0%, #dfeaff 100%);
  color: #1e3a8a;

  border: 1px solid rgba(233, 233, 233, 0.18);
  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;

  width: fit-content;
}

.export-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

/* =========================
   SCROLLER
========================= */
.export-scroller {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

/* soft edge fade */
.export-scroller::before,
.export-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.export-scroller::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 250, 252, 1),
    rgba(248, 250, 252, 0)
  );
}

.export-scroller::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(248, 250, 252, 1),
    rgba(248, 250, 252, 0)
  );
}

.export-track {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  width: max-content;

  animation: export-bounce 22s ease-in-out infinite;
  will-change: transform;
}

.export-scroller:hover .export-track {
  animation-play-state: paused;
}

/* =========================
   CARD
========================= */
.export-card {
  flex: 0 0 auto;

  width: clamp(280px, 24vw, 420px);
  min-height: 520px;

  padding: 2rem;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(200, 214, 255, 0.8);

  box-shadow: 0 18px 50px rgba(59, 130, 246, 0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  text-align: center;

  transition: transform 0.3s ease;
}

.export-card:hover {
  transform: translateY(-8px);
}

.export-card-media {
  width: 100%;
  height: 260px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 2rem;
}

.export-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.export-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin-bottom: 1rem;
}

.export-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}

/* =========================
   ANIMATION
========================= */
@keyframes export-bounce {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(calc(-100% + 100vw));
  }

  60% {
    transform: translateX(calc(-100% + 100vw));
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================
   LARGE DESKTOP
========================= */
@media (min-width: 1600px) {
  .export-card {
    width: 420px;
  }
}

/* =========================
   LAPTOP
========================= */
@media (max-width: 1366px) {
  .export-track {
    gap: 1.5rem;
    animation-duration: 32s;
  }

  .export-card {
    width: 340px;
    min-height: 480px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .export-track {
    animation-duration: 28s;
  }

  .export-card {
    width: 300px;
    min-height: 440px;
    padding: 1.5rem;
  }

  .export-card-media {
    height: 220px;
  }

  .export-card h3 {
    font-size: 1.3rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .export-track {
    gap: 1rem;
    animation-duration: 24s;
  }

  .export-card {
    width: 85vw;
    min-height: 420px;
  }

  .export-scroller::before,
  .export-scroller::after {
    width: 40px;
  }

  .export-track {
    animation-duration: 25s;
  }
}

/* =========================
   ABOUT SECTION
========================= */
.about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #ffffff;
}

.about-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* VISUAL */
.about-visual {
  opacity: 0;
  transform: translateX(-80px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.about-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* COPY */
.about-copy {
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #0f172a;
  margin: 1rem 0 1.5rem;
}

.about-lead,
.about-body {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  color: #334155;
}

.about-lead {
  margin-bottom: 1rem;
}

/* ACTIVE STATE */
.about.animate-in .about-visual {
  opacity: 1;
  transform: translateX(0);
}

.about.animate-in .about-copy {
  opacity: 1;
  transform: translateX(0);
}

/* TABLET */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-visual {
    display: flex;
    justify-content: center;
  }

  .about-copy {
    max-width: 760px;
    margin-inline: auto;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about {
    padding: 70px 0;
  }

  .about-copy h2 {
    font-size: 2.5rem;
  }

  .about-lead,
  .about-body {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-visual img {
    max-width: 320px;
  }
}

/* =========================
   SERVICES SECTION
========================= */
.services {
  position: relative;
  overflow: hidden;

  padding: clamp(80px, 10vw, 140px) 0;

  background: linear-gradient(180deg, #eef3ff 0%, #e4ecff 100%);
}

.services-container {
  width: 100%;
  max-width: none;
  text-align: center;
}

.section-pill--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.65rem 1.25rem;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);

  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 600;

  margin-bottom: 0.25rem;
}

.services-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;

  margin-bottom: clamp(2rem, 4vw, 4rem);
}

/* =========================
   SCROLLER
========================= */
.services-scroller {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.services-scroller::before,
.services-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.services-scroller::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(238, 243, 255, 1),
    rgba(238, 243, 255, 0)
  );
}

.services-scroller::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(238, 243, 255, 1),
    rgba(238, 243, 255, 0)
  );
}

/* =========================
   TRACK
========================= */
.services-track {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  width: max-content;

  animation: services-bounce 22s ease-in-out infinite;
  will-change: transform;
}

.services-scroller:hover .services-track {
  animation-play-state: paused;
}

@keyframes services-bounce {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(calc(-100% + 100vw));
  }

  60% {
    transform: translateX(calc(-100% + 100vw));
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================
   CARD
========================= */
.service-card {
  flex: 0 0 auto;

  width: clamp(300px, 32vw, 520px);
  min-height: 180px;

  padding: 2rem;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.85);

  border: 1px solid rgba(200, 214, 255, 0.8);

  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.06);

  display: flex;
  align-items: center;
  gap: 1.5rem;

  text-align: left;
}

.service-card-media {
  flex-shrink: 0;
  width: 130px;
  height: 130px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.service-card-body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.service-card-body p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
}

/* =========================
   LAPTOP
========================= */
@media (max-width: 1366px) {
  .service-card {
    width: 460px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .services-track {
    animation-duration: 18s;
  }

  .service-card {
    width: 380px;
    min-height: 160px;
    padding: 1.5rem;
  }

  .service-card-media {
    width: 100px;
    height: 100px;
  }

  .service-card-body h3 {
    font-size: 1.4rem;
  }

  .service-card-body p {
    font-size: 0.95rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .services-track {
    gap: 1rem;
    animation-duration: 15s;
  }

  .service-card {
    width: 88vw;
    min-height: auto;

    flex-direction: column;
    text-align: center;
  }

  .service-card-media {
    width: 120px;
    height: 120px;
  }

  .services-scroller::before,
  .services-scroller::after {
    width: 40px;
  }
}

/* =========================
   WHY CHOOSE
========================= */
.why-choose {
  padding: clamp(60px, 112vw, 200px) 0;
  background: #ffffff;
  overflow: visible;
  position: relative;
  /* z-index: 2; */
}

.why-choose-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  text-align: center;
}

.why-choose-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;
  margin: 0.3rem 0 1.5rem;
}

/* GRID AREA */
.why-choose-grid {
  position: relative;
  width: 100%;
  height: 700px;
}

/* CARD */
.why-card {
  width: 280px;
  min-height: 330px;
  padding: 2rem;

  border-radius: 24px;
  background: #dfe7ff;
  color: #0f172a;
  text-align: left;

  position: absolute;
  top: 30%;
  left: 50%;

  opacity: 0;

  transform: translate(-50%, -50%) rotate(var(--stack-rotate)) scale(0.92);

  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.why-card:nth-child(4) {
  grid-column: 1;
  justify-self: end;
}

.why-card:nth-child(5) {
  grid-column: 2;
  justify-self: start;
}

/* FEATURED CARD */
.why-card--featured {
  background: url("media/Card-bg.png") center/cover no-repeat;
  color: white;
}

/* STACK START */
.why-card:nth-child(1) {
  --stack-rotate: -8deg;
  z-index: 5;
}
.why-card:nth-child(2) {
  --stack-rotate: -4deg;
  z-index: 4;
}
.why-card:nth-child(3) {
  --stack-rotate: 0deg;
  z-index: 3;
}
.why-card:nth-child(4) {
  --stack-rotate: 4deg;
  z-index: 2;
}
.why-card:nth-child(5) {
  --stack-rotate: 8deg;
  z-index: 1;
}

/* ICON */
.why-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 1rem;
  min-height: 96px;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.65;
}

/* ACTIVE */
.why-choose.animate-in .why-card {
  opacity: 1;
}

/* TOP ROW */
.why-choose.animate-in .why-card:nth-child(1) {
  transform: translate(-460px, -180px);
}

.why-choose.animate-in .why-card:nth-child(2) {
  transform: translate(-150px, -180px);
}

.why-choose.animate-in .why-card:nth-child(3) {
  transform: translate(160px, -180px);
}

/* BOTTOM ROW */
.why-choose.animate-in .why-card:nth-child(4) {
  transform: translate(-305px, 250px);
}

.why-choose.animate-in .why-card:nth-child(5) {
  transform: translate(5px, 250px);
}

/* DEAL TIMING */
.why-choose.animate-in .why-card:nth-child(1) {
  transition-delay: 0.05s;
}
.why-choose.animate-in .why-card:nth-child(2) {
  transition-delay: 0.15s;
}
.why-choose.animate-in .why-card:nth-child(3) {
  transition-delay: 0.25s;
}
.why-choose.animate-in .why-card:nth-child(4) {
  transition-delay: 0.35s;
}
.why-choose.animate-in .why-card:nth-child(5) {
  transition-delay: 0.45s;
}
/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .why-choose {
    padding: 80px 0;
  }

  .why-choose-grid {
    position: static !important;
    height: auto !important;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .why-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;

    transform: none !important;
    opacity: 1 !important;

    width: 100% !important;
    max-width: none !important;
    min-height: auto !important;

    padding: 1.5rem;
  }

  .why-card h3 {
    min-height: auto !important;
    font-size: 1.4rem;
  }

  .why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .why-choose-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    justify-items: center !important;
  }

  .why-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;

    width: 100% !important;
    max-width: 340px !important;
    min-height: auto !important;

    transform: none !important;
    opacity: 1 !important;

    margin: 0 auto !important;
  }

  .why-card:nth-child(1),
  .why-card:nth-child(2),
  .why-card:nth-child(3),
  .why-card:nth-child(4),
  .why-card:nth-child(5) {
    grid-column: auto !important;
    justify-self: center !important;
  }
}
/* =========================
   OVERVIEW
========================= */
.overview {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, #eef3ff 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.overview-container {
  width: min(100% - 2rem, 1000px);
  margin-inline: auto;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.overview-copy {
  max-width: 900px;
}

.overview-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;

  margin: 1rem 0 2rem;

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* TYPEWRITER BODY */
.overview-body {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.9;
  color: #334155;

  max-width: 900px;

  opacity: 0;
  transform: translateY(20px);

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

/* ACTIVE */
.overview.animate-in h2 {
  opacity: 1;
  transform: translateY(0);
}

.overview.animate-in .overview-body {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .overview {
    padding: 70px 0;
  }

  .overview-copy h2 {
    margin-bottom: 1.5rem;
  }

  .overview-body {
    line-height: 1.8;
  }
}

/* =========================
   MISSION VISION VALUES
========================= */
.mvv {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #ffffff;
}

.mvv-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  text-align: center;
}

.mvv-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;
  margin: 0.5rem 0 2.5rem;
}

/* WRAPPER */
.mvv-wrapper {
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
  padding-bottom: 140px;
}

/* MAIN CARD */
.mvv-card {
  background: url("media/mvv-bg.png") center/cover no-repeat;

  border-radius: 28px;
  padding: clamp(2rem, 4vw, 4rem);

  text-align: left;

  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.08);
}

.mvv-block {
  display: flex;
  flex-direction: column;
}

.mvv-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.mvv-heading img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.mvv-heading h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #0f172a;
}

.mvv-block p {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.8;
  color: #334155;
}

.mvv-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.973);
  margin: 2rem 0;
}

/* CORE VALUES */
.core-values-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: min(90%, 700px);
  z-index: 3;
}

.core-values-card img {
  width: 100%;
  display: block;
}

/* TABLET */
@media (max-width: 1024px) {
  .mvv-wrapper {
    padding-bottom: 120px;
  }

  .core-values-card {
    width: min(92%, 620px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .mvv {
    padding: 70px 0;
  }

  .mvv-title {
    margin-bottom: 2rem;
  }

  .mvv-card {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .mvv-heading {
    gap: 0.65rem;
  }

  .mvv-heading h3 {
    font-size: 1.2rem;
  }

  .mvv-block p {
    line-height: 1.7;
  }

  .mvv-wrapper {
    padding-bottom: 90px;
  }

  .core-values-card {
    width: 95%;
    bottom: 0;
  }
}

/* =========================
   CERTIFICATIONS
========================= */
.certifications {
  position: relative;
  overflow: hidden;

  padding: clamp(80px, 10vw, 140px) 0;

  background: linear-gradient(180deg, #f7f9ff 0%, #edf2ff 100%);
}

/* GLOW BG */
.certifications::before {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  left: 50%;
  top: 70%;

  transform: translate(-50%, -50%);
  border-radius: 50%;

  background: linear-gradient(
    180deg,
    #a97bff 0%,
    rgba(111, 178, 255, 0.46) 100%
  );

  filter: blur(120px);
  z-index: 0;
}

.certifications-container {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  text-align: center;
}

.certifications-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;
  margin: 0.5rem 0 1rem;
}

.certifications-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #334155;
  margin-bottom: 4rem;
}

/* GRID */
.certifications-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

/* CARD */
.cert-card {
  width: 340px;
  min-height: 250px;
  padding: 2rem;
  text-align: left;

  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0.68)
  );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 2px solid #ffffff;

  background-clip: padding-box;

  box-shadow:
    0 24px 60px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.45);

  position: relative;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.cert-card:hover {
  transform: translateY(-8px);
}

/* TILT */
.cert-card-1 {
  transform: rotate(-4deg);
}

.cert-card-2 {
  transform: rotate(4deg);
}

.cert-card-3 {
  transform: rotate(-3deg);
}

.cert-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.cert-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-card li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;

  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
}

.cert-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1d4ed8;
  font-weight: 700;
}

/* TABLET */
@media (max-width: 1024px) {
  .certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .cert-card {
    width: 100%;
    transform: none !important;
  }

  .cert-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin-inline: auto;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .certifications {
    padding: 70px 0;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .cert-card {
    width: 100%;
    max-width: 420px;
    min-height: auto;
    margin-inline: auto;
    transform: none !important;
  }

  .cert-card:last-child {
    grid-column: auto;
    max-width: 420px;
  }

  .certifications::before {
    width: 320px;
    height: 320px;
    filter: blur(80px);
  }
}

/* =========================
   COLLABORATE
========================= */
.collab {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, #eef3ff 0%, #f8fbff 100%);
  overflow: hidden;
}

.collab-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.collab-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* LEFT */
.collab-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;
  margin-bottom: 2rem;
}

/* FORM */
.collab-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(203, 213, 225, 0.7);
  background: rgba(255, 255, 255, 0.92);

  border-radius: 12px;
  padding: 0.95rem 1rem;

  font-size: 0.95rem;
  font-family: inherit;

  outline: none;

  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.full {
  width: 100%;
}

/* RIGHT */
.collab-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.collab-visual img {
  width: clamp(240px, 28vw, 420px);
  height: auto;
  object-fit: contain;

  animation: floatChat 5s ease-in-out infinite;
}

@keyframes floatChat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .collab-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .collab-copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .collab-visual {
    order: -1;
  }

  .collab-visual img {
    width: clamp(220px, 40vw, 320px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .collab {
    padding: 70px 0;
  }

  .collab-copy h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.85rem 0.9rem;
  }

  .collab-visual img {
    width: 220px;
  }
}
/* =========================
   FOOTER
========================= */
.site-footer {
  background: url("media/Footer-L.png") center/cover no-repeat;
  color: #ffffff;
  padding: clamp(70px, 9vw, 120px) 0;
  overflow: hidden;
  position: relative;
}

.footer-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* =========================
   BRAND
========================= */
.footer-brand {
  display: flex;
  flex-direction: column;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;

  border-radius: 14px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-logo-main {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
}

.footer-logo-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
}

/* TAGLINE */
.footer-tagline {
  max-width: 340px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
   HEADINGS
========================= */
.footer-contact h3,
.footer-links h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: #ffffff;
}

/* =========================
   CONTACT
========================= */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;

  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.footer-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 3px;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  opacity: 0.75;
}

/* =========================
   LINKS
========================= */
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.75;
  transform: translateX(4px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-links {
    grid-column: span 2;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0;
    background-position: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .footer-logo-icon {
    width: 56px;
    height: 56px;
  }

  .footer-logo-main {
    font-size: 1.5rem;
  }

  .footer-logo-sub {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-contact h3,
  .footer-links h3 {
    margin-bottom: 1.2rem;
  }

  .footer-contact-list li {
    justify-content: center;
    text-align: left;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-links a:hover {
    transform: none;
  }
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-wrapper {
  position: fixed;
  right: 24px;
  bottom: 24px;

  display: flex;
  align-items: center;
  gap: 12px;

  z-index: 9999;
}

/* TOOLTIP */
.whatsapp-tooltip {
  position: relative;

  background: #ffffff;
  color: #0f172a;

  padding: 14px 22px;
  border-radius: 16px;

  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;

  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);

  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;

  transition: all 0.3s ease;
}

/* tooltip arrow */
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;

  transform: translateY(-50%);

  width: 0;
  height: 0;

  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
}

/* BUTTON */
.whatsapp-float {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #25d366;
  color: white;

  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

/* HOVER */
.whatsapp-wrapper:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.45);
}

/* MOBILE */
@media (max-width: 768px) {
  .whatsapp-wrapper {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}
