:root {
  --brand-primary: #9fd8d3;
  --brand-secondary: #7fb8b3;
  --brand-accent: #5fe1d6;

  --brand-gradient: linear-gradient(135deg, #5fe1d6, #7fb8b3, #9fd8d3);

  --brand-accent-soft: rgba(95, 225, 214, 0.12);
  --brand-accent-strong: rgba(95, 225, 214, 0.35);

  /* =====================================================
     2. SEMANTIC COLORS (Consulting Dashboards)
     ===================================================== */

  --color-success: #4ade80;
  --color-warning: #facc15;
  --color-danger: #f87171;
  --color-info: #60a5fa;

  /* =====================================================
     3. NEUTRAL SYSTEM — Deep Enterprise Contrast
     ===================================================== */

  --neutral-950: #02030f;
  --neutral-900: #05061a;
  --neutral-850: #0b0d2a;
  --neutral-800: #101235;
  --neutral-700: rgba(15, 18, 50, 0.85);

  --neutral-500: #8f96aa;
  --neutral-300: #d1d5db;
  --neutral-200: #e5e7eb;
  --neutral-100: #ffffff;

  /* =====================================================
     4. SURFACE SYSTEM — Premium Layers
     ===================================================== */

  --surface-base: #ffffff;

  --surface-deep: var(--neutral-900);

  --surface-elevated: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.05)
  );

  --surface-glass: rgba(10, 12, 40, 0.75);
  --surface-glass-light: rgba(255, 255, 255, 0.6);

  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-border-strong: rgba(255, 255, 255, 0.15);

  /* =====================================================
     5. TYPOGRAPHY SYSTEM — Consulting Grade
     ===================================================== */

  --font-display: "Gill Sans", "Gill Sans MT", Calibri, "Segoe UI", sans-serif;
  --font-body: "Gill Sans", "Gill Sans MT", Calibri, "Segoe UI", sans-serif;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-dark: var(--neutral-800);

  /* =====================================================
     6. SPACING SYSTEM — Clean Rhythm
     ===================================================== */

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* =====================================================
     7. LAYOUT
     ===================================================== */

  --size-header: 72px;
  --size-logo: 52px;
  --container-max: 1280px;

  /* =====================================================
     8. RADIUS SYSTEM
     ===================================================== */

  --radius-sm: 0.4rem;
  --radius-md: 0.65rem;
  --radius-lg: 0.9rem;
  --radius-xl: 1.25rem;
  --radius-pill: 999px;

  /* =====================================================
     9. SHADOW SYSTEM — Premium Depth
     ===================================================== */

  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-elevated: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-deep: 0 40px 100px rgba(0, 0, 0, 0.5);

  --shadow-glow: 0 0 30px rgba(95, 225, 214, 0.25);

  /* =====================================================
     10. MOTION SYSTEM — Smooth + Premium
     ===================================================== */

  --transition-fast: 0.18s ease-out;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  --float-duration: 6s;
}

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

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

/* =========================================================
   BASE
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--surface-base);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* Improved scale */

h1 {
  font-size: clamp(2.8rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.25rem;
}

/* Body */

p,
span,
li,
a {
  font-size: 0.98rem;
  color: inherit;
}

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

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

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

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

ul,
ol {
  list-style: none;
}

/* =========================================================
   SELECTION
   ========================================================= */

::selection {
  background: var(--brand-accent);
  color: #001;
}

/* =========================================================
   MEDIA
   ========================================================= */

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

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

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

/* =========================================================
   PREMIUM ADDITIONS (NEW)
   ========================================================= */

/* Glass Card */

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

/* Elevated Card */

.card-elevated {
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  transition: transform var(--transition-base);
}

.card-elevated:hover {
  transform: translateY(-6px);
}

/* Gradient Text */

.text-gradient {
  background: var(--brand-gradient);
  -webkit-text-fill-color: transparent;
}

/* Section spacing */

.section {
  padding: var(--space-3xl) 6%;
}

/* Container */

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

/* ======================================================
   TOP HEADER — MODERN CONSULTING STRIP
====================================================== */

.top-header {
  position: sticky;
  top: 0;

  background: linear-gradient(
    120deg,
    rgba(2, 6, 23, 0.95),
    rgba(4, 10, 40, 0.92),
    rgba(2, 6, 23, 0.95)
  );

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

  border-bottom: 1px solid var(--surface-border);

  color: var(--neutral-200);
  font-size: 12.5px;

  padding: 10px 0;

  z-index: 1030;

  overflow: hidden;
  text-align: justify;
}

/* =========================================
   SUBTLE ACCENT FLOW (REFINED)
========================================= */

.top-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--brand-accent),
    transparent
  );

  opacity: 0.25;

  animation: headerGlow 8s linear infinite;
}

@keyframes headerGlow {
  0% {
    transform: translateX(0);
    opacity: 0.15;
  }
  50% {
    transform: translateX(30%);
    opacity: 0.45;
  }
  100% {
    transform: translateX(60%);
    opacity: 0.15;
  }
}

/* =========================================
   LEFT INFO
========================================= */

.top-info {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 24px);
  flex-wrap: wrap;
}

.top-info .info-item {
  display: flex;
  align-items: center;
  gap: 6px;

  font-weight: var(--weight-medium);
  opacity: 0.8;

  transition: all var(--transition-base);
}

.top-info .info-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.top-info i {
  color: var(--brand-accent);
  font-size: clamp(11px, 0.8vw, 13px);

  transition: all var(--transition-base);
}

.top-info .info-item:hover i {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px var(--brand-accent));
}

/* =========================================
   CENTER MESSAGE
========================================= */

.top-message {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: var(--weight-semibold);
  color: var(--neutral-300);

  letter-spacing: 0.3px;

  position: relative;
  text-align: center;
}

.top-message::before,
.top-message::after {
  content: "";
  width: clamp(20px, 3vw, 40px);
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--brand-primary),
    transparent
  );

  opacity: 0.35;
}

.top-message i {
  color: var(--brand-accent);
  font-size: clamp(11px, 0.8vw, 13px);

  filter: drop-shadow(0 0 6px var(--brand-accent));
}

/* =========================================
   RIGHT SOCIALS
========================================= */

.top-socials {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
}

.top-socials .social-icon {
  width: clamp(28px, 2.5vw, 34px);
  height: clamp(28px, 2.5vw, 34px);

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

  border-radius: var(--radius-md);

  color: var(--neutral-100);

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

  backdrop-filter: blur(6px);

  transition: all var(--transition-smooth);
}

/* HOVER */

.top-socials .social-icon:hover {
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-accent)
  );

  transform: translateY(-3px) scale(1.06);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.35),
    0 0 15px rgba(95, 225, 214, 0.25);

  border-color: transparent;
}

.top-socials .social-icon i {
  font-size: clamp(11px, 0.8vw, 13px);
  transition: transform var(--transition-base);
}

.top-socials .social-icon:hover i {
  transform: scale(1.15);
}

/* =========================================
   EXTRA LARGE SCREENS (≥1400px)
========================================= */

@media (min-width: 1400px) {
  .top-header-inner {
    max-width: 1700px;
  }
}

/* =========================================
   LARGE SCREENS (≤1200px)
========================================= */

@media (max-width: 1200px) {
  .top-header-inner {
    grid-template-columns: 1fr auto 1fr;
  }
}

/* =========================================
   TABLET (≤992px)
========================================= */

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

  .top-info,
  .top-socials {
    justify-content: center;
  }

  .top-message {
    order: 3;
    margin-top: 4px;
  }
}

/* =========================================
   MOBILE (≤768px)
========================================= */

@media (max-width: 768px) {
  .top-header {
    padding: 8px 0;
  }

  .top-info .info-item span {
    display: none; /* Icons only */
  }

  .top-message {
    display: none; /* Cleaner layout */
  }
}

/* =========================================
   SMALL MOBILE (≤480px)
========================================= */

@media (max-width: 480px) {
  .top-socials .social-icon {
    width: 28px;
    height: 28px;
  }
}

/* =========================================
   EXTRA SMALL DEVICES (≤360px)
========================================= */

@media (max-width: 360px) {
  .top-header-inner {
    gap: 6px;
  }

  .top-info {
    gap: 6px;
  }

  .top-socials .social-icon {
    width: 26px;
    height: 26px;
  }
}

/* =========================================
   REDUCED MOTION SUPPORT
========================================= */

@media (prefers-reduced-motion: reduce) {
  .top-header::after {
    animation: none;
  }

  .top-socials .social-icon,
  .top-info .info-item {
    transition: none;
  }
}

/* =========================================
   TOUCH DEVICES (NO HOVER)
========================================= */

@media (hover: none) {
  .top-socials .social-icon:hover,
  .top-info .info-item:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ======================================================
   CORPORATE NAVBAR — CONSULTING PREMIUM
====================================================== */

.corporate-navbar {
  position: sticky;
  top: 50px;
  z-index: 1020;
  background: linear-gradient(
    120deg,
    rgba(2, 6, 23, 0.95),
    rgba(4, 10, 40, 0.92),
    rgba(2, 6, 23, 0.95)
  );
  backdrop-filter: blur(16px);

  border-bottom: 1px solid var(--surface-border);

  padding: 14px 0;

  transition: all var(--transition-base);
}

/* LOGO */

.navbar-brand img {
  height: 44px;
}

.brand-name {
  font-size: 18px;
  letter-spacing: 0.6px;
  color: var(--neutral-100);
}

.brand-tagline {
  display: block;

  font-size: 11px;
  letter-spacing: 1.2px;

  text-transform: uppercase;

  opacity: 0.9;

  color: var(--neutral-100);
}

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

.corporate-navbar .nav-link {
  color: var(--neutral-100);
  font-weight: var(--weight-medium);
  font-size: 15px;

  position: relative;
  padding: 8px 6px;

  transition: all var(--transition-fast);
  text-align: justify;
}

.corporate-navbar .nav-link:hover {
  color: var(--neutral-100);
}

/* UNDERLINE EFFECT */

.corporate-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: var(--brand-accent);
  transition: width var(--transition-base);
}

.corporate-navbar .nav-link:hover::after {
  width: 100%;
}

/* ======================================================
   MEGA MENU (ALL ITEMS)
====================================================== */

.mega-dropdown {
  position: relative;
}

/* DROPDOWN PANEL */

.mega-menu {
  position: absolute;
  top: 120%;
  left: 0;

  min-width: 320px;
  max-width: 500px;

  background: linear-gradient(
    135deg,
    rgba(10, 12, 40, 0.96),
    rgba(12, 16, 60, 0.94)
  );

  backdrop-filter: blur(18px);

  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);

  padding: 22px;

  box-shadow: var(--shadow-elevated);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all var(--transition-base);
}

/* SHOW ON HOVER */

@media (min-width: 992px) {
  .mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ======================================================
   SIMPLE MEGA CONTENT (HOME / ABOUT / INSIGHTS)
====================================================== */

.mega-inner h5 {
  font-size: 16px;
  color: var(--neutral-100);
  margin-bottom: 10px;
}

.mega-inner p {
  font-size: 13px;
  color: var(--neutral-100);
  line-height: 1.6;
  margin-bottom: 18px;
}

.mega-inner ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-inner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--brand-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mega-inner a:hover {
  color: var(--brand-accent);
  transform: translateX(3px);
}

/* ======================================================
   SERVICES — LEVEL 3 MEGA MENU
====================================================== */

.mega-advanced {
  width: 720px;
}

/* GRID */

.mega-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 24px;
  align-items: start;
}

/* ======================================================
   TWO-COLUMN MEGA MENU LAYOUT
====================================================== */

.mega-two-column {
  min-width: 560px;
  max-width: 720px;
  padding: 0;
  overflow: hidden;
}

.mega-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 0;
}

/* ======================================================
   INTRO SECTION (LEFT)
====================================================== */

.mega-intro {
  padding: 26px;
  background: linear-gradient(
    135deg,
    rgba(95, 225, 214, 0.12),
    rgba(95, 225, 214, 0.02)
  );
  border-right: 1px solid var(--surface-border);
}

.mega-intro h5 {
  font-size: 16px;
  color: var(--neutral-100);
  margin-bottom: 10px;
}

.mega-intro p {
  font-size: 13px;
  color: var(--neutral-100);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* CTA inside intro */
.mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--brand-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mega-cta i {
  transition: transform var(--transition-fast);
}

.mega-cta:hover {
  color: var(--neutral-100);
}

.mega-cta:hover i {
  transform: translateX(4px);
}

/* ======================================================
   LINKS SECTION (RIGHT)
====================================================== */

.mega-links {
  padding: 26px;
}

.mega-links h6 {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--neutral-100);
  margin-bottom: 14px;
}

.mega-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--neutral-100);
  text-decoration: none;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 500;
}

.mega-links li a i {
  font-size: 14px;
  opacity: 0.9;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

/* Hover Effect */
.mega-links li a:hover {
  color: var(--neutral-100);
  background: rgba(95, 225, 214, 0.08);
  transform: translateX(4px);
}

.mega-links li a:hover i {
  transform: translateX(4px);
  opacity: 1;
}

/* ======================================================
   MOBILE RESPONSIVENESS
====================================================== */

@media (max-width: 991px) {
  .mega-two-column {
    min-width: 100%;
  }

  .mega-wrapper {
    grid-template-columns: 1fr;
  }

  .mega-intro {
    border-right: none;
    border-bottom: 1px solid var(--surface-border);
  }

  .mega-links li a {
    padding: 12px;
  }
}

/* ======================================================
   CTA BUTTON
====================================================== */

.fintech-btn {
  padding: 10px 18px;

  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-accent)
  );

  color: var(--neutral-100);

  border-radius: var(--radius-pill);

  font-size: 13px;
  font-weight: var(--weight-semibold);

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

  transition: all var(--transition-base);
}

.fintech-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(95, 225, 214, 0.25);
}

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

/* Extra Large Screens */
@media (min-width: 1400px) {
  .corporate-navbar {
    padding: 16px 0;
  }
}

/* Tablet & Mobile */
@media (max-width: 991px) {
  :root {
    --top-header-height: 48px;
  }

  .corporate-navbar {
    padding: 12px 0;
  }

  .navbar-collapse {
    background: rgba(4, 10, 40, 0.98);
    backdrop-filter: blur(18px);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 12px;
  }

  .corporate-navbar .navbar-nav {
    align-items: flex-start;
    gap: 8px;
  }

  .corporate-navbar .nav-link {
    padding: 10px 0;
    width: 100%;
  }

  /* Mobile Mega Menu */
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .mega-wrapper {
    grid-template-columns: 1fr;
  }

  .mega-intro {
    border-right: none;
    border-bottom: 1px solid var(--surface-border);
  }

  .fintech-btn {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 36px;
  }

  .brand-tagline {
    display: none;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .navbar-brand img {
    height: 32px;
  }

  .brand-name {
    font-size: 15px;
  }
}

/* ======================================================
   ACCESSIBILITY & PERFORMANCE
====================================================== */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .corporate-navbar,
  .mega-menu,
  .fintech-btn {
    transition: none;
  }
}

/* Touch devices */
@media (hover: none) {
  .mega-dropdown:hover .mega-menu {
    display: none;
  }

  .fintech-btn:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ======================================================
   HERO CAROUSEL BASE
====================================================== */
.hero-carousel {
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* ======================================================
   HERO SLIDES
====================================================== */
.hero-carousel .hero-slide {
  position: relative;
  height: calc(100vh - 110px); /* FIXED */
  min-height: 550px; /* REDUCED */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.5s ease;
}

.hero-carousel .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.6);
}

/* ======================================================
   OVERLAY
====================================================== */
.hero-carousel .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(2, 6, 23, 0.92) 0%,
    rgba(2, 6, 23, 0.85) 35%,
    rgba(2, 6, 23, 0.75) 60%,
    rgba(2, 6, 23, 0.65) 100%
  );
  pointer-events: none;
}

/* ======================================================
   HEIGHT CONTROL
====================================================== */
.hero-carousel .hero-height {
  position: relative;
  z-index: 2;
  height: calc(100vh - 110px); /* FIXED */
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* IMPROVED */
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 80px 5% 20px; /* ADJUSTED */
}

/* ======================================================
   CONTENT PANEL (GLASS)
====================================================== */
.hero-carousel .hero-content {
  max-width: 720px;
  width: 100%;
}

.hero-carousel .glass-panel {
  background: rgba(10, 16, 40, 0.35);
  backdrop-filter: blur(14px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 30px; /* REDUCED */
  min-height: 350px; /* REDUCED */
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.35s ease;
  margin-top: 3%;
}

.hero-carousel .glass-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* ======================================================
   TYPOGRAPHY
====================================================== */
.hero-carousel .hero-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  line-height: 1.2;
  margin-bottom: 18px;
  word-break: break-word;
  text-align: justify;
}

.hero-carousel .hero-description {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
  display: block;
  text-align: justify;
}

/* ======================================================
   CTA BUTTONS
====================================================== */
.hero-carousel .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-carousel .hero-btn-primary {
  background: var(--brand-primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-carousel .hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-carousel .hero-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-carousel .hero-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ======================================================
   HERO CONTROLS & TABS
====================================================== */
.hero-controls {
  position: absolute;
  bottom: 50px; /* FIXED (was %) */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-tabs {
  display: flex;
  gap: 12px;
}

.hero-tab {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.hero-tab:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.hero-tab.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 0 8px var(--brand-primary);
}

.hero-tab::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-tab.active::after {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.9);
}

/* ======================================================
   GLASS-MORPH BREADCRUMB
====================================================== */
.hero-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(10, 16, 40, 0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 3;
}

@media (min-width: 1400px) {
  /* 🔷 Center hero content instead of pushing left */
  .hero-carousel .hero-height {
    padding-left: 2%;
    padding-top: 1%;
    justify-content: center;
    min-height: 450px;
  }

  /* 🔷 Constrain content width (VERY IMPORTANT) */
  .hero-carousel .hero-content {
    max-width: 900px; /* slightly wider */
  }

  /* 🔷 Bigger, more premium panel */
  .hero-carousel .glass-panel {
    min-height: 450px;
    padding: 50px;
    border-radius: 16px;
  }

  /* 🔷 Improve typography for big screens */
  .hero-carousel .hero-title {
    font-size: 44px;
    line-height: 1.2;
  }

  .hero-carousel .hero-description {
    font-size: 19px;
    line-height: 1.7;
  }

  /* 🔷 Move tabs up and align with content */
  .hero-controls {
    bottom: 60px;
  }

  /* 🔷 Optional: align tabs visually with panel */
  .hero-tabs {
    transform: translateX(0); /* keeps centered but cleaner spacing */
  }
}
/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 992px) {
  .hero-carousel .hero-slide,
  .hero-carousel .hero-height {
    height: auto; /* IMPORTANT */
    min-height: 550px;
  }

  .glass-panel {
    padding: 30px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-slide {
    min-height: 500px;
  }
}

@media (max-width: 576px) {
  .glass-panel {
    padding: 25px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-slide {
    min-height: 400px;
  }
}

@media (max-width: 375px) {
  .glass-panel {
    padding: 20px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-slide {
    min-height: 350px;
  }
}

/* ============================================
IMPACT SECTION
============================================ */
.impact-section {
  padding: 120px 6%;
  background: var(--neutral-100);
  color: var(--neutral-850);
  position: relative;
  overflow: hidden;
}

/* subtle grid overlay */
.impact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
LEFT CONTENT
============================================ */
.impact-section .impact-eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: justify;
}

.impact-section .impact-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: justify;
}

.impact-section .impact-title span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
}

.impact-section .impact-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.impact-section .impact-description {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
  color: var(--neutral-900);
  text-align: justify;

  max-width: 58ch; /* 👈 KEY: controls number of lines */
}

.impact-section .impact-cta {
  color: var(--neutral-900);
  font-weight: 580;
  text-decoration: none;
  border-bottom: 2px solid var(--brand-primary);
  padding-bottom: 3px;
  text-align: justify;
  transition: all 0.3s ease;
}

.impact-section .impact-cta:hover {
  color: var(--brand-primary);
  transform: translateY(-1px);
}

/* ============================================
DASHBOARD PANEL
============================================ */
/* ============================================
DASHBOARD PANEL (HEIGHT REDUCED, WIDTH INCREASED)
============================================ */
.impact-section .impact-dashboard {
  background: rgba(11, 20, 38, 0.945);
  padding: 28px 40px; /* ↓ less vertical, keep horizontal */
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;

  max-width: 700px; /* ↑ wider to preserve text lines */
  margin: 0 auto;
}

.impact-section .impact-dashboard:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* ============================================
MAIN METRIC
============================================ */
.impact-section .impact-main {
  margin-bottom: 28px; /* was 40px */
}

.impact-section .impact-number .counter {
  font-size: clamp(64px, 10vw, 68px);
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
  text-align: justify;
}

.impact-section .impact-number {
  font-size: clamp(64px, 10vw, 68px);
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
  text-align: justify;
}

.impact-section .impact-label {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 12px; /* was 16px */
  color: var(--neutral-100);
  text-align: justify;
}

/* progress bar */
.impact-section .impact-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.impact-section .impact-bar {
  height: 100%;
  background: var(--brand-primary);
  border-radius: 10px;
  transition: width 0.5s ease-in-out;
}

/* ============================================
GRID METRICS
============================================ */
.impact-section .impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; /* was 20px */
}

.impact-section .impact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px; /* was 24px */
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--neutral-100);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.impact-section .impact-card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 16px;
  color: var(--neutral-100);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.impact-section .impact-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

/* numbers inside cards */
.impact-section .impact-small-number {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--brand-primary);
}

.impact-section .impact-small-number .counter {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--brand-primary);
}

@media (max-width: 1400px) {
  .impact-section {
    padding: 110px 5%;
  }

  .impact-section .impact-dashboard {
    max-width: 620px;
    padding: 30px 42px;
  }

  .impact-section .impact-title {
    font-size: 36px;
  }

  .impact-section .impact-number {
    font-size: 64px;
  }
}

@media (max-width: 1199px) {
  .impact-section {
    padding: 100px 5%;
  }

  .impact-section .impact-dashboard {
    max-width: 560px;
    padding: 28px 36px;
  }

  .impact-section .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .impact-section .impact-title {
    font-size: 32px;
  }

  .impact-section .impact-description {
    font-size: 19px;
  }

  .impact-section .impact-number {
    font-size: 58px;
  }
}

@media (max-width: 1199px) {
  .impact-section {
    padding: 100px 5%;
  }

  .impact-section .impact-dashboard {
    max-width: 560px;
    padding: 28px 36px;
  }

  .impact-section .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .impact-section .impact-title {
    font-size: 32px;
  }

  .impact-section .impact-description {
    font-size: 16px;
  }

  .impact-section .impact-number {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .impact-section {
    padding: 80px 5%;
  }

  .impact-section .impact-dashboard {
    max-width: 100%;
    padding: 24px 28px;
  }

  .impact-section .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .impact-section .impact-title {
    font-size: 30px;
  }

  .impact-section .impact-number {
    font-size: 52px;
  }

  .impact-section .impact-main {
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .impact-section {
    padding: 70px 20px;
  }

  .impact-section .impact-dashboard {
    padding: 22px;
    border-radius: 12px;
  }

  .impact-section .impact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .impact-section .impact-title {
    font-size: 26px;
  }

  .impact-section .impact-description {
    font-size: 15px;
  }

  .impact-section .impact-number {
    font-size: 46px;
  }

  .impact-section .impact-small-number {
    font-size: 26px;
  }

  .impact-section .impact-card {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .impact-section {
    padding: 60px 16px;
  }

  .impact-section .impact-dashboard {
    padding: 18px;
  }

  .impact-section .impact-title {
    font-size: 24px;
  }

  .impact-section .impact-number {
    font-size: 40px;
  }

  .impact-section .impact-small-number {
    font-size: 24px;
  }

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

/* =========================
   BASE SECTION
========================= */
.services-flip {
  padding: clamp(80px, 10vw, 120px) 6%;
  background: radial-gradient(circle at top left, #14213d, #0b1426 60%);
  color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

/* =========================
   HEADER
========================= */
.services-flip .services-header {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.services-flip .services-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
}

.services-flip .services-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
}

.services-flip .services-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
}

.services-flip .services-header h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.services-flip .services-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* =========================
   SLIDER WRAPPER (IMPORTANT)
========================= */
.services-slider {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   TRACK
========================= */
.services-track {
  display: flex;
  gap: 36px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  padding: 20px 0;
}

/* =========================
   CARD (2 PER VIEW)
========================= */
.flip-card {
  flex: 0 0 calc(50% - 18px);
  height: 420px;
  perspective: 1400px;
}

/* =========================
   INNER FLIP
========================= */
.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }
}

/* =========================
   FRONT & BACK
========================= */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  backface-visibility: hidden;
}

/* FRONT */
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-front .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.flip-front span {
  font-size: 13px;
  color: var(--brand-secondary);
}

.flip-front h3 {
  font-size: 24px;
}

/* =========================
   BACK
========================= */
.flip-back {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  transform: rotateY(180deg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid var(--brand-secondary);
}

.flip-back span {
  color: var(--brand-secondary);
  font-size: 13px;
}

.flip-back h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.flip-back p {
  margin: 12px 0 18px;
  line-height: 1.6;
  font-size: 15px;
}

/* =========================
   LIST
========================= */
.flip-back ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flip-back ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.flip-back ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--brand-secondary);
  border-radius: 50%;
}

/* =========================
   NAVIGATION
========================= */
.nav-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 45px;
}

.nav-btn {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--brand-accent);
  color: var(--brand-secondary);
  font-size: 18px;
  padding: 14px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 60px;
}

.nav-btn:hover {
  background: var(--brand-primary);
  color: var(--neutral-100);
  transform: translateY(-3px);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .services-slider {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .flip-card {
    flex: 0 0 100%;
  }

  .services-slider {
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .services-flip {
    padding: 80px 20px;
  }

  .services-slider {
    max-width: 100%;
  }
}

/* ======================================================
   EDGE ADVANTAGE — ELITE CONSULTING STYLE
====================================================== */

.edge-advantage {
  padding: 120px 6%;
  background: var(--neutral-100);
  color: var(--neutral-850);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */

.edge-advantage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* ======================================================
   HEADER (STRATEGIC INTRO)
====================================================== */

.edge-advantage .edge-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

/* HEADER */
.edge-advantage .services-header {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.edge-advantage .services-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: justify;
}

.edge-advantage .services-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.edge-advantage .services-header span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
}

.edge-advantage .services-header h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.edge-advantage .services-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* ======================================================
   LAYOUT
====================================================== */

.edge-advantage .edge-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 50px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* ======================================================
   HIGHLIGHT PANEL (GLASS STRATEGY BLOCK)
====================================================== */
/* ======================================================
   IMAGE FEATURE PANEL (REPLACES GLASS CARD)
====================================================== */

.edge-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;

  height: 100%;
  min-height: 420px;

  border: 1px solid var(--surface-border);

  box-shadow: var(--shadow-elevated);
}

/* IMAGE */

.edge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.02);
  transition: transform 0.6s ease;
}

/* DARK GRADIENT OVERLAY */

.edge-image::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(5, 8, 30, 0.2),
    rgba(5, 8, 30, 0.85)
  );

  z-index: 1;
}

/* CONTENT OVERLAY */

.edge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;

  padding: 28px;
  z-index: 2;

  width: 100%;
}

/* TEXT STYLING */

.edge-overlay h3 {
  color: var(--neutral-100);
  margin: 10px 0;
  font-size: 20px;
  font-weight: 580;
}

.edge-overlay p {
  color: var(--neutral-100);
  font-size: 1px;
  line-height: 1.6;
}

/* LINK */

.edge-overlay .edge-link {
  display: inline-block;
  margin-top: 12px;

  color: var(--brand-accent);
  font-size: 13px;

  transition: all var(--transition-fast);
}

.edge-overlay .edge-link:hover {
  transform: translateX(6px);
}

/* HOVER EFFECT */

.edge-image:hover img {
  transform: scale(1.08);
}

/* OPTIONAL: SUBTLE GLOW ON HOVER */

.edge-image:hover {
  box-shadow:
    var(--shadow-elevated),
    0 0 40px rgba(95, 225, 214, 0.15);
}

/* bullet points */

.edge-advantage .edge-points {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.edge-advantage .edge-points li {
  font-size: 16px;
  color: var(--neutral-100);
  position: relative;
  padding-left: 18px;
  text-align: justify;
}

.edge-advantage .edge-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;

  width: 6px;
  height: 6px;

  background: var(--brand-accent);
  border-radius: 50%;
}

/* link */

.edge-advantage .edge-link {
  display: inline-block;
  margin-top: 18px;

  font-size: 16px;
  font-weight: var(--weight-medium);

  color: var(--brand-accent);

  transition: all var(--transition-fast);
}

.edge-advantage .edge-link:hover {
  transform: translateX(6px);
}

/* ======================================================
   GRID
====================================================== */

.edge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* ======================================================
   CARDS (CAPABILITIES)
====================================================== */

.edge-card {
  padding: 22px;
  border-radius: var(--radius-lg);

  background: rgba(11, 20, 38, 0.945);
  border: 1px solid var(--surface-border);

  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

/* glow hover layer */

.edge-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top left,
    rgba(95, 225, 214, 0.08),
    transparent 60%
  );

  opacity: 0;
  transition: opacity var(--transition-base);
}

.edge-card:hover::before {
  opacity: 1;
}

/* hover effect */

.edge-card:hover {
  transform: translateY(-6px);

  border-color: rgba(95, 225, 214, 0.25);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(95, 225, 214, 0.12);
}

/* ======================================================
   ICON
====================================================== */
/* ======================================================
   ICON — CLEAN PREMIUM STYLE (UPDATED)
====================================================== */
.edge-icon {
  width: 44px;
  height: 44px;

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

  margin-bottom: 14px;
}

/* PNG ICON STYLE */
.edge-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;

  transition:
    transform var(--transition-fast),
    filter var(--transition-fast);
}

/* hover effect */
.edge-card:hover .edge-icon img {
  transform: scale(1.12);
  filter: brightness(1.1);
}

/* ======================================================
   TEXT
====================================================== */

.edge-card h4 {
  margin-bottom: 6px;
  font-size: 20px;
  color: var(--neutral-100);
  text-align: justify;
  font-weight: 580;
}

.edge-card p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 16px;
  color: var(--neutral-100);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: visible;
}

/* ======================================================
   ANIMATIONS
====================================================== */

.edge-card,
.edge-highlight {
  animation: fadeUp 0.8s ease both;
}

.edge-card:nth-child(2) {
  animation-delay: 0.1s;
}
.edge-card:nth-child(3) {
  animation-delay: 0.2s;
}
.edge-card:nth-child(4) {
  animation-delay: 0.3s;
}

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

/* ======================================================
   RESPONSIVE SYSTEM — EDGE ADVANTAGE
====================================================== */

/* ===============================
   EXTRA LARGE SCREENS (1400px+)
=============================== */

@media (min-width: 1400px) {
  .edge-advantage {
    padding: 140px 8%;
  }

  .edge-layout {
    grid-template-columns: 1.2fr 1.6fr;
    gap: 60px;
  }

  .edge-card {
    padding: 26px;
  }

  .edge-icon i {
    font-size: 30px;
  }

  .edge-overlay h3 {
    font-size: 22px;
  }
}

/* ===============================
   LARGE DESKTOP (1200px–1399px)
=============================== */

@media (max-width: 1399px) {
  .edge-advantage {
    padding: 120px 6%;
  }

  .edge-layout {
    grid-template-columns: 1.1fr 1.5fr;
    gap: 50px;
  }
}

/* ===============================
   DESKTOP (992px–1199px)
=============================== */

@media (max-width: 1199px) {
  .edge-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }

  .edge-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .edge-image {
    min-height: 380px;
  }
}

/* ===============================
   TABLET (768px–991px)
=============================== */

@media (max-width: 991px) {
  .edge-advantage {
    padding: 90px 5%;
  }

  .edge-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .edge-intro {
    margin-bottom: 45px;
  }

  .edge-image {
    min-height: 360px;
  }

  .edge-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .edge-overlay {
    padding: 22px;
  }
}

/* ===============================
   LARGE MOBILE (576px–767px)
=============================== */

@media (max-width: 767px) {
  .edge-advantage {
    padding: 80px 5%;
  }

  .edge-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .edge-image {
    min-height: 320px;
  }

  .edge-overlay h3 {
    font-size: 18px;
  }

  .edge-overlay p {
    font-size: 14px;
  }

  .edge-card {
    padding: 20px;
  }

  .edge-card h4 {
    font-size: 18px;
  }

  .edge-card p {
    font-size: 15px;
  }
}

/* ===============================
   SMALL MOBILE (≤575px)
=============================== */

@media (max-width: 575px) {
  .edge-advantage {
    padding: 70px 4%;
  }

  .edge-advantage .services-header h2,
  .edge-advantage .services-header span {
    font-size: clamp(22px, 6vw, 32px);
  }

  .edge-advantage .services-header p {
    font-size: 15px;
  }

  .edge-image {
    min-height: 280px;
  }

  .edge-overlay {
    padding: 18px;
  }

  .edge-icon i {
    font-size: 24px;
  }

  .edge-card {
    padding: 18px;
  }
}

/* ===============================
   EXTRA SMALL DEVICES (≤360px)
=============================== */

@media (max-width: 360px) {
  .edge-advantage {
    padding: 60px 4%;
  }

  .edge-grid {
    gap: 12px;
  }

  .edge-card {
    padding: 16px;
  }

  .edge-card h4 {
    font-size: 16px;
  }

  .edge-card p {
    font-size: 14px;
  }

  .edge-icon i {
    font-size: 22px;
  }

  .edge-image {
    min-height: 240px;
  }

  .edge-overlay h3 {
    font-size: 16px;
  }

  .edge-overlay p {
    font-size: 13px;
  }
}

/* ===============================
   TOUCH OPTIMIZATION
=============================== */

@media (hover: none) {
  .edge-card:hover {
    transform: none;
    box-shadow: none;
  }

  .edge-image:hover img {
    transform: none;
  }

  .edge-card:hover .edge-icon i {
    transform: none;
  }
}

/* ===============================
   REDUCED MOTION SUPPORT
=============================== */

@media (prefers-reduced-motion: reduce) {
  .edge-card,
  .edge-image img {
    animation: none !important;
    transition: none !important;
  }
}
/* ======================================================
   INSIGHTS ELITE – MODERN CREATIVE REDESIGN
====================================================== */

.insights-elite {
  padding: clamp(80px, 10vw, 120px) 6%;
  background: radial-gradient(circle at top left, #14213d, #0b1426 60%);
  color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

/* Decorative Glow */
.insights-elite::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(170, 205, 202, 0.25),
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
}

/* HEADER */
.insights-elite .services-header {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.insights-elite .services-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: justify;
}

.insights-elite .services-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.insights-elite .services-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
}

.insights-elite .services-header h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.insights-elite .services-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* ======================================================
   GRID – EVEN & BALANCED
====================================================== */

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch; /* Ensures equal height */
  position: relative;
  z-index: 1;
}

/* ======================================================
   FEATURED INSIGHT
====================================================== */

.insight-feature {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: #0f1b33;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.insight-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insight-feature:hover img {
  transform: scale(1.08);
}

/* Gradient Overlay */
.insight-overlay {
  position: relative;
  width: 100%;
  padding: 30px;
  background: linear-gradient(
    to top,
    rgba(5, 8, 30, 0.95),
    rgba(5, 8, 30, 0.6),
    transparent
  );
  backdrop-filter: blur(2px);
}

.insight-overlay span {
  display: inline-block;
  background: rgba(170, 205, 202, 0.15);
  color: var(--brand-secondary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.insight-overlay h3 {
  font-size: clamp(22px, 2vw, 26px);
  margin: 12px 0;
  font-weight: 600;
}

#case-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, #baede9, #8fd3cf);
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  color: #0b1426;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

#case-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(186, 237, 233, 0.35);
}

/* Progress Bar */
.insight-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
}

#progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #baede9, #aacdca);
  transition: width linear;
}

/* ======================================================
   STREAM – EVEN CARD HEIGHTS
====================================================== */

.insight-stream {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.insight-item {
  flex: 1; /* Ensures equal height distribution */
  padding: 20px;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(170, 205, 202, 0.25);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insight-item span {
  display: inline-block;
  background: rgba(170, 205, 202, 0.12);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}

.insight-item h4 {
  font-weight: 550;
  font-size: 16px;
  line-height: 1.4;
}

/* Hover & Active States */
.insight-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  background: rgba(170, 205, 202, 0.08);
}

.insight-item.active {
  border-color: var(--brand-primary);
  background: linear-gradient(
    135deg,
    rgba(170, 205, 202, 0.18),
    rgba(170, 205, 202, 0.05)
  );
  box-shadow: 0 10px 30px rgba(170, 205, 202, 0.2);
}

/* More Link */
.insight-more {
  margin-top: 10px;
  color: var(--brand-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.insight-more:hover {
  color: var(--brand-primary);
}

/* ======================================================
   PDF PANEL – MODERNIZED
====================================================== */

.pdf-panel {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.pdf-panel.active {
  opacity: 1;
  pointer-events: auto;
}

.pdf-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 30, 0.85);
  backdrop-filter: blur(10px);
}

.pdf-container {
  position: relative;
  width: min(1200px, 95%);
  height: min(90vh, 900px);
  background: #0b1326;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(40px) scale(0.98);
  transition: transform 0.4s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.pdf-panel.active .pdf-container {
  transform: translateY(0) scale(1);
}

#pdfViewer {
  width: 100%;
  height: 100%;
  border: none;
}

.pdf-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: none;
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.pdf-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-feature {
    min-height: 380px;
  }

  .insight-stream {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .insight-item {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .insight-item {
    flex: 1 1 100%;
  }

  .insight-overlay {
    padding: 20px;
  }

  .pdf-container {
    width: 95%;
    height: 85vh;
  }
}

/* =====================================
   CTA CONTACT – UNIFIED MODERN CARD
===================================== */

.cta-contact {
  padding: clamp(80px, 10vw, 120px) 6%;
  background: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow */
.cta-contact::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(170, 205, 202, 0.25),
    transparent 70%
  );
  filter: blur(120px);
  z-index: 0;
}

/* Wrapper */
.cta-contact-wrapper {
  position: relative;
  z-index: 1;
}

/* ======================================================
   UNIFIED CARD
====================================================== */

.cta-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: #0b1426;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Hover Effect */
.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

/* ======================================================
   IMAGE SIDE
====================================================== */

.cta-visual {
  position: relative;
  min-height: 100%;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay for better text harmony */
.cta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 20, 38, 0.1),
    rgba(11, 20, 38, 0.5)
  );
}

/* ======================================================
   CONTENT SIDE
====================================================== */

.cta-content {
  padding: clamp(40px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.cta-eyebrow {
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--brand-secondary);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 15px;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-content p {
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: clamp(16px, 1.2vw, 18px);
}

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

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-primary {
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  color: #0b1426;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 28px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

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

@media (max-width: 992px) {
  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    height: 320px;
  }

  .cta-visual::after {
    background: linear-gradient(
      to top,
      rgba(11, 20, 38, 0.7),
      rgba(11, 20, 38, 0.1)
    );
  }

  .cta-content {
    text-align: center;
    align-items: center;
    padding: 40px 28px;
  }

  .cta-actions {
    justify-content: center;
  }
}
.expert-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

/* Button */
.expert-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.expert-trigger:hover {
  transform: scale(1.05);
}

/* Tooltip */
.expert-tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

/* Tooltip arrow */
.expert-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #111;
}

/* Show tooltip on hover */
.expert-trigger:hover .expert-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   MODERN CREATIVE FOOTER
================================= */

.ea-footer {
  position: relative;
  background: var(--neutral-900);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ea-footer::before,
.ea-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.ea-footer::before {
  width: 260px;
  height: 260px;
  background: rgba(94, 114, 255, 0.18);
  top: -80px;
  left: -60px;
}

.ea-footer::after {
  width: 220px;
  height: 220px;
  background: rgba(0, 255, 200, 0.12);
  right: -60px;
  bottom: -60px;
}

.ea-footer > * {
  position: relative;
  z-index: 2;
}

/* ===============================
   CTA SECTION
================================= */

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 70px 8%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta h3 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.7;
}

/* ===============================
   SUBSCRIBE
================================= */

.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 60px;
  backdrop-filter: blur(14px);
}

.footer-subscribe input {
  width: 260px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 14px 18px;
  font-size: 15px;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-subscribe button {
  border: none;
  padding: 14px 22px;
  border-radius: 40px;
  background: var(--brand-secondary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.footer-subscribe button:hover {
  transform: translateY(-3px) scale(1.02);
}

/* ===============================
   MAIN GRID
================================= */

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 70px;
  padding: 80px 8%;
}

/* ===============================
   BRAND
================================= */

.footer-brand h2 {
  font-size: 30px;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 420px;
}

/* ===============================
   SOCIAL
================================= */

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--brand-primary), #7f5cff);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* keep links one line + equal spacing */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li {
  margin: 0;
}

.footer-col a {
  display: block;
  white-space: nowrap; /* one line */
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 22px; /* equal height */
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* ===============================
   BOTTOM BAR
================================= */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

/* ===============================
   SCROLL TOP
================================= */

.scroll-top {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(135deg, var(--brand-primary), #7f5cff);
  transition: 0.3s ease;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.scroll-top:hover {
  transform: translateY(-4px) rotate(8deg);
}

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

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-subscribe {
    width: 100%;
  }

  .footer-subscribe input {
    flex: 1;
    width: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-subscribe {
    flex-direction: column;
    border-radius: 18px;
    width: 100%;
  }

  .footer-subscribe input,
  .footer-subscribe button {
    width: 100%;
  }
}

.about-section {
  padding: 120px 6%;
  background: var(--neutral-100);
  color: var(--neutral-850);
  position: relative;
}

/* LAYOUT */
.about-section .about-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

/* LEFT */
.about-section .about-left {
  flex: 1;
  min-width: 300px;
}

.about-eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: justify;
}

.about-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: justify;
}

.about-title span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
}

.about-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.about-text {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 30px;

  max-width: 62ch; /* ✅ KEY FIX: forces 4+ line structure */
  text-align: justify;
}

/* RIGHT - VIDEO */
.about-right {
  flex: 1;
  min-width: 300px;
}

/* VIDEO CARD */
.about-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(10, 15, 40, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16 / 9; /* ✅ keeps video perfectly responsive */
}

.about-video-card video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #aacdca;
  border: none;
  color: #0b1326;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.play-btn:hover {
  transform: scale(1.1);
}

/* MODAL */
.video-modal-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal-wrapper.active {
  display: flex;
}

.video-modal {
  width: 80%;
  max-width: 900px;
  position: relative;
}

.video-modal video {
  width: 100%;
  border-radius: 12px;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-video-card video {
    height: 300px;
  }
}

/* ===============================
   LARGE (≤ 1200px)
=============================== */
@media (max-width: 1200px) {
  .about-section {
    padding: 120px 6%;
  }

  .about-section .about-wrapper {
    gap: 60px;
  }
}

/* ===============================
   MEDIUM LARGE (≤ 992px)
   STACK LAYOUT STARTS
=============================== */
@media (max-width: 992px) {
  .about-section .about-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .about-section .about-left,
  .about-right {
    min-width: 100%;
  }

  .about-title {
    font-size: 34px;
  }
}

/* ===============================
   TABLET (≤ 768px)
=============================== */
@media (max-width: 768px) {
  .about-section {
    padding: 100px 5%;
  }

  .about-title {
    font-size: 30px;
  }

  .about-text {
    font-size: clamp(16px, 1.1vw, 18px);
  }

  .play-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* ===============================
   SMALL MOBILE (≤ 576px)
=============================== */
@media (max-width: 576px) {
  .about-section {
    padding: 80px 5%;
  }

  .about-eyebrow {
    font-size: 13px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: clamp(16px, 1.1vw, 18px);
  }
}

/* ===============================
   EXTRA SMALL (≤ 400px)
=============================== */
@media (max-width: 400px) {
  .about-section {
    padding: 70px 4%;
  }

  .about-title {
    font-size: 24px;
  }

  .play-btn {
    bottom: 12px;
    right: 12px;
    padding: 10px;
  }
}
/* =====================================
   GLOBAL STYLES

/* =====================================
   SECTION BASE
===================================== */
.quote-section-modern {
  padding: 140px 6%;
  background: linear-gradient(135deg, #0b1326, #0f1b3d);
  position: relative;
  overflow: hidden;
}

/* =====================================
   WRAPPER
===================================== */
.quote-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

/* =====================================
   PROFILE SIDE
===================================== */
.quote-profile {
  flex: 1;
  min-width: 280px;
}

.profile-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
}

/* Avatar */
.profile-avatar {
  width: 170px;
  height: 170px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(186, 237, 233, 0.2);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Profile Info */
.profile-info h4 {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 5px;
}

.profile-info span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* =====================================
   QUOTE CONTENT
===================================== */
.quote-content {
  flex: 2;
  min-width: 320px;
}

/* Blockquote */
.modern-quote {
  margin: 0;
  position: relative;
}

/* Paragraph with quotation marks */
.modern-quote p {
  position: relative;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  padding: 30px 40px;
  margin: 0;
}

/* Opening quotation mark */
.modern-quote p::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: rgba(186, 237, 233, 0.25);
  font-family: serif;
}

/* Accent Line aligned with paragraph */
.quote-line {
  width: 70px;
  height: 3px;
  margin-top: 2px;
  margin-left: 40px; /* Aligns with paragraph padding */
  background: linear-gradient(90deg, #aacdca, #baede9);
  border-radius: 2px;
}

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

/* Tablets */
@media (max-width: 991px) {
  .quote-section-modern {
    padding: 120px 5%;
  }

  .quote-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .profile-avatar {
    width: 150px;
    height: 150px;
  }

  .modern-quote p {
    padding: 25px 30px;
  }

  .quote-line {
    margin: 20px auto 0; /* Center the line */
  }
}

/* Large Mobile */
@media (max-width: 767px) {
  .quote-section-modern {
    padding: 100px 5%;
  }

  .profile-card {
    padding: 30px 20px;
  }

  .profile-avatar {
    width: 130px;
    height: 130px;
  }

  .modern-quote p::before,
  .modern-quote p::after {
    font-size: 3rem;
    opacity: 0.2;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .quote-section-modern {
    padding: 80px 4%;
  }

  .quote-wrapper {
    gap: 35px;
  }

  .profile-avatar {
    width: 110px;
    height: 110px;
  }

  .profile-info h4 {
    font-size: 1rem;
  }

  .profile-info span {
    font-size: 0.8rem;
  }

  .modern-quote p {
    font-size: 15px;
    line-height: 1.7;
  }

  .modern-quote p::before,
  .modern-quote p::after {
    font-size: 2.5rem;
    opacity: 0.15;
  }

  .quote-line {
    width: 50px;
  }
}

/* Extra Large Screens */
@media (min-width: 1440px) {
  .quote-section-modern {
    padding: 160px 8%;
  }

  .quote-wrapper {
    max-width: 1400px;
    gap: 120px;
  }

  .profile-avatar {
    width: 200px;
    height: 200px;
  }

  .modern-quote p {
    line-height: 2;
  }
}

/* ===============================
VALUES SECTION (CONSULTING STYLE)
=============================== */
/* SECTION */
.values-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.values-header {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.values-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: justify;
}

.values-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.values-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
}

.values-header h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.values-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* GRID: 3 TOP / 3 BOTTOM */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 50px;
}

/* CARD */
.value-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
}

/* NUMBER */
.card-top span {
  font-size: 0.9rem;
  color: #aacdca;
  font-weight: bold;
  letter-spacing: 1px;
}

/* TEXT */
.value-card h4 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
  font-weight: 580;
}

.value-card p {
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* STAGGERED EFFECT FOR BOTTOM ROW */
.value-card:nth-child(4),
.value-card:nth-child(5),
.value-card:nth-child(6) {
  transform: translateY(20px);
}

/* HIGHLIGHT CARD */
.value-card.highlight {
  border: 1px solid rgba(99, 102, 241, 0.5);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15),
    rgba(56, 189, 248, 0.1)
  );
}
/* =====================================
   VALUES SIGNATURE – QUOTATION STYLE
===================================== */

.values-signature {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}

/* Blockquote container */
.signature-quote {
  margin: 0;
  padding: 30px 40px;
  position: relative;
}
/* Quote text */
.signature-quote p {
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
  position: relative;
  color: var(--neutral-100);
  padding-left: 40px; /* creates space for the quote */
}

/* Opening quote */
.signature-quote p::before {
  content: "“";
  position: absolute;
  top: -20px; /* align with text */
  left: -10px; /* inside the paragraph */
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--brand-primary);
  opacity: 0.25;
  font-family: serif;
  line-height: 1;
}

/* Author styling */
.signature-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 0.5px;
}

/* Decorative line above the author */
.signature-quote cite::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 0 auto 12px;
  background: linear-gradient(
    90deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  border-radius: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card:nth-child(4),
  .value-card:nth-child(5),
  .value-card:nth-child(6) {
    transform: none; /* remove stagger on smaller screens */
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

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

/* XLARGE SCREENS (1440px and above) */
@media (min-width: 1440px) {
  .values-section {
    padding: 160px 8%;
  }

  .values-section .container {
    max-width: 1500px;
  }

  .values-grid {
    column-gap: 50px;
    row-gap: 70px;
  }

  .value-card {
    padding: 35px;
  }
}

/* LARGE SCREENS (1200px – 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .values-grid {
    column-gap: 35px;
    row-gap: 60px;
  }
}

/* DESKTOP / MEDIUM SCREENS (992px – 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .values-section {
    padding: 120px 5%;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 50px;
  }
}

/* TABLET (768px – 991px) */
@media (max-width: 991px) {
  .values-section {
    padding: 100px 5%;
  }

  .values-header {
    margin-bottom: 70px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Remove staggered effect */
  .value-card:nth-child(4),
  .value-card:nth-child(5),
  .value-card:nth-child(6) {
    transform: none;
  }

  .values-signature {
    margin-top: 80px;
  }
}

/* LARGE MOBILE (576px – 767px) */
@media (max-width: 767px) {
  .values-section {
    padding: 80px 4%;
  }

  .values-header {
    margin-bottom: 50px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .value-card {
    padding: 25px;
  }

  .values-signature {
    margin-top: 60px;
  }
}

/* SMALL MOBILE (0 – 575px) */
@media (max-width: 575px) {
  .values-section {
    padding: 70px 4%;
  }

  .values-header h2 {
    font-size: 26px;
  }

  .values-header p {
    font-size: 14px;
  }

  .value-card {
    padding: 22px;
    border-radius: 16px;
  }

  .value-card h4 {
    font-size: 1.1rem;
  }

  .value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .values-signature p {
    font-size: 0.9rem;
  }

  .values-signature span {
    font-size: 0.95rem;
  }
}

/* ======================================================
   LOCATIONS – MODERN CREATIVE DESIGN (MAP AT BOTTOM)
====================================================== */

.locations-modern {
  padding: 140px 6%;
  background: var(--neutral-100);
  color: var(--neutral-900);
  position: relative;
}

/* Decorative background glow */
.locations-modern::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand-primary), transparent 70%);
  top: -150px;
  right: -150px;
  opacity: 0.08;
  pointer-events: none;
}

.locations-modern .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =======================
   HEADER
======================= */
.section-header {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.section-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: justify;
}

.section-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.section-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
}

.section-header h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.locations-modern .section-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* =======================
   GRID
======================= */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* =======================
   CARD
======================= */

.location-card {
  background: var(--neutral-850);
  color: var(--neutral-100);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* =======================
   CONTENT (TOP)
======================= */

.location-content {
  padding: 32px;
  position: relative;
}

.location-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.location-badge.primary {
  background: var(--brand-secondary);
  color: var(--neutral-100);
}

.location-badge.secondary {
  background: var(--brand-secondary);
  color: var(--neutral-100);
}

.location-content h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--neutral-100);
}

.location-address {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* CTA BUTTON */
.location-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--brand-primary);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.location-cta:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
}

/* =======================
   MAP (BOTTOM)
======================= */

.location-map {
  height: 260px;
  overflow: hidden;
  border-top: 1px solid #eef2f7;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(1.05);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.location-card:hover iframe {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.1);
}

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

/* XLarge Screens */
@media (min-width: 1440px) {
  .locations-modern {
    padding: 160px 8%;
  }

  .locations-grid {
    gap: 50px;
  }

  .location-map {
    height: 300px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 240px;
  }
}

/* Large Mobile */
@media (max-width: 768px) {
  .locations-modern {
    padding: 100px 5%;
  }

  .location-content {
    padding: 26px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .locations-modern {
    padding: 80px 4%;
  }

  .location-content h3 {
    font-size: 1.4rem;
  }

  .location-address {
    font-size: 0.9rem;
  }

  .location-map {
    height: 200px;
  }
}

/* SECTION WRAPPER */
.digital-impact-section {
  padding: 120px 20px;
  background: var(--neutral-100);
  color: var(--neutral-900);
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.digital-container {
  max-width: 1100px;
  width: 100%;
}

/* CARD STYLE */
.digital-card {
  background: rgba(255, 255, 255, 0.902);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.199);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* LABEL */
.section-label {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 20px;
  font-weight: 580;
}

/* TITLE */
.digital-card h2 {
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.3;
  margin-bottom: 30px;
}

.digital-card h2 span {
  color: var(--brand-primary);
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.3;
  margin-bottom: 30px;
}

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

.content-grid p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  text-align: justify;
}

/* HIGHLIGHT BAR */
.highlight-bar {
  padding: 20px 25px;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    var(--neutral-800),
    var(--brand-secondary)
  );
  color: white;
  font-weight: 540;
  font-size: 15px;
  text-align: center;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .digital-card h2 {
    font-size: 48px;
  }
}

/* CAPABILITIES */
.capabilities {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 30px;
}

.cap-item {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  color: #111827;
}

.cap-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* IMAGE SIDE */
.service-visual img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* SUBTLE DIVIDER LINE */
.service-overview-consulting::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--brand-primary);
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .capabilities {
    grid-template-columns: 1fr;
  }
}

/* ===============================
SECTION (MODERN CONSULTING LUXE)
=============================== */
.capabilities-modern {
  padding: 120px 6%;
  background: #0b1426;
  color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}

/* ambient glow */
.capabilities-modern::before,
.capabilities-modern::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
}
.capabilities-header {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.capabilities-modern .capabilities-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 15px;
}

.capabilities-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.capabilities-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
}

.capabilities-header h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}
.capabilities-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* ===============================
LAYOUT (REDUCED GAP)
=============================== */
.capabilities-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ===============================
LEFT SIDE (ACCORDION)
=============================== */
.technology-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* accordion card */
.tech-accordion {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.tech-accordion:hover {
  border-color: rgba(124, 247, 227, 0.35);
  transform: translateY(-2px);
}

.tech-accordion.active {
  border-color: #7cf7e3;
  box-shadow: 0 12px 40px rgba(124, 247, 227, 0.12);
}

/* header row */
.tech-parent {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

/* toggle icon */
.tech-parent::after {
  content: "+";
  font-size: 18px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.tech-accordion.active .tech-parent::after {
  content: "–";
}

/* sublist */
.tech-sublist {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.15);
}

.tech-accordion.active .tech-sublist {
  max-height: 420px;
}

/* sub items */
.tech-subcard {
  padding: 14px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 14px;
  opacity: 0.85;
}

.tech-subcard:hover {
  transform: translateX(6px);
  opacity: 1;
  color: #7cf7e3;
}

/* ===============================
RIGHT PANEL (AUTO-RESIZE STICKY CARD)
=============================== */
.technology-panel {
  position: sticky;
  top: 110px;

  /* keep same placement */
  align-self: start;

  /* changed from fixed height */
  min-height: 520px;
  height: auto;

  border-radius: 22px;
  overflow: hidden;

  display: flex;
  align-items: flex-end;
  padding: 30px;

  background-size: cover;
  background-position: center;

  transition:
    min-height 0.35s ease,
    transform 0.35s ease;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

/* overlay */
.technology-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(5, 10, 20),
    rgba(0, 0, 0, 0.86),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 1;
}

/* glow */
.technology-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(124, 247, 227, 0.15);
  z-index: 2;
}

/* content */
.panel-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
}

.technology-panel h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.technology-panel p {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.92;
  text-align: justify;
  margin: 0;
}

/* smoother desktop spacing */
.capabilities-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

/* ===============================
RESPONSIVE
=============================== */
@media (max-width: 992px) {
  .technology-panel {
    position: relative;
    top: auto;
    min-height: 380px;
  }
}

/* IMPACT */

.impact-modern {
  padding: 100px 6%;
  background: var(--neutral-100);
  color: var(--neutral-900);
  text-align: justify;
}

.impact-modern .impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.impact-modern .impact-card {
  background: var(--neutral-850);
  padding: 40px;
  border-radius: 12px;
}

/* HEADER */
.impact-modern .impact-header {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.impact-modern .impact-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.impact-modern .impact-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
}

.impact-modern .impact-header h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.impact-modern .impact-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

.impact-modern .impact-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 15px;
}

.impact-modern .impact-card h3 {
  font-size: 48px;
  color: var(--brand-primary);
  font-weight: 500;
}

.impact-modern .impact-card p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;

  margin-bottom: 20px;

  color: var(--neutral-100);
}

.impact-modern .impact-cta {
  font-size: 18px;

  line-height: 1.6;

  opacity: 0.9;

  margin-bottom: 20px;
  margin-top: 40px;
  text-align: center;
}

.impact-modern .impact-button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: var(--neutral-100);
  text-decoration: none;
  border-radius: 6px;
}

/* Responsive */

@media (max-width: 900px) {
  .capabilities-wrapper {
    grid-template-columns: 1fr;
  }

  .technology-list {
    grid-template-columns: 1fr;
  }

  .impact-modern .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
INDUSTRY SECTION (ICON-BASED PREMIUM)
=============================== */

.industries-modern {
  padding: 110px 6%;
  background: #0b1426;
  color: var(--neutral-100);
}

/* ===============================
HEADER (UNCHANGED CORE STYLE)
=============================== */

.industries-modern .industries-header {
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
}

.industries-modern .industries-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 15px;
}

.industries-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.industries-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
}

.industries-header h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.industries-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* ===============================
GROUPS
=============================== */

.industry-group {
  margin-bottom: 70px;
}

.industry-group-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--neutral-100);
  font-weight: 580;
}

/* ===============================
GRID
=============================== */

.industry-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===============================
TILE (CONSULTING ICON CARD)
=============================== */

.industry-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 22px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* hover state */
.industry-tile:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(124, 247, 227, 0.35);
}

/* subtle glow wash */
.industry-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(124, 247, 227, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: 0.4s ease;
}

.industry-tile:hover::before {
  opacity: 1;
}

/* ===============================
ICON AREA (PNG TREATMENT)
=============================== */

.industry-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;

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

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;

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

  transition: all 0.35s ease;
}

/* PNG icon inside */
.industry-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

/* hover icon animation */
.industry-tile:hover .industry-icon {
  border-color: rgba(124, 247, 227, 0.35);
  box-shadow: 0 10px 25px rgba(124, 247, 227, 0.12);
}

.industry-tile:hover .industry-icon img {
  transform: scale(1.15);
}

/* ===============================
TEXT
=============================== */

.industry-tile h4 {
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--neutral-100);
  font-weight: 580;
  font-size: 18px;
  margin-top: 10px;
}

.industry-tile p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral-100);
  opacity: 0.9;
}

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

@media (max-width: 992px) {
  .industry-row {
    grid-template-columns: 1fr;
  }

  .industries-modern {
    padding: 90px 6%;
  }
}

/* ===============================
PARTNERS SECTION
=============================== */

.partners-modern {
  padding: 100px 6%;
  background: var(--neutral-100);
  color: var(--neutral-900);
  text-align: justify;
}

/* ===============================
HEADER
=============================== */

.partners-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.partners-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 15px;
}

.partners-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.partners-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
}

.partners-header h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 5px;
  background: var(--brand-primary);
  opacity: 0.3;
  border-radius: 10px;
}

.partners-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* ===============================
CATEGORY
=============================== */

.partners-category {
  margin-bottom: 70px;
}

.partners-category h3 {
  font-size: 26px;
  font-weight: 580;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.partners-category h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60%;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 10px;
}

/* ===============================
GRID LAYOUT
=============================== */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: stretch; /* ensures equal height cards */
}

/* ===============================
LOGO CARD (CONSISTENT SIZE)
=============================== */

.partner-logo {
  background: #ffffff;
  border-radius: 16px;

  padding: 20px;
  height: 120px; /* ✅ fixed height for all cards */

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

  border: 1px solid rgba(0, 0, 0, 0.05);

  text-decoration: none;
  cursor: pointer;

  transition: all 0.35s ease;

  /* animation base */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

/* Hover */
.partner-logo:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(79, 140, 255, 0.15);
}

/* Click */
.partner-logo:active {
  transform: scale(0.96);
}

/* ===============================
INNER LOGO WRAPPER (PERFECT ALIGNMENT)
=============================== */

.logo-inner {
  width: 100%;
  height: 60px; /* consistent logo area */

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

/* ===============================
LOGO IMAGE (NORMALIZED)
=============================== */

.partner-logo img {
  max-width: 100%;
  max-height: 60px; /* ✅ key for consistency */

  width: auto;
  height: auto;

  object-fit: contain;

  filter: grayscale(100%) opacity(0.65);
  transition: all 0.35s ease;
}

/* Hover effect */
.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* ===============================
ANIMATION DELAYS
=============================== */

.partner-logo:nth-child(2) {
  animation-delay: 0.1s;
}
.partner-logo:nth-child(3) {
  animation-delay: 0.2s;
}
.partner-logo:nth-child(4) {
  animation-delay: 0.3s;
}
.partner-logo:nth-child(5) {
  animation-delay: 0.4s;
}
.partner-logo:nth-child(6) {
  animation-delay: 0.5s;
}

/* ===============================
KEYFRAMES
=============================== */

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Tablets */
@media (max-width: 768px) {
  .partners-header h2 {
    font-size: 32px;
  }

  .partners-category h3 {
    font-size: 22px;
  }

  .partners-grid {
    gap: 20px;
  }
}

/* Phones */
@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logo {
    height: 100px;
    padding: 15px;
  }

  .logo-inner {
    height: 50px;
  }

  .partner-logo img {
    max-height: 50px;
  }
}

/* ===============================
GLOBAL
=============================== */
.success-creative {
  padding: 100px 6%;
  background: #0b1326;
  color: white;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ===============================
HEADER
=============================== */
.success-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.success-header .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 15px;
}

.success-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.success-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
}

.success-header span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 5px;
  background: var(--brand-primary);
  opacity: 0.3;
  border-radius: 10px;
}

.success-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* ===============================
TABS
=============================== */
.case-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.case-tab {
  width: 250px;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-tab:hover {
  border-color: var(--brand-primary);
}

.case-tab.active {
  background: var(--brand-primary);
  color: var(--neutral-100);
}

/* ===============================
MAIN EXPERIENCE
=============================== */
.case-experience {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 450px;
  transition: all 0.4s ease;
}

/* BACKGROUND IMAGE */
.case-bg {
  position: absolute;
  inset: 0;
}

.case-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

/* OVERLAY */
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 19, 38, 0.95) 35%,
    rgba(11, 19, 38, 0.5)
  );
}

/* ===============================
CONTENT
=============================== */
.case-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  max-width: 520px;
  z-index: 2;
  transition: all 0.4s ease;
}

.case-category {
  font-size: 14px;
  opacity: 0.7;
}

.case-content h3 {
  font-size: 30px;
  margin: 10px 0;
  font-weight: 580;
}

.case-content p {
  opacity: 0.85;
  line-height: 1.6;
}

/* BUTTON */
.case-btn {
  margin-top: 20px;
  padding: 12px 22px;
  border: none;
  background: var(--brand-primary);
  color: black;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 580;
  transition: 0.3s;
}

.case-btn:hover {
  transform: translateY(-2px);
}

/* ===============================
FLOATING METRICS
=============================== */
.case-metrics {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
}

.metric-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 16px;
  border-radius: 12px;
  min-width: 170px;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
}

.metric-number {
  font-size: 28px;
  color: var(--brand-primary);
  font-weight: 580;
  text-align: center;
}

.metric-card p {
  font-size: 13px;
  opacity: 0.8;
}

/* ===============================
PDF PANEL
=============================== */
.pdf-panel {
  position: fixed;
  inset: 0;
  background: #0b1326;
  z-index: 9999;

  display: flex;
  flex-direction: column;

  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: all 0.4s ease;
}

.pdf-panel.active {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
}

.pdf-header button {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: white;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

#pdfViewer {
  flex: 1;
  border: none;
}

/* ===============================
RESPONSIVE
=============================== */
@media (max-width: 900px) {
  .case-content {
    left: 20px;
    right: 20px;
  }

  .case-metrics {
    position: static;
    flex-direction: row;
    margin-top: 20px;
    transform: none;
  }
}

/* =========================
   BASE SECTION
========================= */
.services {
  padding: 120px 6%;
  background: var(--neutral-100);
  color: var(--neutral-850);
  position: relative;
  overflow: hidden;
  text-align: justify;
}

.container {
  max-width: 1400px;
  margin: auto;
}

/* =========================
   INTRO
========================= */
.services-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.services-intro h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
}

.services-intro h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  text-align: justify;
}

.services-intro h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  opacity: 0.6;
  border-radius: 10px;
}

.services-intro p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

.services-intro .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: justify;
}

/* =========================
   NAV
========================= */
.services-nav {
  display: flex;
  gap: 25px;
  margin-bottom: 60px;
  justify-content: center;
}

.nav-item {
  background: none;
  border: none;
  color: var(--neutral-600);
  cursor: pointer;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 580;
  padding-bottom: 6px;
  position: relative;
  transition: 0.3s ease;
}

.nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--brand-primary);
  transition: 0.3s ease;
}

.nav-item:hover {
  color: var(--neutral-900);
}

.nav-item.active {
  color: var(--neutral-900);
}

.nav-item.active::after {
  width: 100%;
}

/* =========================
   GRID
========================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

/* =========================
   MENU
========================= */
.menu-group {
  display: none;
}

.menu-group.active {
  display: block;
}

.menu-item {
  padding: 18px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(16px, 1.2vw, 18px);
  display: flex;
  align-items: center;
  font-weight: 540;
}

.menu-item span {
  margin-right: 12px;
  font-size: 14px;
  opacity: 0.4;
  transition: 0.3s;
}

.menu-item:hover span,
.menu-item.active span {
  opacity: 1;
}

.menu-item:hover,
.menu-item.active {
  color: var(--brand-primary);
  transform: translateX(8px);
}

/* =========================
   GROUP CTA
========================= */
.group-cta-wrap {
  margin-top: 40px;
}

.group-cta {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid var(--brand-primary);
  border-radius: 30px;
  text-decoration: none;
  color: var(--neutral-900);
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 560;
}

.group-cta:hover {
  background: var(--brand-primary);
  color: #000;
  transform: translateY(-2px);
}

/* =========================
   DISPLAY PANEL (ENHANCED)
========================= */
.services-display {
  position: relative;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b1326, #0f172a);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  color: var(--neutral-100);
}

/* glow effect */
.services-display::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--brand-primary), transparent 70%);
  top: -120px;
  right: -120px;
  opacity: 0.15;
}

/* =========================
   IMAGE
========================= */
.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* overlay */
.image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 60%);
}

.services-display img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

/* hover zoom */
.services-display:hover img {
  transform: scale(1.05);
}

/* fade animation */
.services-display img.fade {
  opacity: 0.2;
}

/* =========================
   BADGE
========================= */
.display-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* =========================
   CONTENT
========================= */
.display-content {
  margin-top: 25px;
  position: relative;
}

.display-content h3 {
  font-size: 30px;
  font-weight: 580;
  margin-bottom: 10px;
}

/* animated underline */
.display-content h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--brand-primary);
  display: block;
  margin-top: 8px;
  transition: 0.4s ease;
}

.services-display:hover h3::after {
  width: 80px;
}

.display-content p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  color: var(--neutral-100);
  max-width: 520px;
}

/* =========================
   CTA LINK
========================= */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  text-decoration: none;
  color: var(--brand-primary);
  transition: 0.3s ease;
}

.cta::after {
  content: "→";
  transition: transform 0.3s ease;
}

.cta:hover::after {
  transform: translateX(6px);
}

.cta:hover {
  opacity: 0.7;
}

@media (min-width: 1440px) {
  .services {
    padding: 160px 8%;
  }

  .container {
    max-width: 1500px;
  }

  .services-intro {
    max-width: 800px;
    margin-bottom: 90px;
  }

  .services-nav {
    gap: 35px;
    margin-bottom: 80px;
  }

  .services-grid {
    gap: 100px;
  }

  .menu-item {
    font-size: 19px;
    padding: 22px 0;
  }

  .services-display img {
    height: 450px;
  }

  .services-display {
    width: 78%;
  }

  .display-content h3 {
    font-size: 34px;
  }

  .display-content p {
    font-size: clamp(16px, 1.1vw, 18px);
  }
}

@media (max-width: 1439px) and (min-width: 1200px) {
  .services {
    padding: 140px 6%;
  }

  .services-grid {
    gap: 80px;
  }

  .services-display img {
    height: 400px;
  }

  .menu-item {
    font-size: 18px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .services {
    padding: 120px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
  }

  .services-display img {
    height: 360px;
  }

  .display-content h3 {
    font-size: 28px;
  }

  .menu-item {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .services {
    padding: 100px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav-item {
    font-size: 15px;
  }

  .services-display {
    padding: 30px;
  }

  .services-display img {
    height: 320px;
  }

  .display-content {
    text-align: left;
  }

  .menu-item {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .services {
    padding: 80px 4%;
  }

  .services-intro {
    text-align: center;
    margin-bottom: 50px;
  }

  .services-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .services-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-item {
    white-space: nowrap;
    font-size: 14px;
  }

  .menu-item {
    font-size: 15px;
    padding: 16px 0;
  }

  .services-display img {
    height: 260px;
  }

  .display-content h3 {
    font-size: 24px;
  }

  .display-content p {
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  .services {
    padding: 70px 4%;
  }

  .services-intro h2 {
    font-size: 26px;
  }

  .services-intro p {
    font-size: clamp(16px, 1.1vw, 18px);
  }

  .services-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
  }

  .nav-item {
    font-size: 13px;
  }

  .menu-item {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .menu-item span {
    font-size: 12px;
  }

  .services-display {
    padding: 22px;
    border-radius: 16px;
  }

  .display-content h3 {
    font-size: 20px;
  }

  .display-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .cta {
    font-size: 13px;
  }
}

/* ===============================
INSIGHTS SECTION
=============================== */
.insights-modern {
  padding: 110px 6%;
  background: var(--neutral-100);
  color: #100f2e;
  position: relative;
  overflow: hidden;
}

/* ===============================
HEADER
=============================== */
.insights-modern .insights-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.insights-modern .eyebrow {
  display: inline-block;
  font-weight: 580;
  letter-spacing: 1px;
  color: var(--brand-secondary);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 15px;
}

.insights-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
  text-align: center;
}

.insights-modern .insights-header h2 span {
  color: var(--brand-primary);
  position: relative;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 580;
  margin-bottom: 20px;
}

.insights-modern .insights-header h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 5px;
  background: var(--brand-primary);
  opacity: 0.3;
  border-radius: 10px;
}

.insights-modern .insights-header p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}

/* ===============================
TABS
=============================== */
.insights-modern .insight-tabs,
.insights-modern .insight-subtabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.insights-modern .tab,
.insights-modern .subtab {
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  transition: 0.3s;
}

.insights-modern .tab.active,
.insights-modern .subtab.active {
  background: var(--brand-secondary);
  color: white;
}

/* ===============================
GRID
=============================== */
.insights-modern .insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* ===============================
CARDS
=============================== */
.insights-modern .insight-item {
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: 0.4s;
}

/* COLOR VARIANTS */
.insights-modern .variant-0 {
  background: #100f2e;
  color: white;
}

.insights-modern .variant-1 {
  background: rgb(85, 91, 97);
  color: white;
}

.insights-modern .variant-2 {
  background: #4c7972;
  color: white;
}

/* IMAGE */
.insights-modern .insight-item img {
  height: 160px;
  object-fit: cover;
}

/* CONTENT */
.insights-modern .insight-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insights-modern .insight-tag {
  font-size: 11px;
  margin-bottom: 10px;
  color: var(--neutral-100);
}

.insights-modern .insight-content h3 {
  font-size: 18px;
}

.insights-modern .insight-content p {
  font-size: 13px;
  flex-grow: 1;
}

.insights-modern .insight-tags span {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 10px;
  color: var(--neutral-100);
  margin-right: 2%;
}

/* BUTTON */
.read-btn {
  margin-top: 10px;
  border: none;
  background: none;
  border-bottom: 2px solid currentColor;
  cursor: pointer;
  color: var(--neutral-100);
}

/* HOVER */
.insight-item:hover {
  transform: translateY(-8px);
}

/* ===============================
FULLSCREEN VIEWER
=============================== */
.viewer-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #100f2e;
  z-index: 9999;

  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: all 0.4s ease;
}

.viewer-panel.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* HEADER */
.viewer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* CLOSE BUTTON */
#closeViewer {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

#closeViewer:hover {
  background: #405a41;
  transform: rotate(90deg);
}

/* PDF */
#viewerFrame {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  background: white;
}

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

@media (max-width: 600px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   EDGE ANALYTICS – STICKY SERVICE NAVIGATION
   Unique Class Names: ea-side-nav
   Fully Responsive for All Screen Sizes
====================================================== */

/* Base Styles – Large Desktops (≥1400px) */
.ea-side-nav {
  position: fixed;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
  animation: eaSideNavFadeIn 0.8s ease forwards;
}

.ea-side-nav__container {
  position: relative;
  padding: 18px 10px;
  border-radius: 28px;
  background: #ffffff; /* Removed glass effect */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Vertical Track */
.ea-side-nav__track {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(0, 0, 0, 0.08);
}

.ea-side-nav__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #0d6efd, #00b4d8);
  border-radius: 2px;
  transition: height 0.25s ease-out;
}

/* Navigation List */
.ea-side-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.ea-side-nav__item {
  position: relative;
}

/* Navigation Link */
.ea-side-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}

/* Icon Styling */
.ea-side-nav__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #6c757d;
  transition: all 0.3s ease;
}

/* Label Styling */
.ea-side-nav__label {
  position: absolute;
  left: 50px;
  background: #0d1b2a;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Hover Effects */
.ea-side-nav__link:hover .ea-side-nav__icon {
  background: linear-gradient(135deg, #0d6efd, #00b4d8);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
}

.ea-side-nav__link:hover .ea-side-nav__label {
  opacity: 1;
  transform: translateX(0);
}

/* Active State */
.ea-side-nav__link.is-active .ea-side-nav__icon {
  background: linear-gradient(135deg, #0d6efd, #00b4d8);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.15);
}

.ea-side-nav__link.is-active .ea-side-nav__label {
  opacity: 1;
  transform: translateX(0);
  font-weight: 600;
}

/* Entrance Animation */
@keyframes eaSideNavFadeIn {
  from {
    opacity: 0;
    transform: translate(-30px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/* ======================================================
   SERVICE STEP NAVIGATION - HERO
====================================================== */

/* Ensure hero section is positioned correctly */
.hero-slide {
  position: relative;
}

/* Base Style – Desktop */
.service-step-nav {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 5;
  padding: 0; /* Removed glass container padding */
}

/* Horizontal line centered through the numbers */
.service-step-line {
  position: absolute;
  top: 18px; /* Half of the step-number height (36px / 2) */
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

/* Individual Steps */
.service-step {
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  z-index: 2;
  transition: all 0.3s ease;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

/* Step Number Circle */
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--neutral-850);
  border: 2px solid #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  margin: 0 auto 6px;
  transition: all 0.3s ease;
}

/* Step Label */
.step-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

/* Hover Effects */
.service-step:hover .step-number {
  background: #ffffff;
  color: #000;
  transform: scale(1.08);
}

/* Active State */
.service-step.active .step-number {
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-accent)
  );
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.service-step.active .step-label {
  font-weight: 700;
}

/* ======================================================
   LAPTOP VIEW (992px – 1399px)
====================================================== */
@media (max-width: 1399px) {
  .service-step-nav {
    top: 22px;
    max-width: 600px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .service-step-line {
    top: 16px; /* Centered with 32px circle */
  }

  .step-label {
    font-size: 0.6rem;
  }
}

/* ======================================================
   TABLET VIEW (768px – 991px)
====================================================== */
@media (max-width: 991px) {
  .service-step-nav {
    top: 18px;
    max-width: 520px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }

  .service-step-line {
    top: 15px; /* Centered with 30px circle */
  }

  .step-label {
    font-size: 0.55rem;
  }
}

/* ======================================================
   MOBILE VIEW (< 768px)
====================================================== */
@media (max-width: 767px) {
  .service-step-nav {
    top: 12px;
    width: 95%;
    justify-content: space-between;
  }

  .service-step-line {
    display: none; /* Hide line on very small screens */
  }

  .step-number {
    width: 26px;
    height: 26px;
    font-size: 0.6rem;
  }

  .step-label {
    font-size: 0.5rem;
    white-space: nowrap;
  }
}

/* ======================================================
   EXTRA SMALL DEVICES (< 480px)
====================================================== */
@media (max-width: 480px) {
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 0.55rem;
  }

  .step-label {
    font-size: 0.45rem;
  }
}
/* ===============================
SERVICE JOURNEY NAV
=============================== */
.service-journey-nav {
  position: fixed;
  right: 28px;
  top: 55%;
  transform: translateY(-50%) translateX(0);
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 9999;

  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* vertical line */
.service-journey-nav .service-line {
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--brand-primary),
    transparent
  );
  z-index: 0;
}

/* ===============================
STEP
=============================== */
.service-journey-nav .service-step {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  z-index: 2;

  transition: gap 0.3s ease;
}

/* ===============================
CIRCLE
=============================== */
.service-journey-nav .circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;
  color: white;

  background: rgba(15, 18, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* ===============================
LABEL
=============================== */
.label {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-100);
  white-space: nowrap;

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

/* ===============================
HOVER
=============================== */
.service-step:hover .circle {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

.service-step:hover .label {
  color: #fff;
  transform: translateX(4px);
}

/* ===============================
ACTIVE
=============================== */
.service-step.active .circle {
  background: linear-gradient(
    135deg,
    var(--brand-secondary),
    var(--brand-primary)
  );
  border: none;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
}

.service-step.active .label {
  color: #fff;
  font-weight: 700;
}

/* ===============================
CONNECTOR DOTS
=============================== */
.service-step::before {
  content: "";
  position: absolute;
  left: 17px;
  top: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.service-step:first-child::before {
  display: none;
}

/* ===============================
MINIMAL MODE (OPTIONAL - KEEP)
=============================== */
.service-journey-nav.minimal .label {
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
}

.service-journey-nav.minimal .circle {
  width: 16px;
  height: 16px;
  font-size: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.service-journey-nav.minimal .service-step.active .circle {
  background: var(--brand-secondary);
  box-shadow: 0 0 12px rgba(79, 70, 229, 0.6);
}

/* ===============================
COMPACT MODE (SCROLL DOWN)
=============================== */
.service-journey-nav.compact {
  transform: translateY(-50%) translateX(60px); /* moves nav right */
}

/* hide labels smoothly */
.service-journey-nav.compact .label {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

/* tighten layout */
.service-journey-nav.compact .service-step {
  gap: 0;
}

/* keep circles aligned */
.service-journey-nav.compact .circle {
  margin-left: 0;
}

/* ===============================
EXPANDED MODE (SCROLL UP)
=============================== */
.service-journey-nav.expanded {
  transform: translateY(-50%) translateX(0);
}

.service-journey-nav.expanded .label {
  opacity: 1;
  transform: translateX(0);
}

/* ===============================
NEXT SERVICE HINT
=============================== */
.next-service-hint {
  position: fixed;
  right: 28px;
  bottom: 28px;

  background: rgba(10, 12, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);

  color: white;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 12px;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;

  cursor: pointer;
}

.next-service-hint.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   SECTION
========================= */
.contactX {
  padding: 110px 20px;
  background: linear-gradient(180deg, var(--neutral-100), #f8fafc);
  color: var(--neutral-900);
}

/* =========================
   HEADER
========================= */
.contactX__header {
  max-width: 760px;
  margin: 0 auto 100px;
  text-align: center;
}

.contactX__header .eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--brand-secondary);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 13px;
}

.contactX__title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 600;
  margin-bottom: 20px;
}

.contactX__title span {
  font-size: clamp(30px, 5vw, 44px);
    color: var(--brand-primary);
  font-weight: 600;
  position: relative;
}

.contactX__title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: -6px;
  left: 0;
  background: var(--brand-primary);
  border-radius: 10px;
  opacity: 0.5;
}

.contactX__subtitle {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  opacity: 0.85;
}

/* =========================
   CONTAINER
========================= */
.contactX__container {
  max-width: 1200px;
  margin: auto;
}

/* =========================
   GRID (ALIGNMENT FIX)
========================= */
.contactX__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch; /* ensures equal height */
}

/* =========================
   LEFT COLUMN
========================= */
.contactX__infoBox {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

/* IMAGE */
.contactX__visual img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* DETAILS CARD */
.contactX__details {
  padding: 32px;
  border-radius: 20px;
  background: rgba(20, 20, 30, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--neutral-100);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contactX__detailsTitle {
  margin-bottom: 20px;
  color: var(--brand-secondary);
  font-weight: 600;
}

.contactX__detailsBlock {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contactX__detailsBlock:last-child {
  border-bottom: none;
}

.contactX__detailsBlock p {
  opacity: 0.85;
}

/* =========================
   FORM COLUMN
========================= */
.contactX__formBox {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* FORM CARD */
#crmWebToEntityForm.zcwf_lblLeft {
  flex: 1; /* fills full column height */
  width: 100%;
  padding: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TITLE */
.zcwf_lblLeft .zcwf_title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1f36;
}

/* ROW */
.zcwf_lblLeft .zcwf_row {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}

/* LABEL */
.zcwf_lblLeft .zcwf_col_lab {
  width: 30%;
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
}

/* FIELD */
.zcwf_lblLeft .zcwf_col_fld {
  width: 70%;
}

/* INPUTS */
.zcwf_lblLeft input,
.zcwf_lblLeft textarea,
.zcwf_lblLeft select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6deeb;
  border-radius: 10px;
  font-size: 14px;
  background: #f9fbff;
  transition: all 0.25s ease;
}

/* FOCUS */
.zcwf_lblLeft input:focus,
.zcwf_lblLeft textarea:focus,
.zcwf_lblLeft select:focus {
  border-color: var(--brand-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
  outline: none;
}

/* TEXTAREA */
.zcwf_lblLeft textarea {
  min-height: 120px;
}

/* BUTTONS */
.zcwf_lblLeft .zcwf_button {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

/* SUBMIT */
.formsubmit.zcwf_button {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0,123,255,0.3);
}

.formsubmit.zcwf_button:hover {
  transform: translateY(-2px);
}

/* RESET */
.zcwf_lblLeft input[type="reset"] {
  background: #eef2f7;
}

.zcwf_lblLeft input[type="reset"]:hover {
  background: #e2e8f0;
}

/* =========================
   MAP
========================= */
.contactX__mapWrap {
  margin-top: 70px;
}

.contactX__mapWrap iframe {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

/* TABLET */
@media (max-width: 768px) {
  .contactX {
    padding: 90px 20px;
  }

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

  .contactX__formBox {
    order: 2;
  }

  .contactX__visual {
    order: -1;
  }

  .contactX__mapWrap iframe {
    height: 350px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .contactX {
    padding: 70px 15px;
  }

  .contactX__title {
    font-size: 2rem;
  }

  .zcwf_lblLeft .zcwf_row {
    flex-direction: column;
  }

  .zcwf_lblLeft .zcwf_col_lab,
  .zcwf_lblLeft .zcwf_col_fld {
    width: 100%;
  }

  .contactX__mapWrap iframe {
    height: 300px;
  }
}

/* =========================
   ENSURE COLUMN STRETCH
========================= */
.contactX__infoBox {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* =========================
   SOCIAL CARD (BOTTOM ALIGNED)
========================= */
.contactX__social {
  margin-top: auto; /* 🔥 keeps it aligned with form bottom */

  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contactX__social:hover {
  transform: translateY(-4px);
}

/* TITLE */
.contactX__socialTitle {
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 16px;
  color: var(--neutral-900);
}

/* LINKS WRAPPER */
.contactX__socialLinks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ITEM */
.socialItem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  color: var(--neutral-800);
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

/* ICON */
.socialItem i {
  width: 18px;
  text-align: center;
  font-size: 16px;
}

/* HOVER BASE */
.socialItem:hover {
  color: #fff;
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* BRAND COLORS */
.socialItem.website:hover {
  background: #4c9aff;
}

.socialItem.linkedin:hover {
  background: #0A66C2;
}

.socialItem.instagram:hover {
  background: #E1306C;
}

.socialItem.twitter:hover {
  background: #111111;
}