/* =========================
   GLOBAL ROOT VARIABLES (BRAND ALIGNED)
========================= */

:root {
  /* ---------- BRAND COLORS ---------- */
  --brand-teal: #10b981;
  --brand-cyan: #22d3ee;
  --brand-blue: #0ea5e9;

  --brand-gradient: linear-gradient(135deg, #10b981, #22d3ee, #0ea5e9);

  --brand-gradient-soft: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15),
    rgba(34, 211, 238, 0.12),
    rgba(14, 165, 233, 0.1)
  );

  /* ---------- BACKGROUNDS ---------- */
  --bg-main: #f8fafc; /* Page background */
  --bg-surface: #ffffff; /* Cards */
  --bg-muted: #f1f5f9; /* Light section */
  --bg-dark: #020617; /* Hero dark areas */

  --section-bg: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08),
    rgba(34, 211, 238, 0.06),
    rgba(14, 165, 233, 0.04)
  );

  --hero-breadcrumb-bg: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.22),
    rgba(14, 165, 233, 0.12)
  );

  /* ---------- TEXT ---------- */
  --text-primary: #020617; /* Deep navy */
  --text-secondary: #334155; /* Muted */
  --text-light: #64748b;
  --text-white: #ffffff;

  /* ---------- BORDERS ---------- */
  --border-color: #e2e8f0;

  /* ---------- ACCENTS ---------- */
  --accent-primary: #0ea5e9; /* Main CTA */
  --accent-secondary: #10b981; /* Success / positive */
  --accent-hover: #0284c7;

  --accent-soft: rgba(14, 165, 233, 0.12);
  --accent-glow: rgba(34, 211, 238, 0.35);

  /* ---------- STATUS ---------- */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* ---------- FONTS ---------- */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* ---------- LAYOUT ---------- */
  --container-width: 1200px;

  /* ---------- RADIUS ---------- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  /* ---------- SHADOWS (DEPTH) ---------- */
  --shadow-xs: 0 1px 2px rgba(2, 6, 23, 0.04);
  --shadow-sm: 0 6px 16px rgba(2, 6, 23, 0.08);
  --shadow-md: 0 18px 40px rgba(2, 6, 23, 0.12);

  /* ---------- TRANSITIONS ---------- */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  /* ---------- OVERLAYS ---------- */
  --overlay: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.25),
    rgba(2, 6, 23, 0.55),
    rgba(2, 6, 23, 0.85)
  );

  --dark-overlay: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.8),
    rgba(2, 6, 23, 0.95)
  );
  /* shield */
  --shield-w: 220px;
  --shield-h: 260px;
  /* Shield Component Theme */
  --shield-primary: var(--brand-blue);
  --shield-primary-soft: rgba(14, 165, 233, 0.12);
  --shield-primary-border: rgba(14, 165, 233, 0.28);
  --shield-primary-glow: rgba(34, 211, 238, 0.55);
  --shield-primary-highlight: rgba(16, 185, 129, 0.75);
  --shield-white-border: rgba(255, 255, 255, 0.6);
  --shield-black-shadow: rgba(2, 6, 23, 0.28);
  --rgb-accent-primary: 14, 165, 233;

  /* ===============================
   DASHBOARD VARIABLES
================================ */
  --dash-bg: #020617; /* deep navy */
  --dash-panel: #0b1220; /* cards */
  --dash-border: rgba(255, 255, 255, 0.08);

  --dash-text: #e5e7eb;
  --dash-muted: #94a3b8;

  --dash-primary: var(--brand-blue);
  --dash-success: var(--success);
  --dash-warning: var(--warning);
  --dash-danger: var(--danger);

  --dash-radius: 14px;
}

/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   BODY
========================= */

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   CONTAINER FIX
========================= */

.container {
  max-width: var(--container-width);
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: clamp(56px, 6vw, 96px) 0;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}

p {
  color: var(--text-secondary);
}

/* =========================
   LINKS
========================= */

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-primary);
}

/* =========================
   ROW FIX
========================= */

.row {
  margin-left: 0;
  margin-right: 0;
}

/* =========================
   BUTTONS
========================= */

.btn {
  border-radius: var(--radius-md);
  font-weight: 500;
  padding: 10px 20px;
  transition: var(--transition-medium);
}

/* Primary Button */
.btn-primary {
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: var(--shadow-sm);
}

/* Outline Button */
.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
}

.btn-outline-primary:hover {
  background-color: var(--accent-primary);
  color: var(--text-white);
}
/* =========================
   SCROLL INDICATOR
========================= */

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  opacity: 0.7;
  pointer-events: none;
}

/* Mouse outline */
.scroll-indicator .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  position: relative;
}

/* Mouse wheel */
.scroll-indicator .wheel {
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;

  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 1.6s infinite ease-in-out;
}

/* Arrow */
.scroll-indicator .arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  animation: arrowBounce 1.6s infinite ease-in-out;
}

/* Animations */
@keyframes wheelMove {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* =========================
   CARDS (COMMON USE)
========================= */

.card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

/* =========================
   UTILITIES
========================= */

.text-muted {
  color: var(--text-light) !important;
}

.bg-light-section {
  background-color: var(--bg-muted);
}

/* =========================
   NAVBAR BASE (TOP STATE)
========================= */

.navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}
/* =========================
   NAVBAR SCROLLED STATE
========================= */

.navbar.navbar-scrolled {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);

  /* Optional glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* =========================
   CENTER MENU (DESKTOP)
========================= */

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================
   NAV LINKS + UNDERLINE
========================= */

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary) !important;
}

/* underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* REMOVE underline from dropdown parent */
.nav-dropdown > .nav-link::after {
  display: none;
}

/* =========================
   HAMBURGER
========================= */

.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  left: 0;
  border-radius: 10px;
  transition: 0.35s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ACTIVE → X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* =========================
   DROPDOWN (DESKTOP)
========================= */

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

/* DESKTOP DROPDOWN FIX */
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  min-width: 220px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;

  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Invisible hover bridge */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;
}
/* CUSTOM BULLETS */
.dropdown-menu-custom ul {
  padding-left: 0;
}

.dropdown-menu-custom li {
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.dropdown-menu-custom li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.dropdown-menu-custom a {
  display: block;
  padding: 8px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.dropdown-menu-custom a:hover {
  background: var(--bg-muted);
  color: var(--accent-primary);
}

/* =========================
   LOGO
========================= */

.brand-logo,
.sidebar-logo {
  display: flex;
  align-items: center;
}

.brand-logo img,
.sidebar-logo img {
  height: 36px;
  width: auto;

  /* Default: visible on transparent navbar */
  filter: brightness(1.15) contrast(1.15)
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));

  transition:
    filter 0.35s ease,
    opacity 0.35s ease;
}

.sidebar-logo {
  display: none;
  padding: 0 24px 24px;
}

.sidebar-login {
  display: none;
  padding: 24px;
  margin-top: auto;
}

/* SCROLLED NAVBAR LOGO */
.navbar.navbar-scrolled .brand-logo img {
  filter: brightness(1.15) contrast(1.15)
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

/* MOBILE SIDEBAR LOGO */
.sidebar-logo img {
  filter: brightness(1) contrast(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--bs-box-shadow);
}

/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/test.jpg") center / cover no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

/* SMART OVERLAY (TOP LIGHT, BOTTOM DARK) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 2;
}

/* GRID */
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);

  padding-top: clamp(110px, 16vh, 160px);
  padding-bottom: 48px;
}

/* GLASS PANEL */
.glass-panel {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 18px;

  padding: clamp(24px, 3.2vw, 38px);

  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

/* TEXT */
.hero-content h1 {
  font-size: clamp(1.85rem, 2.8vw, 2.7rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.hero-content p {
  font-size: clamp(0.92rem, 1vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;

  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  border-radius: 999px;
  background: var(--accent-primary);
  color: var(--text-white);
}

/* CTA */
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-actions .btn {
  padding: 9px 20px;
  font-size: 0.9rem;
}
.hero-trust {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* RIGHT VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.shield {
  position: relative;
  width: var(--shield-w);
  height: var(--shield-h);

  border-radius: 20% 20% 50% 50% / 18% 18% 82% 82%;
  background: linear-gradient(
    to top,
    var(--shield-primary-glow),
    rgba(var(--rgb-accent-primary), 0.15)
  );

  transition:
    background 0.45s ease,
    box-shadow 0.45s ease;

  border: 1px solid var(--shield-primary-border);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px var(--shield-white-border);

  cursor: pointer;
  transform-style: preserve-3d;

  animation:
    shieldFloat 6s ease-in-out infinite,
    idlePulse 2.8s ease-out infinite;
}
.shield::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(59, 130, 246, 0.9),
    rgba(59, 130, 246, 0.4)
  );

  clip-path: polygon(0 0, 50% 50%, 50% 100%, 0 100%);
  border-radius: inherit;

  transform: translateX(-18%) translateY(10%) rotateZ(-6deg) scale(0.92);

  transition:
    transform 0.4s var(--ease),
    opacity 0.3s;
  opacity: 0.85;
}

.shield::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(59, 130, 246, 1),
    rgba(59, 130, 246, 0.6)
  );

  clip-path: polygon(50% 0%, 100% 0, 50% 50%, 0 0);
  border-radius: inherit;

  transform: translateY(-22%) rotateZ(5deg) scale(0.9);

  transition:
    transform 0.4s var(--ease),
    opacity 0.3s;
  opacity: 0.85;
}
.shield-control:checked + .shield {
  /* background: #04c4ff; */
  background-color: var(--brand-teal);

  box-shadow:
    0 0 0 1px var(--shield-primary-glow),
    0 0 40px var(--shield-primary-glow),
    0 30px 80px var(--shield-black-shadow);

  animation:
    shieldFloat 6s ease-in-out infinite,
    verifiedPulse 1.2s ease-out 1;
}

.shield-control:checked + .shield::before {
  background: var(--brand-blue);
  transform: none;
  opacity: 1;
}
.shield-control:checked + .shield::after {
  background: var(--brand-cyan);
  transform: none;
  opacity: 1;
}

@keyframes idlePulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(4, 196, 255, 0.35),
      0 20px 60px rgba(0, 0, 0, 0.25);
  }
  70% {
    box-shadow:
      0 0 0 12px rgba(4, 196, 255, 0),
      0 20px 60px rgba(0, 0, 0, 0.25);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(4, 196, 255, 0),
      0 20px 60px rgba(0, 0, 0, 0.25);
  }
}

@keyframes shieldFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px) rotateX(2deg);
  }
  100% {
    transform: translateY(0);
  }
}
.shield-control {
  display: none;
}
.shield-callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  font-size: 13px;
  color: var(--text-white);
  white-space: nowrap;
}
.callout.left {
  flex-direction: row-reverse;
  text-align: right;
}

.callout.left.top {
  top: 34%;
  left: 60%;
}

.callout.right.center {
  top: 45%;
  right: 0;
}

.callout.left.bottom {
  bottom: 40%;
  left: 55%;
}
.callout .line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
/* Order: Top → Center → Bottom */

.shield-control:checked ~ .shield-callouts .callout:nth-child(1) {
  transition-delay: 0.25s;
}

.shield-control:checked ~ .shield-callouts .callout:nth-child(1) .line {
  transition-delay: 0.35s;
}

.shield-control:checked ~ .shield-callouts .callout:nth-child(2) {
  transition-delay: 0.55s;
}

.shield-control:checked ~ .shield-callouts .callout:nth-child(2) .line {
  transition-delay: 0.65s;
}

.shield-control:checked ~ .shield-callouts .callout:nth-child(3) {
  transition-delay: 0.85s;
}

.shield-control:checked ~ .shield-callouts .callout:nth-child(3) .line {
  transition-delay: 0.95s;
}

.callout .text {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--shield-primary-soft);
  border-color: var(--shield-primary-border);

  backdrop-filter: blur(6px);
}
.shield-control:checked ~ .shield-callouts .callout {
  opacity: 1;
  transform: translateY(0);
}

.shield-control:checked ~ .shield-callouts .line {
  transform: scaleX(1);
}
.shield-control:checked + .shield {
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.4),
    0 0 30px rgba(59, 130, 246, 0.35),
    0 30px 80px rgba(0, 0, 0, 0.25);
}
@keyframes verifiedPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
  }
}

.shield-control:checked + .shield {
  animation:
    shieldFloat 6s ease-in-out infinite,
    verifiedPulse 1.2s ease-out 1;
}

/* =========================
   WHY POSTRONIX SECTION
========================= */

.why-postronix {
  background-color: var(--bg-muted);
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.why-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  border: 1px solid var(--border-color);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ICON */
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-primary);
  font-size: 20px;
}

/* TEXT */
.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================
   CORE SERVICES – 3D CAROUSEL
========================= */

.core-services {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
/* BACKGROUND IMAGE */
.core-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px) scale(1.1);
  transition: background-image 0.8s ease;
  z-index: 0;
}

/* DARK OVERLAY */
.core-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
  z-index: 1;
}

/* CONTENT ABOVE */
.core-services .container {
  position: relative;
  z-index: 2;
}
.core-services .section-header h2 {
  color: var(--bg-main);
}
.core-services .section-header p {
  color: var(--bg-main);
}
.section-header {
  margin-bottom: 80px; /* was too tight */
}
/* WRAPPER */
.carousel-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

/* CONTAINER */
.carousel-container {
  width: 260px;
  height: 400px;
  perspective: 1100px;
}

/* CAROUSEL */
.services-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ITEM */
.item-carousel {
  position: absolute;
  width: 260px;
  height: 340px;
  border-radius: 16px;
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  top: 10%;
}

.services-carousel {
  --card-count: 5;
}

.item-carousel:nth-child(1) {
  transform: rotateY(calc(360deg / var(--card-count) * 0)) translateZ(250px);
}
.item-carousel:nth-child(2) {
  transform: rotateY(calc(360deg / var(--card-count) * 1)) translateZ(250px);
}
.item-carousel:nth-child(3) {
  transform: rotateY(calc(360deg / var(--card-count) * 2)) translateZ(250px);
}
.item-carousel:nth-child(4) {
  transform: rotateY(calc(360deg / var(--card-count) * 3)) translateZ(250px);
}
.item-carousel:nth-child(5) {
  transform: rotateY(calc(360deg / var(--card-count) * 4)) translateZ(250px);
}

/* CARD */
.service-card {
  height: 100%;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

/* IMAGE / ICON HEADER */
.card-media {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.service-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* CONTROLS */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.prev-item {
  left: 15%;
}
.next-item {
  right: 15%;
}

.carousel-control:hover {
  background: var(--accent-primary);
  color: var(--text-white);
}

/* SECTION */
/* =========================
   VERTICAL TIMELINE SECTION
========================= */

.how-timeline-section {
  background: var(--bg-muted);
  padding: 70px 0;
  overflow-x: hidden !important; /* ✅ KEY FIX */
}

/* WRAPPER */
.timeline-wrapper {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0;

  /* 🔥 REQUIRED */
  min-height: 480px;
}

/* CENTRAL LINE */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  /* height: 100%; */
  background: repeating-linear-gradient(
    to bottom,
    var(--border-color),
    var(--border-color) 6px,
    transparent 6px,
    transparent 12px
  );
  transform: translateX(-50%);
  overflow: hidden;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background: var(--accent-primary);
  /* transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
   */
  overflow: hidden;
}

/* 🔥 FLOWING LIGHT */
.timeline-progress::after {
  content: "";
  position: absolute;
  left: 0;
  top: -80px;
  width: 100%;
  height: 120px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );

  animation: timelineFlow 1.8s linear infinite;
  pointer-events: none;
}

@keyframes timelineFlow {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(200px);
  }
}

/* TIMELINE ITEM */
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}

.timeline-item.left {
  justify-content: flex-start;
}

.timeline-item.right {
  justify-content: flex-end;
}

/* DOT */
.timeline-dot {
  position: absolute;
  left: 50%;
  width: 11px;
  height: 11px;
  background: var(--bg-surface);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.4s ease;
}

/* CARD */
.timeline-card {
  width: 320px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
  /* opacity: 0.35; */
  transform: translateY(12px);
  /* transition: all 0.4s ease; */
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* .timeline-item.left .timeline-card {
  margin-right: calc(50% + 30px);
}

.timeline-item.right .timeline-card {
  margin-left: calc(50% + 30px);
} */

/* LEFT cards start from left */
.timeline-item.left .timeline-card {
  transform: translateX(-80px) translateY(12px);
}

/* RIGHT cards start from right */
.timeline-item.right .timeline-card {
  transform: translateX(80px) translateY(12px);
}

.timeline-item:nth-child(1) .timeline-card {
  transition-delay: 0.05s;
}
.timeline-item:nth-child(2) .timeline-card {
  transition-delay: 0.08s;
}
.timeline-item:nth-child(3) .timeline-card {
  transition-delay: 0.11s;
}
.timeline-item:nth-child(4) .timeline-card {
  transition-delay: 0.14s;
}

/* ACTIVE STATE */
.timeline-item.active .timeline-card {
  opacity: 1;
  /* transform: translateY(0); */
  transform: translateX(0) translateY(0);
  border-color: var(--accent-primary);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.18);
}

.timeline-item.active .timeline-dot {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}
/* =========================
   INDUSTRY SOLUTIONS – SLIDER
========================= */

.industry-solutions {
  background: var(--accent-primary-soft);
  padding: clamp(70px, 6vw, 100px) 0;
}

/* WRAPPER */
.industry-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* SLIDER */
.industry-slider {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}

.industry-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

/* CARD */
.industry-card {
  min-width: 280px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
  text-align: center;
  transition: var(--transition-medium);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-primary);
}

/* ICON */
.industry-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-primary-soft);
  border-radius: 50%;
  font-size: 22px;
  color: var(--accent-primary);
  transition: var(--transition-medium);
}

.industry-card:hover .industry-icon {
  background: var(--accent-primary);
  color: var(--text-white);
}

/* TEXT */
.industry-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* NAV BUTTONS */
.industry-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-medium);
}

.industry-nav:hover {
  background: var(--accent-primary);
  color: var(--text-white);
}

.industry-nav.prev {
  margin-right: 12px;
}

.industry-nav.next {
  margin-left: 12px;
}

/* =========================
   VERIFY STATUS CTA
========================= */

.verify-status-cta {
  background: var(--section-bg);
  padding: clamp(60px, 6vw, 100px) 0;
}

.verify-cta-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(-100px);
  transition:
    opacity 0.7s ease,
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
/* Active / Visible state */
.verify-cta-box.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.verify-cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 14px;
  color: var(--text-primary);
}

.verify-cta-box p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* CTA Button polish */
.verify-cta-box .btn {
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 999px;
}
.verify-status-cta,
.final-cta {
  overflow-x: hidden;
}
/* =========================
   FAQ SECTION
========================= */

.faq-section {
  background: var(--bg-surface);
}

/* FAQ LIST */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid var(--border-color);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;

  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-question i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
  opacity: 0;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
/* =========================
   FINAL CTA SECTION (COMPACT)
========================= */

.final-cta {
  background: var(--section-bg);

  padding: 60px 0; /* ⬅ reduced */
}

/* CTA BOX */
.cta-box-final {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 36px; /* ⬅ reduced */

  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(100px); /* ← start from left */
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Visible state */
.cta-box-final.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* TEXT */
.cta-box-final h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); /* ⬅ smaller */
  margin-bottom: 14px;
  color: var(--text-primary);
}

.cta-box-final p {
  max-width: 600px;
  margin: 0 auto 28px; /* ⬅ tighter */
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* BUTTON */
.cta-box-final .btn {
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* =========================
   404 ERROR PAGE
========================= */

.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--section-bg);
  overflow: hidden;
}

.error-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Illustration */
.error-illustration {
  text-align: center;
}

.error-illustration img {
  max-width: 100%;
  width: 420px;
  animation: float404 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes float404 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Content */
.error-content h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.error-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 28px;
}

/* Actions */
.error-actions {
  display: flex;
  gap: 14px;
}

.error-actions .btn {
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 500;
}
/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px;
  font-size: 0.9rem;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* BRAND */
.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-tag {
  font-size: 0.75rem;
  color: var(--accent-primary);
  font-weight: 500;
}

/* COLUMNS */
.footer-col h5 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--accent-primary);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom span {
  color: var(--text-muted);
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--accent-primary);
  color: var(--text-white);
}

#page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0b1220, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-inner {
  position: relative;
  width: 160px;
  height: 160px;
}

/* BOTH SVGs overlap */
.loader-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  transform-origin: center;
}

/* STAGE 1 */
#logo-animated {
  opacity: 1;
  transform: scale(1);
}

/* STAGE 2 */
#logo-final {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(6px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

/* FINAL MORPH STATE */
#logo-final.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Fade animated logo */
#logo-animated.fade-out {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(6px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    filter 0.5s ease;
}
/* =========================
   CONTACT HERO (PARALLAX)
========================= */

.contact-hero {
  position: sticky;
  top: 0;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* Background layer */
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-breadcrumb-bg);
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}
/* Text stays sharp */
/* .contact-hero .hero-content {
  padding-top: 120px; 
} */
.contact-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
}

.contact-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  position: relative;
  z-index: 2;
  padding: 50px 0 80px;
  background: linear-gradient(
    to bottom,
    var(--bg-page, var(--bg-surface)),
    var(--text-white)
  );
  margin-top: -120px; /* 👈 overlap hero */
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.06);
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-md);
}

/* MAP */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.map-wrapper iframe {
  width: 100%;
  height: 240px;
  border: none;
}

/* DETAILS */
.contact-details h5 {
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.contact-details i {
  color: var(--primary);
}

/* SOCIAL */
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* FORM */
.contact-form .form-control {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: transparent;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

/* =========================
   ABOUT HERO
========================= */

.about-hero {
  position: sticky;
  top: 0;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* Background layer */
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-breadcrumb-bg);
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}
.about-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
}

.about-hero p {
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.about-section-bg {
  position: relative;
  z-index: 2;
  /* padding: 50px 0 80px; */
  background: linear-gradient(
    to bottom,
    var(--bg-page, var(--bg-surface)),
    var(--text-white)
  );
  margin-top: -120px; /* 👈 overlap hero */
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.06);
}
/* =========================
   WHO WE ARE SECTION
========================= */

.about-who {
  padding: 90px 0;
  background: var(--bg-muted);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

/* CONTENT */
.who-content {
  max-width: 520px;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.who-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.who-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* POINTS */
.who-points {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.who-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.who-points i {
  color: var(--primary);
  font-size: 1rem;
}

/* IMAGE */
.who-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.who-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================
   OUR IMPACT STRIP
========================= */

.about-impact {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.06),
    rgba(15, 23, 42, 0.02)
  );
}

/* HEADER */
.about-impact .section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.about-impact .section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* CARD */
.impact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);

  opacity: 0;
  transform: translateY(18px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* SHOW */
.impact-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* NUMBER */
.impact-number {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 2;
}

/* LABEL */
.impact-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* =========================
   OUR VALUES SECTION
========================= */

.about-values {
  padding: 90px 0;
  background: var(--bg-base);
}

/* HEADER */
.about-values .section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.about-values .section-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* VALUE CARD */
.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE */
.value-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* TITLE */
.value-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

/* TEXT */
.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* =========================
   WHO WE SERVE
========================= */

.about-serve {
  padding: 90px 0;
  background: linear-gradient(
    to bottom,
    rgba(59, 130, 246, 0.03),
    rgba(59, 130, 246, 0.01)
  );
}

/* HEADER */
.about-serve .section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.about-serve .section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* CARD */
.serve-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);

  opacity: 0;
  transform: translateY(22px);
  transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE */
.serve-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ICON */
.serve-card i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 14px;
}

/* TEXT */
.serve-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* HOVER (subtle trust effect) */
.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

/* =========================
  About FINAL CTA
========================= */

.about-final-cta {
  padding: 90px 0;
  background: linear-gradient(
    to bottom right,
    rgba(59, 130, 246, 0.06),
    rgba(59, 130, 246, 0.015)
  );
}

/* CTA BOX */
.about-cta-box-final {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 42px;

  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);

  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE */
.about-cta-box-final.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* TEXT */
.about-cta-box-final h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-bottom: 14px;
  color: var(--text-primary);
}

.about-cta-box-final p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* BUTTON */
.about-cta-box-final .btn {
  padding: 14px 34px;
  font-weight: 600;
  border-radius: 999px;
}

.about-final-cta {
  overflow-x: hidden;
}
/* =========================
   SERVICE core for all service pages
========================= */
.service-hero {
  padding: 140px 0 90px;
  /* background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(59, 130, 246, 0.04)
  ); */
  position: sticky;
  top: 0;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-breadcrumb-bg);
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}
.service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin-bottom: 14px;
}

.service-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
}

.service-hero p {
  max-width: 620px;
  margin: 16px auto 28px;
  color: var(--text-secondary);
}

/* =========================
   SERVICE SECTIONS
========================= */

.service-section-bg {
  position: relative;
  z-index: 2;
  /* padding: 50px 0 80px; */
  background: linear-gradient(to bottom, var(--bg-page, #f8fafc), #ffffff);
  margin-top: 0px; /* 👈 overlap hero */
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.06);
}
.service-section {
  padding: 90px 0;
}
.first-service-section {
  padding-top: 0px;
}
.first-service-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.first-service-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.bg-muted {
  background: var(--bg-muted);
}
/* =========================
   SERVICE HERO
========================= */

.service-id-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-breadcrumb-bg);
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
/* =========================
   PROCESS SECTION ANIMATION
========================= */

.process-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* PROCESS CARD */
.process-step {
  opacity: 0;
  transform: translateY(26px);
  transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ICON STYLE */
.process-card i {
  font-size: 1.7rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CARD POLISH */
.process-card {
  transition: all 0.35s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.45);
}

/* SUBTLE STEP FEEL */
.process-card::after {
  content: "";
  position: absolute;
  inset: auto 20% 0 20%;
  height: 3px;
  border-radius: 6px;
  background: linear-gradient(to right, #10b981, #3b82f6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-card:hover::after {
  opacity: 1;
}
/* PROCESS TEXT */
.process-card h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* =========================
   SERVICE SCROLL ANIMATION
========================= */
.service-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* LEFT CONTENT */
.service-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
/* LIST ITEMS */
.service-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}
/* LIST */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  color: var(--accent-primary);
  font-size: 0.95rem;
  align-items: center;
}

.service-list i {
  color: var(--accent-primary);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* FEATURE GRID */
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
/* FEATURE CARDS */
.feature-animate {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-animate.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  transition: all 0.35s ease;
}
.feature-card i {
  font-size: 1.6rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* FEATURE ICONS */
.feature-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 6px;
}
.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

/* PROCESS */
.process-card,
.doc-card,
.audience-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  height: 100%;
}

.process-card i,
.doc-card i,
.audience-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* =========================
   DOCUMENT TYPES ANIMATION
========================= */

.doc-animate {
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.doc-animate.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* DOCUMENT CARD */
.doc-card {
  cursor: default;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

.doc-card i {
  font-size: 1.6rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.doc-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* HOVER FEEL */
.doc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 14px 28px rgba(59, 130, 246, 0.14);
}

/* SOFT GLOW LINE */
.doc-card::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 6px;
  background: linear-gradient(to right, #10b981, #3b82f6);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.doc-card:hover::after {
  opacity: 1;
}
/* =========================
   WHO USES THIS (AUDIENCE)
========================= */
/* SECTION HEADER TEXT */
.about-impact .section-header p,
.service-section .section-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.audience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.95)
  );
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ICON */
.audience-card i {
  font-size: 2rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TITLE */
.audience-card h6 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* HOVER EFFECT */
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.45);
}

/* =========================
  About FINAL CTA
========================= */
/* CTA */
.service-cta {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(59, 130, 246, 0.03)
  );
}

/* CTA BOX */
.service-cta-box-final {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 42px;

  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);

  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE */
.service-cta-box-final.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* TEXT */
.service-cta-box-final h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-bottom: 14px;
  color: var(--text-primary);
}

.service-cta-box-final p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* BUTTON */
.service-cta-box-final .btn {
  padding: 14px 34px;
  font-weight: 600;
  border-radius: 999px;
}

.service-cta {
  overflow-x: hidden;
}

/* =========================
   ADDRESS VERIFICATION HERO
========================= */

/* same css used  */

/* Background layer */
.service-address-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-breadcrumb-bg);
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}

/* =========================
   SUPPORT CORE (GLOBAL)
========================= */
.support-hero {
  padding: 140px 0 90px;
  position: sticky;
  top: 0;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.support-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-breadcrumb-bg);
  will-change: transform;
  z-index: -1;
}

.support-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 14px;
}

.support-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.4px;
}

.support-hero p {
  max-width: 640px;
  margin: 18px auto 30px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* CTA */
.support-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   CONTENT WRAPPER
========================= */
.support-section-bg {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, var(--bg-page, #f8fafc), #ffffff);
  margin-top: 0;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.06);
}

.support-section {
  padding: 90px 0;
}

.first-support-section {
  padding-top: 20px;
  margin-top: -60px;
}

.first-support-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.first-support-section p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* =========================
   LISTS & NOTES
========================= */
.support-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.support-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.support-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.support-note {
  margin-top: 24px;
  background: var(--bg-muted);
  border-left: 4px solid var(--accent-primary);
  padding: 18px 20px;
  border-radius: 12px;
}

.support-note p {
  margin: 0;
  font-size: 0.98rem;
}

.support-note a {
  color: var(--accent-primary);
  font-weight: 600;
}

/* =========================
   PRIVACY / TERMS / DPDP
========================= */
.support-privacy-hero-bg,
.support-terms-hero-bg,
.support-help-hero .support-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--accent-soft);
  z-index: -1;
}

.support-dpdp-hero .support-eyebrow {
  color: var(--accent-success);
}

/* =========================
   PRIVACY CONTENT
========================= */
.privacy-content {
  margin: 0 auto;
  max-width: 920px;
}

.privacy-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.privacy-content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.45rem;
  font-weight: 800;
}

.privacy-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.privacy-content ul {
  margin-left: 20px;
  margin-top: 12px;
}

.privacy-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* =========================
   HELP CENTER / FAQ
========================= */
.support-faq {
  margin-top: 36px;
  display: grid;
  gap: 22px;
}

.faq-item {
  padding: 24px 26px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--dash-border);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.support-brand-note {
  margin-top: 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .support-hero {
    height: auto;
    min-height: unset;
    padding: 110px 0 70px;
  }

  .support-section {
    padding: 70px 0;
  }

  .privacy-content h2 {
    font-size: 1.3rem;
  }
}

/* =========================
   WHAT IS ADDRESS VERIFICATION
========================= */
/* same css used  */

/* DOC / VERIFY CARDS */
.doc-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

/* =========================
   Employee VERIFICATION
========================= */
/* EMPLOYMENT HERO BG */
.service-employment-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.14),
    rgba(59, 130, 246, 0.06)
  );
  z-index: -1;
}

/* =========================
   Alumni VERIFICATION
========================= */
/* Alumni HERO BG */
.service-alumni-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.14),
    rgba(59, 130, 246, 0.06)
  );
  z-index: -1;
}

/* =========================
   Education VERIFICATION
========================= */
/* Education HERO BG */
.service-education-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.14),
    rgba(59, 130, 246, 0.06)
  );
  z-index: -1;
}

/* =========================
   Verify Status PAGE Starts
========================= */
.verifyStatus-hero {
  position: sticky;
  top: 0;
  height: 45vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* Background layer */
.verifyStatus-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-breadcrumb-bg);
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}
.verifyStatus-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
}

.verifyStatus-hero p {
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
/* =========================
   CONTENT OVERLAP WRAPPER
========================= */
.verifyStatus-section-bg {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, var(--bg-surface), var(--bg-main));
  margin-top: -90px;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* =========================
   VERIFY STATUS FORM
========================= */

.verifyStatus-form-section {
  padding: 80px 0;
  background: var(--brand-teal);
}

/* Card */
.verify-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

/* Headings */
.verify-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.verify-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Form */
.verify-card label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.verify-card .form-control {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: transparent;
}

.verify-card .form-control:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
}

/* Toggle */
.verify-toggle {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.verify-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.verify-toggle input {
  accent-color: var(--accent-primary);
}

/* Helper */
.verify-help {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .verify-card {
    padding: 28px;
  }
}
/* =========================
   VERIFY STATUS RESULT
========================= */

.verifyStatus-result-section {
  padding: 70px 0 100px;
  background: var(--accent-soft);
}

/* CARD */
.status-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}

/* HEADER */
.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.status-type {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* BADGE */
.status-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Status Colors */
.status-pending {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.status-progress {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.status-completed {
  background: rgba(22, 163, 74, 0.15);
  color: #15803d;
}

.status-discrepancy {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

.status-unable {
  background: rgba(100, 116, 139, 0.15);
  color: #475569;
}

/* DETAILS */
.status-details {
  border-top: 1px dashed var(--border-color);
  border-bottom: 1px dashed var(--border-color);
  padding: 18px 0;
  margin-bottom: 18px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.detail-row span {
  color: var(--text-secondary);
}

/* SUMMARY */
.status-summary {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .status-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* =========================
   VERIFY STATUS TIMELINE
========================= */

.verifyStatus-timeline {
  padding: 30px 0 80px;
  background: var(--bg-muted);
}

/* CARD */
.verifyStatus-timeline-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}

/* TITLE */
.verifyStatus-timeline-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
}

/* STEPS WRAPPER */
.verifyStatus-timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* CONNECTING LINE */
.verifyStatus-timeline-steps::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

/* STEP */
.verifyStatus-timeline-step {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 1;
}

/* DOT */
.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-color);
  margin: 0 auto 8px;
}

/* LABEL */
.step-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* COMPLETED */
.verifyStatus-timeline-step.completed .step-dot {
  background: var(--success);
  border-color: var(--success);
}

.verifyStatus-timeline-step.completed .step-label {
  color: var(--text-primary);
}

/* ACTIVE */
.verifyStatus-timeline-step.active .step-dot {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.15);
}

.verifyStatus-timeline-step.active .step-label {
  color: var(--primary);
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .verifyStatus-timeline-steps {
    flex-direction: column;
    gap: 22px;
  }

  .verifyStatus-timeline-steps::before {
    display: none;
  }

  .verifyStatus-timeline-step {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .step-dot {
    margin: 0;
  }
}

/* =========================
   VERIFY STATUS ERROR
========================= */

.verifyStatus-error {
  padding: 40px 0 80px;
}

/* CARD */
.error-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ICON */
.error-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-icon i {
  color: var(--warning);
  font-size: 1.4rem;
}

/* TEXT */
.error-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.error-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* HINTS */
.error-hints {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.error-hints li {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* ACTION */
.error-actions {
  display: flex;
  justify-content: center;
}
/* =========================
   VERIFY STATUS HELP
========================= */

.verifyStatus-help {
  padding: 70px 0;
}

.help-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 38px 36px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.06),
    rgba(59, 130, 246, 0.02)
  );
  border-radius: var(--radius-lg);
}

.help-card h4 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.help-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 26px;
}

/* ACTIONS */
.help-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   VERIFY STATUS LOADING
========================= */

.verify-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Spinner */
.verify-loading .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   Verify Status PAGE End
========================= */

/* =========================
   AUTH PAGES (LOGIN / REGISTER)
========================= */

.auth-page {
  padding: 120px 0;
  background: var(--brand-gradient);
}

.auth-wrapper {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: authFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* LEFT BRAND */
.auth-brand {
  background: linear-gradient(
    160deg,
    rgba(59, 130, 246, 0.12),
    rgba(59, 130, 246, 0.04)
  );
  padding: 60px;
}

.auth-brand-inner h2 {
  font-weight: 700;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-brand-inner p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.auth-points {
  list-style: none;
  padding: 0;
}

.auth-points li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.auth-points i {
  color: var(--accent-primary);
}

/* FORM SIDE */
.auth-form-wrap {
  padding: 60px;
}

.auth-form-card h3 {
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-subtitle {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.form-section {
  margin-bottom: 28px;
}

.form-section-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-primary);
}

.auth-checkbox {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.auth-checkbox a {
  color: var(--accent-primary);
  text-decoration: none;
}

.auth-footer {
  margin-top: 22px;
  text-align: center;
  font-size: 0.9rem;
}
/* =========================
   PREMIUM AUTH ENHANCEMENTS
========================= */

/* Entrance animation */
/* .auth-wrapper {
  animation: authFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1);
} */

@keyframes authFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form card polish */
.auth-form-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
}

/* Inputs */
.auth-form .form-control {
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.auth-form .form-control:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

/* Better spacing */
.form-group {
  margin-bottom: 18px;
}

/* Password field */
.password-wrapper {
  position: relative;
}

.password-wrapper .form-control {
  padding-right: 46px;
}

.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.toggle-password:hover {
  color: var(--accent-primary);
}

/* Checkboxes */
.auth-checkbox input {
  accent-color: var(--accent-primary);
}

/* CTA Button */
.form-actions .btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.form-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

/* Footer */
.auth-footer a {
  font-weight: 600;
}

.form-error {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}

.form-control.is-invalid {
  border-color: #dc2626;
  background-image: none;
}
.password-strength {
  margin-top: 6px;
}

.strength-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}

.strength-bar span {
  display: block;
  height: 100%;
  width: 0%;
  transition: width 0.3s ease;
}

.strength-text {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
}

/* Colors */
.strength-weak span {
  width: 33%;
  background: #ef4444;
}
.strength-medium span {
  width: 66%;
  background: #f59e0b;
}
.strength-strong span {
  width: 100%;
  background: #10b981;
}
/* =========================
   TOAST NOTIFICATIONS
========================= */

#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  min-width: 280px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;

  opacity: 0;
  transform: translateX(30px);
  animation: toast-in 0.35s ease forwards;
}

.toast-success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.toast-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast-icon {
  font-size: 1.2rem;
}

@keyframes toast-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateX(30px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .auth-page {
    padding: 80px 0;
  }

  .auth-form-wrap {
    padding: 40px 26px;
  }
}

/* =========================
   VERIFY EMAIL PAGE
========================= */

.verify-email-hero {
  padding: 100px 0 60px;
  background: var(--hero-breadcrumb-bg);
}

.verify-email-hero h1 {
  font-weight: 700;
}

.verify-email-hero p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--text-secondary);
}

.verify-email-section {
  padding: 60px 0 120px;
}

.verify-email-card {
  max-width: 420px;
  margin: -80px auto 0;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.verify-email-card h4 {
  font-weight: 600;
  margin-bottom: 6px;
}

.verify-email-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* OTP INPUTS */
.otp-inputs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.otp-box {
  width: 52px;
  height: 58px;
  font-size: 1.4rem;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  outline: none;
  transition: all 0.25s ease;
}

.otp-box:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.otp-box.is-invalid {
  border-color: var(--danger);
}

.otp-footer {
  margin-top: 22px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===============================
   DASHBOARD LAYOUT
================================ */
/* ===============================
   DASHBOARD TEXT OVERRIDES
================================ */
.dashboard-body .dash-main {
  background: var(--dash-bg);
  color: var(--dash-text);
}

.dashboard-body .dash-main h1,
.dashboard-body .dash-main h2,
.dashboard-body .dash-main h3,
.dashboard-body .dash-main h4,
.dashboard-body .dash-main h5,
.dashboard-body .dash-main h6,
.dashboard-body .dash-main p,
.dashboard-body .dash-main span {
  color: var(--dash-text);
}

.dash-layout {
  display: flex;
  min-height: 100vh;
  background: var(--dash-bg);
  color: var(--dash-text);
}

.dash-main {
  flex: 1;
  padding: 28px;
  overflow-x: hidden;
}
/* ===============================
   DASHBOARD SIDEBAR
================================ */
.dash-sidebar {
  width: 260px;
  background: linear-gradient(180deg, #0f172a, #020617);
  border-right: 1px solid var(--dash-border);
  padding: 24px 18px;
}

.dash-sidebar-logo {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.dash-sidebar-logo a {
  display: flex;
  align-items: center;
}

.dash-sidebar-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px;
}

.dash-app-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--dash-text);
}
.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--dash-muted);
  text-decoration: none;
  transition: all 0.25s ease;
}

.dash-nav a:hover,
.dash-nav a.active {
  background: rgba(59, 130, 246, 0.15);
  color: var(--dash-text);
}
/* ===============================
   DASHBOARD HEADER
================================ */
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.dash-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.dash-user-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-user-name {
  font-size: 14px;
  color: var(--dash-muted);
  line-height: 1;
}
.dash-header h1 {
  font-size: 24px;
  font-weight: 600;
}

.dash-header-actions {
  display: flex;
  gap: 12px;
}
/* ===============================
   DASHBOARD STATS
================================ */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}

.dash-stat {
  background: var(--dash-panel);
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius);
  padding: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.dash-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.35);
}

.dash-stat-label {
  font-size: 13px;
  color: var(--dash-muted);
}

.dash-stat-value {
  font-size: 26px;
  font-weight: 600;
  margin-top: 6px;
}
/* ===============================
   STATUS BADGES
================================ */
.dash-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.dash-status-success {
  background: rgba(34, 197, 94, 0.15);
  color: var(--dash-success);
}

.dash-status-warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--dash-warning);
}

.dash-status-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--dash-danger);
}
/* ===============================
   DASHBOARD CARDS
================================ */
.dash-card {
  background: var(--dash-panel);
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius);
  padding: 22px;
  margin-bottom: 26px;
}

.dash-card-header {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}
/* ===============================
   DASHBOARD TABLE
================================ */
.dash-table {
  width: 100%;
  border-collapse: collapse;
}

.dash-table th,
.dash-table td {
  padding: 14px;
  border-bottom: 1px solid var(--dash-border);
  text-align: left;
  font-size: 14px;
}

.dash-table th {
  color: var(--dash-muted);
  font-weight: 500;
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .dash-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    transform: translateX(-100%);
    z-index: 1150;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dash-sidebar.open {
    transform: translateX(0);
  }

  .dash-main {
    padding: 20px;
  }
}

/* ===============================
   MOBILE SIDEBAR TOGGLE
================================ */

.dash-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--dash-panel);
  border: 1px solid var(--dash-border);
  color: var(--dash-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.45);
}

.dash-mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.dash-mobile-toggle.left {
  left: 18px;
  right: auto;
}

/* ===============================
   MOBILE SIDEBAR OVERLAY
================================ */

.dash-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ===============================
   MOBILE SIDEBAR MODE
================================ */

@media (max-width: 991px) {
  .dash-mobile-toggle {
    display: flex;
  }

  .dash-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    transform: translateX(-100%);
    z-index: 1150;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dash-sidebar.open {
    transform: translateX(0);
  }

  .dash-mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

/* ===============================
   AUTH LOGIN WRAPPER
================================ */
.auth-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-bg);
  padding: 50px 24px;
}

/* ===============================
   LOGIN CARD
================================ */
.auth-login-card {
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===============================
   LEFT VISUAL SIDE
================================ */
.auth-login-visual {
  background: var(--brand-gradient);
  color: var(--text-white);
  padding: 48px;
  display: flex;
  align-items: center;
}

.auth-visual-content {
  max-width: 360px;
}

.auth-brand-logo {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
}

.auth-login-visual h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}

.auth-login-visual p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ===============================
   RIGHT FORM SIDE
================================ */
.auth-login-form {
  padding: 48px 42px;
}

.auth-form-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.auth-form-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* ===============================
   FORM ELEMENTS
================================ */
.auth-form .form-group {
  margin-bottom: 18px;
}

.auth-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.auth-login-form .auth-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-size: 14px;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* ===============================
   BUTTON
================================ */
.auth-btn-primary {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}

/* ===============================
   EXTRA LINKS
================================ */
.auth-alt-link {
  margin-top: 18px;
  font-size: 13px;
  text-align: center;
  color: var(--text-light);
}

.auth-alt-link a {
  color: var(--accent-primary);
  font-weight: 500;
  text-decoration: none;
}

.auth-alt-link a:hover {
  text-decoration: underline;
}

/* ============================
   FORGOT PASSWORD
============================ */

.auth-forgot-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: var(--accent-soft);
}

.auth-forgot-card {
  width: 100%;
  max-width: 980px;
  background: var(--dash-panel);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--dash-border);
}

/* Steps */
.forgot-step {
  animation: fadeIn 0.4s ease;
}

.forgot-step h3 {
  color: var(--text-white);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .auth-forgot-card {
    grid-template-columns: 1fr;
  }

  .auth-login-visual {
    display: none;
  }
}
/* ============================
   RESET PASSWORD UI
============================ */

.reset-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(
    80% 80% at 50% 20%,
    rgba(59, 130, 246, 0.12),
    transparent 60%
  );
}

.reset-card {
  width: 100%;
  max-width: 460px;
  background: var(--dash-panel);
  border-radius: 18px;
  border: 1px solid var(--dash-border);
  padding: 34px 32px 36px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.45);
  animation: resetFade 0.4s ease;
}

@keyframes resetFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.reset-header {
  text-align: center;
  margin-bottom: 28px;
}

.reset-header h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dash-text);
}

.reset-header p {
  font-size: 14px;
  color: var(--dash-muted);
}

/* Groups */
.reset-group {
  margin-bottom: 22px;
}

.reset-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--dash-muted);
}

/* Password field */
.reset-password-wrap {
  position: relative;
}

.reset-password-wrap input {
  width: 100%;
  padding: 12px 42px 12px 14px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--dash-border);
  color: var(--dash-text);
  font-size: 14px;
}

.reset-password-wrap input:focus {
  outline: none;
  border-color: var(--brand-blue);
}

/* Toggle eye */
.reset-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--dash-muted);
  cursor: pointer;
}

.reset-toggle:hover {
  color: var(--dash-text);
}

/* Strength */
.reset-strength {
  margin-top: 8px;
}

.reset-strength-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.reset-strength-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--dash-danger);
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.reset-strength-text {
  font-size: 12px;
  margin-top: 4px;
  color: var(--dash-muted);
}

/* Button */
.reset-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.reset-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .auth-login-card {
    grid-template-columns: 1fr;
  }

  .auth-login-visual {
    display: none;
  }

  .auth-login-form {
    padding: 36px 28px;
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   RESPONSIVE MIN WIDTH 992
========================= */

@media (min-width: 992px) {
  .nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown:hover i {
    transform: rotate(180deg);
  }

  .nav-dropdown:hover .dropdown-menu-custom li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-dropdown:hover .dropdown-menu-custom li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .nav-dropdown:hover .dropdown-menu-custom li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .nav-dropdown:hover .dropdown-menu-custom li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .nav-dropdown:hover .dropdown-menu-custom li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .nav-dropdown:hover .dropdown-menu-custom li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .dropdown-menu-custom::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 24px;

    width: 16px;
    height: 16px;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);

    transform: rotate(45deg);
  }
}

/* =========================
   RESPONSIVE MAX WIDTH 992
========================= */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .glass-panel {
    padding: 24px;
  }
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }
  /* section 2 */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   RESPONSIVE MAX WIDTH 991
========================= */

@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .nav-center {
    position: fixed;
    inset: 0 auto 0 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-surface);
    border-right: 1px solid var(--border-color);
    padding-top: 20px;

    transform: translateX(-100%);
    transition: transform 0.45s ease;
    z-index: 1200;

    display: flex;
    flex-direction: column;
    /* ✅ IMPORTANT */
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-center.open {
    transform: translateX(0);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 20px;
    padding-left: 24px;
    flex-grow: 1;
  }

  .nav-link {
    opacity: 0;
    transform: translateX(-16px);
    transition: all 0.35s ease;
  }

  .nav-center.open .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-link::after {
    display: none;
  }

  .desktop-login {
    display: none;
  }

  .sidebar-logo,
  .sidebar-login {
    display: block;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu-custom {
    position: static;
    border: none;
    box-shadow: none;

    padding: 0;
    margin: 0;

    max-height: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;

    transition: max-height 0.35s ease;
  }

  .nav-dropdown.open .dropdown-menu-custom {
    max-height: 500px;
    padding-left: 12px;
    margin-top: 8px;
  }

  .nav-dropdown.open i {
    transform: rotate(180deg);
  }
  .nav-dropdown.open .dropdown-menu-custom li {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE MAX WIDTH MOBILE
========================= */
@media (max-width: 768px) {
  /* MOBILE SCROLL INDICATOR */
  .scroll-indicator {
    display: none;
  }

  /* MOBILE HERO */
  .hero-section {
    min-height: 92vh;
    height: auto;
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .hero-grid {
    padding-top: 60px;
  }

  .hero-bg {
    background-attachment: scroll; /* fixes iOS issues */
  }

  /* MOBILE CAROUSEL */
  .carousel-container {
    perspective: none;
    width: 100%;
    height: auto;
  }

  .services-carousel {
    transform: none !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .item-carousel {
    position: static;
    transform: none !important;
    width: 100%;
    height: auto;
  }

  .carousel-control {
    display: none;
  }
  .core-bg {
    filter: none;
    opacity: 0.15;
  }

  /* MOBILE TIMELINE */
  .timeline-line {
    left: 24px;
    transform: none;
  }

  .timeline-dot {
    left: 20px;
    transform: none;
  }

  .timeline-item {
    justify-content: flex-start !important;
  }

  .timeline-card {
    width: 100%;
    margin-left: 72px !important;
    padding: 18px;
  }
  .timeline-wrapper {
    padding: 30px 0;
  }

  .timeline-item {
    margin-bottom: 56px;
  }

  /* MOBILE INDUSTRY SLIDER */
  .industry-slider {
    position: relative;
  }
  .industry-slider-wrapper {
    overflow: hidden;
  }

  .industry-track {
    gap: 16px;
  }
  .industry-card {
    min-width: 240px;
  }

  .industry-nav {
    display: none;
  }

  /* MOBILE VERIFY CTA */
  .verify-cta-box {
    padding: 32px 24px;
  }

  .verify-cta-box p {
    font-size: 0.95rem;
  }

  /* MOBILE CTA */
  .final-cta {
    padding: 48px 0;
  }

  .cta-box-final {
    padding: 36px 22px;
  }

  /* MOBILE FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  /* MOBILE ERROR PAGE */
  .error-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .error-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .error-illustration img {
    width: 320px;
  }

  .contact-hero {
    height: 50vh;
  }

  .contact-section {
    margin-top: -80px;
    border-radius: 28px 28px 0 0;
  }

  .about-hero {
    height: 50vh;
    /* padding: 110px 0 60px; */
  }
  .about-section-bg {
    margin-top: -80px;
    border-radius: 28px 28px 0 0;
  }

  .about-who {
    padding: 70px 0;
    border-radius: 28px 28px 0 0;
  }

  .who-content {
    max-width: 100%;
  }

  .about-impact {
    padding: 60px 0;
  }

  .impact-card {
    padding: 16px 12px;
  }

  .about-values {
    padding: 70px 0;
  }

  .value-card {
    padding: 26px;
  }

  .about-serve {
    padding: 70px 0;
  }
  .about-final-cta {
    padding: 70px 0;
  }

  .about-cta-box-final {
    padding: 40px 26px;
  }

  .process-card {
    text-align: center;
  }

  .audience-card {
    padding: 28px 20px;
  }

  .doc-card {
    padding: 22px 16px;
  }
  .service-final-cta {
    padding: 70px 0;
  }

  .service-cta-box-final {
    padding: 40px 26px;
  }
  .service-hero {
    height: 60vh;
    padding: 75px 0 90px;
  }
  .service-section-bg {
    border-radius: 28px 28px 0 0;
  }

  .verifyStatus-hero {
    height: 40vh;
    min-height: 320px;
  }
  .verifyStatus-section-bg {
    margin-top: -60px;
    border-radius: 26px 26px 0 0;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
}
