   :root {
      --bg: #ffffff;
      --text: #000000;
      --accent: #000000;
      --gray-light: #f8f9fa;
      --border: rgba(0,0,0,0.12);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
      --transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
      --footer-bg: #ffffff;
      --footer-text: #1f2937;
      --footer-text-muted: #6b7280;
      --footer-accent: #1d4ed8;
      --footer-border: rgba(0,0,0,0.08);
      --footer-hover: #3b82f6;
      --badge-bg: rgba(0,0,0,0.03);
      --badge-border: rgba(0,0,0,0.10);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--text);
      background: #f8fafc;
      line-height: 1.6;
      overflow-x: hidden;
      background-image: 
      radial-gradient(#cbd5e1 0.2px, transparent 1px);
      background-size: 20px 20px;
    }

    h1, h2, h3 {
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: -1.2px;
      color: #0f172a;
    }

    /* === GLOBAL SCROLL REVEAL STYLES === */
/* Base hidden state for sections + major containers */
.hero,
.auth-section,
.bag-section,
.process-section,
.mission-section,
.timeline,
.team-section,
.industry-focus,
.private-network,
.what-we-do,
.challenges-section,
.faq-section,
section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When visible — appear */
.hero.visible,
.auth-section.visible,
.bag-section.visible,
.process-section.visible,
.mission-section.visible,
.timeline.visible,
.team-section.visible,
.industry-focus.visible,
.private-network.visible,
.what-we-do.visible,
.challenges-section.visible,
.faq-section.visible,
section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Inner elements (cards, columns, text blocks, etc.) — deeper fade-in */
.hero > *,
.auth-section > *,
.bag-section > *,
.process-section > *,
.mission-section > *,
.timeline > *,
.team-section > *,
.industry-focus > *,
.private-network > *,
.what-we-do > *,
.challenges-section > *,
.faq-section > *,
section > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.hero.visible > *,
.auth-section.visible > *,
.bag-section.visible > *,
.process-section.visible > *,
.mission-section.visible > *,
.timeline.visible > *,
.team-section.visible > *,
.industry-focus.visible > *,
.private-network.visible > *,
.what-we-do.visible > *,
.challenges-section.visible > *,
.faq-section.visible > *,
section.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: override for known nested columns in auth/bag so they don't stay hidden */
.auth-section .left-content,
.auth-section .right-content,
.bag-section .left-panel,
.bag-section .right-panel,
.auth-section .preview-card,
.auth-section .form-container {
    opacity: 0;                /* start hidden */
    transform: translateY(30px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.auth-section.visible .left-content,
.auth-section.visible .right-content,
.bag-section.visible .left-panel,
.bag-section.visible .right-panel,
.auth-section.visible .preview-card,
.auth-section.visible .form-container {
    opacity: 1;
    transform: translateY(0);
}

    .ultra-divider {
        width: 100%;
        max-width: 1900px;
        height: 1px;
        padding: 40px auto;
        position: relative;
        background: #000;
        opacity: 0.1;
        overflow: visible;
        flex-shrink: 0;
    }

    @media (max-width: 1280px) { 
        .ultra-divider { max-width: 900px; } 
    }

    @media (max-width: 1024px) { 
        .ultra-divider { max-width: 720px; margin: 70px auto; } 
    }

    @media (max-width: 768px) { 
        .ultra-divider { max-width: 560px; margin: 60px auto; } 
    }

    @media (max-width: 480px) { 
        .ultra-divider { max-width: 90%; margin: 50px auto; }
    }

    /* ================== LAYOUT STRUCTURE ================== */
    .page-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1 0 auto;
    }

/* ── LOADER ──────────────────────────────────────────────────────────────── */
#loader {
  position: fixed !important;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #000 !important;
  display: grid !important;
  place-items: center !important;
  z-index: 999999;
  overflow: hidden;
  transition: opacity 2.2s cubic-bezier(0.23, 1, 0.32, 1);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* When fading out */
#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Space background container */
#space-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #0a0015 0%, #000 70%);
  z-index: -2;
}

/* Star layers */
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 4s infinite alternate;
  will-change: opacity, transform;
}

@keyframes twinkle {
  0%   { opacity: 0.35; }
  50%  { opacity: 0.9;  }
  100% { opacity: 0.4;  }
}

/* Optional subtle slow drift for parallax feel */
.stars-layer1 { animation: drift 180s linear infinite; }
.stars-layer2 { animation: drift 260s linear infinite reverse; }

@keyframes drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-8%, -8%); }
}

/* 3D Text Container */
.scene {
  perspective: 1400px;
  perspective-origin: 50% 48%;
  z-index: 1;
}

/* Main 3D text styling */
.text-3d {
  font-size: clamp(3.8rem, 11vw, 9.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;           /* tighter default – reduces jump */
  color: #f8f9fa;
  text-transform: uppercase;
  white-space: nowrap;
  transform-style: preserve-3d;
  transform: rotateX(14deg) rotateY(-8deg) translateZ(0);
  animation: gentle-float 14s ease-in-out infinite;
  text-shadow:
    0 0 30px rgba(255,255,255,0.15),
    0 10px 20px rgba(0,0,0,0.65);
  will-change: transform;
}

.text-3d span {
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
  text-shadow:
    0 4px 0 #444,
    0 8px 0 #333,
}

/* Depth layers (subtle) */
.text-3d span::before {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  color: #d8d8d8;
  transform: translateZ(-5px);
  opacity: 0.7;
  filter: blur(0.9px);
}

.text-3d span::after {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  color: #a0a0a0;
  transform: translateZ(-10px);
  opacity: 0.45;
  filter: blur(1.4px);
}

/* Gentle floating animation */
@keyframes gentle-float {
  0%, 100% {
    transform: rotateX(14deg) rotateY(-8deg) translateZ(0);
  }
  50% {
    transform: rotateX(19deg) rotateY(-4deg) translateZ(40px);
  }
}

/* Fade out animation for brand if needed */
@keyframes fade-out {
  to { opacity: 0; }
}

/* ── RESPONSIVE ADJUSTMENTS ──────────────────────────────────────────────── */

/* Laptops / ≤1200px */
@media (max-width: 1200px) {
  .scene {
    perspective: 1100px;
  }
  .text-3d {
    font-size: clamp(3.5rem, 10vw, 8rem);
    letter-spacing: -0.05em;
  }
}

/* Tablets / ≤1024px */
@media (max-width: 1024px) {
  .scene {
    perspective: 1000px;
    perspective-origin: 50% 50%;
  }
  .text-3d {
    font-size: 9.5vw;
    letter-spacing: -0.045em;
    transform: rotateX(12deg) rotateY(-6deg) translateZ(0);
  }
}

/* Mobile / ≤768px */
@media (max-width: 768px) {
  .scene {
    perspective: 900px;
  }
  .text-3d {
    font-size: 11vw;
    letter-spacing: -0.04em;
    transform: rotateX(10deg) rotateY(-5deg) translateZ(0);
  }
  .text-3d span::before,
  .text-3d span::after {
    opacity: 0.6;
    filter: blur(1px);
  }
}

/* Very small screens / ≤480px */
@media (max-width: 480px) {
  .scene {
    perspective: 800px;
  }
  .text-3d {
    font-size: 12vw;
    letter-spacing: -0.035em;
    transform: rotateX(8deg) rotateY(-4deg) translateZ(0);
  }
  /* Remove depth layers on tiny screens for performance & clarity */
  .text-3d span::before,
  .text-3d span::after {
    display: none;
  }
  .text-3d span {
    text-shadow: 0 3px 0 #333, 0 6px 0 #111;
  }
}

/* Main content fade-in */
#main-content {
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.23, 1, 0.32, 1);
}

#main-content.visible {
  opacity: 1;
}


/* ================== NAVIGATION ================== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6%;
      z-index: 1000;
      backdrop-filter: blur(20px);
      background: rgba(255, 255, 255, 0.12);
      transition: var(--transition);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      font-size: clamp(1.5rem, 4vw, 1.9rem);
      font-weight: 800;
      letter-spacing: -1.2px;
      color: var(--text);
      transition: var(--transition);
    }

    .logo img {
      display: block;
      height: 8rem;               /* reduced for better proportion */
      width: auto;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .logo:hover img {
      transform: scale(1.04);
      opacity: 0.92;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: var(--transition);
      transform: translateX(-50%);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* Consistent modern glassmorphic buttons */
    .nav-btn {
      height: 38px; 
      padding: 0 18px;
      font-size: 14.5px;
      font-weight: 600;
      line-height: 1;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 10px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      backdrop-filter: blur(16px);
      color: #fff;
      white-space: nowrap;
      position: relative;
    }

    /* Register button + arrow fix */
    .nav-btn {
      background: #000000;
      padding-right: 22px;
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 6px;
      padding: 8px;
      z-index: 1001;
    }

    .menu-toggle span {
      width: 28px;
      height: 2.5px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      transform-origin: center;
    }

    .menu-toggle.open span:nth-child(1) {
      transform: rotate(45deg) translate(9px, 8px);
    }

    .menu-toggle.open span:nth-child(2) {
      opacity: 0;
      transform: translateX(20px);
    }

    .menu-toggle.open span:nth-child(3) {
      transform: rotate(-45deg) translate(9px, -8px);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bg);
      color: var(--text);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 48px;
      font-size: 2.8rem;
      font-weight: 400;
      letter-spacing: -1.5px;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-30px);
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateY(0);
    }

    .mobile-menu a {
      color: var(--text);
      text-decoration: none;
      opacity: 0.85;
      transition: all 0.4s ease;
    }

    .mobile-menu a:hover {
      opacity: 1;
      transform: scale(1.06);
    }

    .body-no-scroll {
      overflow: hidden !important;
      height: 100vh !important;
    }
/* ═══════════════════════════════════════════════════════
   Responsive NAVIGATION - Hide nav buttons on small devices
   ════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    /* Hide nav-right buttons on tablets and smaller */
    .nav-right {
        display: none;
    }
    
    /* Show menu toggle */
    .menu-toggle {
        display: flex;
    }
    
    /* Adjust nav padding */
    nav {
        padding: 0 4%;
    }
}


/* ==================================== SECTION 1 HERO ==================================== */
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 80px 6% 80px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        padding: 130px 0 0;
        font-size: clamp(2.5rem, 7vw, 5rem);
        margin-bottom: 1.5rem;
        letter-spacing: -2.5px;
        position: relative;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: #475569;
        line-height: 1.7;
        margin-bottom: 10rem;
    }

    .cta-button {
        display: inline-block;
        padding: 10px 35px;
        background: #00b300;
        color: var(--bg);
        text-decoration: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .cta-button:hover {
        box-shadow: var(--shadow-lg);
    }
/* ═══════════════════════════════════════════════════════
   Responsive HERO SECTION - Full height on small screens
   ════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .hero {
        padding: 60px 4% 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px 3% 50px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    
    .hero-title {
        padding-top: 0;
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 10rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 2%;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: -1.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 7rem;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}    

/* ==================================== SECTION 2: AUTH / REGISTRATION ==================================== */
    .auth-section {
        padding: 40px 10%;
        position: relative;
        overflow: hidden;
        color: var(--text);
    }

    .container {
        border: 1px solid var(--text);
        border-radius: 20px;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        position: relative;
        z-index: 2;
    }

    .left-panel,
    .right-panel {
        padding: 2rem;
        color: var(--text);
        background: white;
    }

    .left-panel {
        border-right: 1px solid var(--text);
    }

    .right-panel {
        position: relative;
    }

    .tagline {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 0.5rem;
        letter-spacing: -1px;
    }

    .subtitle {
        font-size: 1rem;
        color: var(--mid);
        margin-bottom: 1rem;
    }

    .role-tabs {
        display: flex;
        background: var(--light);
        border: 1.5px solid var(--border);
        border-radius: .75rem;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }

    .tab {
        flex: 1;
        padding: .75rem 1rem;
        text-align: center;
        font-weight: 500;
        cursor: pointer;
        transition: all .2s;
        background: transparent;
        border: none;
        color: var(--text);
    }

    .tab.active {
        background: #000000;
        color: #ffffff;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        display: block;
        margin-bottom: .5rem;
        font-weight: 500;
        font-size: .875rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: .875rem;
        border: 1.5px solid var(--mid);
        border-radius: .75rem;
        background: white;
        color: var(--text);
        font-size: 1rem;
        transition: all .2s;
        font-family: 'Inter', system-ui, sans-serif;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--mid);
        opacity: 0.7;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: 2px dashed #000000;
        outline-offset: 2px;
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(0,0,0,.05);
    }

    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        margin: 1.25rem 0;
        font-size: .8125rem;
        color: var(--mid);
    }

    .checkbox-group input {
        width: 1.25rem;
        height: 1.25rem;
        accent-color: var(--accent);
        margin-top: .125rem;
    }

    .checkbox-group a {
        color: var(--accent);
        text-decoration: underline;
    }

    .btn {
        background: #000;
        color: #ffffff;
        border: none;
        padding: .875rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: .75rem;
        cursor: pointer;
        width: 100%;
        transition: all .3s ease;
        font-family: 'Inter', system-ui, sans-serif;
    }

    .btn:hover {
        background: rgba(0, 0, 0, 0.85);
        transform: translateY(-1.5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .social-login {
        margin-top: 1rem;
    }

    .social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .75rem;
        padding: .875rem;
        background: var(--card-bg);
        border: 1.5px solid var(--border);
        border-radius: .75rem;
        font-weight: 500;
        font-size: 1rem;
        cursor: pointer;
        transition: all .2s;
        width: 100%;
        color: var(--text);
        font-family: 'Inter', system-ui, sans-serif;
    }

    .social-btn:hover {
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(0,0,0,.05);
    }

    .footer-links {
        margin-top: 1.5rem;
        text-align: center;
        font-size: 1rem;
        color: var(--mid);
    }

    .footer-links a {
        color: var(--accent);
        text-decoration: none;
    }

    .accordion-header {
        display: none;
        background: var(--light);
        padding: 1.2rem 1rem;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        border-top: 1px solid var(--border);
        justify-content: space-between;
        align-items: center;
    }

    .right-content {
        display: block;
    }

    .preview-card {
        background: white;
        padding: 1.5rem;
        border-radius: 1rem;
        border: 1px solid var(--border);
        box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        color: var(--text);
        margin-bottom: 1.5rem;
    }

    .preview-title {
        font-weight: 600;
        margin-bottom: .75rem;
        font-size: 1.1rem;
    }

    .preview-pitch {
        font-size: .9375rem;
        line-height: 1.6;
        border-left: 4px solid var(--accent);
        padding-left: 1rem;
        color: var(--mid);
    }

    .preview-hint {
        font-size: .8125rem;
        font-style: italic;
        margin-top: .5rem;
        color: var(--mid);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-box {
        background: white;
        padding: 1rem;
        border-radius: 1rem;
        border: 1px solid var(--border);
        box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        text-align: center;
    }

    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: .25rem;
        color: var(--text);
    }

    .stat-label {
        font-size: .8125rem;
        color: var(--mid);
    }

    .testimonial {
        background: white;
        padding: 1.25rem;
        border-radius: 1rem;
        border: 1px solid var(--border);
        box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        border-left: 4px solid var(--accent);
        font-size: .875rem;
        line-height: 1.5;
        color: var(--text);
    }

    .testimonial cite {
        display: block;
        margin-top: 0.5rem;
        font-style: italic;
        color: var(--mid);
        font-size: 0.85rem;
    }
/* ═══════════════════════════════════════════════════════
   Responsive SECTION 2: AUTH
   ════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .auth-section {
        max-width: 100%;       
        padding: 60px 4% 60px;     
    }

    .container {
        max-width: 100%;       
        width: 100%;
        margin: 0;            
        grid-template-columns: 1fr 1fr; 
        display: grid;
    }

    .left-panel {
        width: 100%;
        border-bottom: none;
        border-right: 1px solid var(--text); 
    }

    .right-panel {
        width: 100%;
        display: block;
    }

    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 1024px) {
    .auth-section {
        padding: 60px 4% 40px;
        min-height: auto; 
    }
    
    .container {
        grid-template-columns: 1fr;
        margin-bottom: 0;  
    }
    
    .left-panel {
        border-bottom: 1px solid var(--text);
        border-right: none;
        padding-bottom: 2rem; 
    }
    

    /* FIX 3: Final border fix */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 768px) {

    .auth-section {
        padding: 50px 3%;
    }
    .accordion-header {
        display: flex;
    }
    
    .left-panel,
    .right-panel {
        padding: 1.5rem;
    }
    
    .role-tabs {
        flex-direction: column;
    }
    
    .tab {
        padding: 0.85rem;
    }

    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 40px 2%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .social-btn {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
} 

/* ==================================== New SECTION Video ==================================== */
    .video-section {
      padding: 0 6% 50px;
      background:;
      display: flex;
      align-items: center;
      justify-content: center;
      height: calc(100vh - 80px);
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      max-height: calc(100vh - 112px);
      aspect-ratio: 16 / 9;
      border: 3px solid #fff;
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      cursor: pointer;
    }

    .video-wrapper video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: radial-gradient(circle at center, #ffffff 0%, #000000 100%);
    }

    /* Completely hide native controls */
    video::-webkit-media-controls,
    video::-webkit-media-controls-enclosure,
    video::-webkit-media-controls-panel,
    video::-webkit-media-controls-play-button,
    video::-webkit-media-controls-current-time-display,
    video::-webkit-media-controls-time-remaining-display,
    video::-webkit-media-controls-timeline,
    video::-webkit-media-controls-volume-slider,
    video::-webkit-media-controls-fullscreen-button,
    video::-moz-media-controls {
      display: none !important;
    }

    /* Hover / paused overlay */
    .video-wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      transition: background 0.4s ease;
      pointer-events: none;
      z-index: 2;
    }

    .video-wrapper.paused::after {
      
      /* Uncomment below if you want a big play icon when paused */
      /* content: '▶'; */
      /* font-size: 18vw; */
      /* color: rgba(255,255,255,0.7); */
      /* display: flex; */
      /* align-items: center; */
      /* justify-content: center; */
    }

   /* ── Responsive adjustments ── */
@media (max-width: 1200px) {
  .video-section {
    padding-left: 4%;
    padding-right: 4%;
    height: calc(50vh - 80px);
  }
  .video-wrapper {
    max-height: calc(55vh - 112px);
  }
  /* FIX 3: Final border fix for smallest screens */
  .container,
  .entity-card,
  .service-card,
  .step,
  .marquee_card,
  .video-wrapper,
  .private-image {
      border: 1px solid rgba(0, 0, 0, 0.12);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 980px) {
  .video-section {
    padding-left: 4%;
    padding-right: 4%;
    height: calc(33vh - 80px);
  }
  .video-wrapper {
    max-height: calc(30vh - 112px);
  }
  /* FIX 3: Final border fix for smallest screens */
  .container,
  .entity-card,
  .service-card,
  .step,
  .marquee_card,
  .video-wrapper,
  .private-image {
      border: 1px solid rgba(0, 0, 0, 0.12);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 768px) {
  .video-section {
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 30px;
    padding-bottom: 30px;
    height: calc(58vh - 80px);
  }
  .video-wrapper {
    max-height: calc(58vh - 112px);
  }
  /* FIX 3: Final border fix for smallest screens */
  .container,
  .entity-card,
  .service-card,
  .step,
  .marquee_card,
  .video-wrapper,
  .private-image {
      border: 1px solid rgba(0, 0, 0, 0.12);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 600px) {
  .video-section {
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 30px;  
    padding-bottom: 30px;
    height: calc(50vh - 80px);  
  }
  .video-wrapper {
    max-height: calc(50vh - 112px);
  }
  /* FIX 3: Final border fix for smallest screens */
  .container,
  .entity-card,
  .service-card,
  .step,
  .marquee_card,
  .video-wrapper,
  .private-image {
      border: 1px solid rgba(0, 0, 0, 0.12);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 480px) {
  .video-section {
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 20px; 
    padding-bottom: 20px;
    height: calc(40vh - 80px); 
  }
  .video-wrapper {
    max-height: calc(40vh - 112px);
    border-radius: 12px;  
  }
  /* FIX 3: Final border fix for smallest screens */
  .container,
  .entity-card,
  .service-card,
  .step,
  .marquee_card,
  .video-wrapper,
  .private-image {
      border: 1px solid rgba(0, 0, 0, 0.12);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 360px) {
  .video-section {
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 20px;   
    padding-bottom: 20px;
    height: calc(50vh - 80px);  
  }
  .video-wrapper {
    max-height: calc(50vh - 112px);
    border-radius: 12px;    
  }
  /* FIX 3: Final border fix for smallest screens */
  .container,
  .entity-card,
  .service-card,
  .step,
  .marquee_card,
  .video-wrapper,
  .private-image {
      border: 1px solid rgba(0, 0, 0, 0.12);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
}
/* ==================================== New SECTION Bag ==================================== */ 
.bag-section {
    padding: 40px 6%;                                 
    margin: 0 auto;                   
    position: relative;
}

.main-card {
    width: 100%;                
    background: #f8fafc;  
    backdrop-filter: blur(10px);
    border: 1px solid black;
    border-radius: 32px;     
    display: flex;
    overflow: hidden;
    transition: var(--transition);    
}

/* LEFT SECTION */
.content-left {
    flex: 1.2;
    padding: 60px;                    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bag-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;                 
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.bag-text .main-span {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #1e40af;             
    margin-top: 5px;
    letter-spacing: -1px;
}

.bag-text .subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;                   
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bag-text .dash-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.dash-line hr {
    border: none;
    height: 2px;
    width: 48px;
    background: #2563eb;        
    flex-shrink: 0;
}

.dash-line span {
    font-size: .85rem;
    font-weight: 600;
    color: #475569;                  
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* RIGHT SECTION */
.content-right {
    flex: 1;
    background: #f8fafc;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid var(--border);  
}

.img-container {
    width: 100%;
    max-width: 320px;
    margin-bottom: 30px;
    filter: #f8fafc;  
}

.briefcase-img { 
    width: 100%; 
    height: auto; 
}

.content-right h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text);
}

/* DROPDOWN UI */
.dropdown {
    position: relative;
    width: 100%;
    max-width: 280px;
}

.connect-btn {
    width: 100%;
    background: var(--text);          
    color: #ffffff;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 100px;            
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.connect-btn:hover {
    background: var(--accent);        
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dropdown.active .connect-btn svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 240px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;
}

.dropdown.active .dropdown-menu {
    display: flex;
    animation: fadeIn 0.2s forwards;
}

@keyframes fadeIn {
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.dropdown-menu a {
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--gray-light); color: var(--accent); }

.menu-icon {
    width: 32px; height: 32px;
    background: var(--gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIVENESS – Matches page's breakpoints */
@media (max-width: 1280px) {
    .bag-section { max-width: 100%; padding: 80px 4%; } 
    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      } 
}

@media (max-width: 768px) {
    .bag-section { max-width: 100%; padding: 50px 3%; }
    .main-card { flex-direction: column; }
    .content-left { padding: 50px 30px; text-align: center; }
    .bag-text .dash-line { justify-content: center; }
    .content-right { border-left: none; border-top: 1px solid var(--border); padding: 50px 30px; }
    .dropdown-menu { bottom: auto; top: calc(100% + 10px); }
    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      }
}

@media (max-width: 480px) {
    .main-card { max-width: 100%; padding: 40px 2%; }
    .bag-text h1 { font-size: 2.8rem; }
    .dropdown { max-width: 100%; }
    .dropdown-menu { bottom: auto; top: calc(100% - 50px); }
    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      }
}

/* ==================================== SECTION 3 WIN-WIN ==================================== */
.process-section{
  width:100%;
  padding: 40px 6% ;
}

.process-section-header{
  text-align:left;
  margin-bottom:80px;
}

.process-section-title{
  font-size:clamp(2rem,5vw,3.5rem);
  margin-bottom:1rem;
  letter-spacing:-1px;
}

.process-section-description,
.process-section-subtitle{
  font-size: 1.25rem;
  color: #475569;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Row Layout */

.process-flow{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:40px;
}

.entity-card{
  background:var(--card);
  border:1px solid var(--text);
  border-radius:20px;
  padding:60px 20px;
  text-align:center;
  transition:var(--transition);
}

.entity-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
}

.entity-icon{
  width:120px;
  height:120px;
  margin:0 auto 24px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-md);
}

.entity-icon svg{
  width:50%;
  height:50%;
  fill:black;
}

.entity-title{
  font-size:2rem;
  margin-bottom:10px;
  text-transform:uppercase;
}

.entity-label{
  font-size:1rem;
  color:rgba(0,0,0,0.6);
  letter-spacing:2px;
  text-transform:uppercase;
}

/* Hub */

.hub-container{
  display:flex;
  justify-content:center;
  align-items:center;
}

.hub-circle{
  width:180px;
  height:180px;
  border-radius:50%;
  background:var(--transparent);
  display:flex;
  align-items:center;
  justify-content:center;
}

.hub-circle svg{
  width:60%;
  height:60%;
  fill:#000;
}

/* Outcome */
.outcome-text-row{
  margin-top:100px;
  text-align:center;
}

.outcome-text-row p{
    font-size: 1.05rem;
    color: #475569;
}
/* ═══════════════════════════════════════════════════════
   Responsive SECTION 3: WIN-WIN
   ════════════════════════════════════════════════════ */

@media (max-width:1200px){
  .process-section{
    padding: 60px 4% 60px;
  }
  .process-section-header{
    text-align:left;
    margin-bottom:60px;
  }
  .entity-card{
    padding:50px 20px;
  }
  .hub-circle{
    width:150px;
    height:150px;
  }
  /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width:768px){
  .process-section{
    padding:50px 3%;
  }
  .process-section-header{
    text-align:left;
    margin-bottom:50px;
  }
  .process-section-title,
  .process-section-description,
  .sprocess-ection-subtitle{
    text-align:left;
    margin-left:0;
    margin-right:0;
  }
  /* Stack layout */
  .process-flow{
    grid-template-columns:1fr;
    gap:40px;
  }
  /* Cards full width */
  .entity-card{
    padding:40px 0;
    width:100%;
  }
  /* Hub stays between */
  .hub-container{
    order:0;
  }
  .hub-circle{
    width:130px;
    height:130px;
  }
  .outcome-text-row{
    text-align:center;
    margin-top:60px;
  }
  /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width:480px){
  
  .process-section{
    padding:40px 2%;
  }
  .process-section-title{
    font-size:1.8rem;
    margin-bottom: 1rem;
  }
  .process-section-description,
  .process-section-subtitle{
    font-size: 0.95rem;
  }
  .entity-card{
    padding:30px 0;
  }
  .entity-title{
    font-size:1.5rem;
  }
  .entity-label{
    font-size:0.9rem;
  }
  .hub-circle{
    width:110px;
    height:110px;
  }
  .outcome-text-row p{
    font-size:0.95rem;
  }
  /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

/* ==================================== SECTION 4 MUTUAL ==================================== */
.mission-section {
    width: 100%;
    padding: 40px 6% ;
    flex-direction: column;
    align-items: center;
    min-height: auto;
}

.mission-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.4rem;
    letter-spacing: -1px;
}

.mission-section p {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 800px;
}

.mission-section ul li {
    position: relative;
    padding-left: 32px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.6;
    transition: var(--transition);
}

/* Custom premium bullet */
.mission-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}

/* Subtle hover sophistication */
.mission-section ul li:hover {
    transform: translateX(4px);
    color: #000;
}

@keyframes arrow {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(8px); }
}

.mission-btn {
    display: inline-block;
    padding: 10px 35px;
    background: var(--text);
    color: var(--bg);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .mission-btn:hover {
        box-shadow: var(--shadow-lg);
    }
/* ═══════════════════════════════════════════════════════
   Responsive SECTION 4: MUTUAL
   ════════════════════════════════════════════════════ */

@media (max-width:1200px){

  .mission-section{
    align-items: flex-start;   /* THIS fixes it */
    text-align: left;
    padding: 60px 4% 60px;
  }

  .mission-section h2,
  .mission-section p{
    text-align:left;
  }

}

@media (max-width: 768px) {
    .mission-section {
        padding: 50px 3%;
    }

    .mission-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .mission-section p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        text-align: left;
    }

    .mission-section ul {
        gap: 14px;
        margin-bottom: 2.5rem;
    }

    .mission-section ul li {
        font-size: 1rem;
        padding-left: 28px;
    }

    .mission-section ul li::before {
        width: 8px;
        height: 8px;
        top: 8px;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 2%;
    }

    .mission-btn {
        padding: 10px 28px;
        font-size: 0.95rem;
    }

    .mission-section h2 { margin-bottom: 1rem; font-size:1.8rem;}

    .mission-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .mission-section ul li {
        font-size: 0.90rem;
        line-height: 1.5;
    }
}    

/* ==================================== SECTION 5 PROCESS ==================================== */
.header {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.4rem;
    letter-spacing: -1px;
    text-align: center;
    padding: 40px; 
    color: #0f172a;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 0 6% 40px; 
}

.step {
    margin: 30px 0;  
    background: var(--card);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    position: relative;
    opacity: 0;
    transform: translateX(120px) scale(0.9);
    transition: all 1.1s cubic-bezier(0.25, 1, 0.3, 1);
    padding: 32px 28px;
    box-sizing: border-box;
    box-shadow: 1px 1px 1px var(--text);
}

.step.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Alternating sides */
.step:nth-child(odd) {
    margin-left: 0;
}

.step:nth-child(even) {
    margin-left: auto;
    transform: translateX(-120px) scale(0.9);
}

.step:nth-child(even).visible {
    transform: translateX(0) scale(1);
}

/* Connector lines */
.step::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: var(--text);
    transform: translateY(-50%);
}

.step:nth-child(odd)::after {
    right: -62px;
}

.step:nth-child(even)::after {
    left: -62px;
}

/* Circle dot on timeline */
.step::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--text);
    border: 3px solid #ffffff;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.step:nth-child(odd)::before {
    right: -79px;
}

.step:nth-child(even)::before {
    left: -79px;
}

.step h2 {
    font-size: clamp(22px, 4vw, 28px);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    font-weight: 700;
    color: var(--text);
}

.step ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step li {
    margin: 12px 0;
    padding-left: 36px;
    position: relative;
    font-size: 1.1rem;
    color: #475569;
    font-weight: 400;
    line-height: 1.6;
}

.step li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text);
    font-weight: bold;
    font-size: 20px;
    animation: arrow 2s infinite;
}

@keyframes arrow {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(8px); }
}
/* ═══════════════════════════════════════════════════════
   Responsive SECTION 5: TIMELINE/PROCESS SECTION
   ════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .header {
       padding: 60px 4% 60px;
    }
    
    .timeline {
        padding: 0 4% 60px;
    }
    
    .step {
        width: calc(50% - 60px);
        max-width: 380px;
        padding: 28px 24px;
    }
    
    .step::after {
        width: 50px;
    }
    
    .step:nth-child(odd)::after {
        right: -52px;
    }
    
    .step:nth-child(even)::after {
        left: -52px;
    }
    
    .step:nth-child(odd)::before {
        right: -69px;
    }
    
    .step:nth-child(even)::before {
        left: -69px;
    }

    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 50px 3%;
        font-size: 2rem;
    }
    
    .timeline {
        padding: 0 3% 50px;
    }
    
    /* Center all steps */
    .step {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        transform: translateX(0) !important;
    }
    
    .step.visible {
        transform: translateX(0) scale(1) !important;
    }
    
    /* Remove connector lines and dots */
    .step::after,
    .step::before {
        display: none;
    }
    
    .step h2 {
        font-size: 22px;
    }
    
    .step li {
        font-size: 1.05rem;
        padding-left: 28px;
    }

    .step li::before{
    left:0;
    top:-25%;
    transform:translateY(+50%);
  }

    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 480px) {
    .header {
        font-size: 1.8rem;
        padding: 40px 2% 20px;
    }

    .timeline {
        padding: 0 2% 40px;
    }
    
    .step {
        padding: 20px 16px;
        margin: 20px 0;
    }
    
    .step h2 {
        font-size: 20px;
        margin-bottom: 0.75rem;
    }
    
    .step li {
        font-size: 1rem;
        margin: 10px 0;
    }

    .step li::before{
       left:0;
       top:-25%;
       transform:translateY(+50%);
    }

    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .private-image {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

/* ==================================== SECTION 6 ENTITY ==================================== */
.education-section {
    padding: 40px 6% ;
    color: var(--text);
}

.education-wrapper {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "img1 text1"
        "btn1 ."
        ". gap" 
        "text2 img2"
        "btn2 .";
    gap: 40px 50px; /* row gap 40px, column gap 50px */
    align-items: start;
}

/* Grid areas */
.edu-img-1 { grid-area: img1; justify-self: end; }
.edu-text-1 { grid-area: text1; }
.cta-btn-1 { grid-area: btn1; justify-self: start; }
.edu-text-2 { grid-area: text2; }
.edu-img-2 { grid-area: img2; justify-self: start; }
.cta-btn-2 { grid-area: btn2; justify-self: start; }

/* Optional subtle gap row */
.gap { height: 40px; }

.edu-img {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 5 / 4;
    border-radius: 20px;
    overflow: hidden;
}

.edu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text styling – wider text area */
.edu-text-1 h2,
.edu-text-2 h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 0 16px 0;
    letter-spacing: -1px;
}

.edu-text-1 p,
.edu-text-2 p {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 36px;
    background: #000000;
    color: var(--bg);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
/* ═══════════════════════════════════════════════════════
   Responsive SECTION 6:  ENTITY 
   ════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .education-section {
        padding: 60px 4% 60px;
    }
    
    .edu-text-1 h2, .edu-text-2 h2,
    .edu-text-1 p, .edu-text-2 p {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }

    .education-wrapper {
        gap: 35px 40px;
    }
}

@media (max-width: 968px) {
    .education-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text1"
            "img1"
            "btn1"
            "text2"
            "img2"
            "btn2";
        gap: 30px;
    }
    
    .edu-img-1,
    .edu-img-2 {
        justify-self: center;
        max-width: 100%;
    }
    
    .cta-btn-1,
    .cta-btn-2 {
        justify-self: flex-start;
    }
}

@media (max-width: 768px) {
    .education-section {
        padding: 50px 3%;
    }
    
    .edu-text-1 h2,
    .edu-text-2 h2 {
        font-size: 2rem;
        text-align: left;
    }
    
    .edu-text-1 p,
    .edu-text-2 p {
        font-size: 1.1rem;
        text-align: left;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .education-section {
        padding: 40px 2%;
    }

    .edu-text-1 h2,
    .edu-text-2 h2 {
        font-size:1.8rem;
        margin-bottom: 1rem;
    }
    
    .edu-text-1 p,
    .edu-text-2 p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .cta-button {
        padding: 10px 28px;
        font-size: 0.95rem;
    }
}

/* =================================== SECTION 7 INDUSTRIES =================================== */
.industry-intro{
  padding:40px 6% ;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* HEADER ROW */
.intro-row{
  display:grid;
  grid-template-columns:1fr 280px;
  gap:80px;
  align-items:start;
}

.industry-intro small{
  letter-spacing:.2em;
  font-size:.75rem;
  color:#9ca3af;
  margin-bottom:24px;
  display:block;
}

.industry-intro h1{
  font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -1px;
}

.industry-intro p{
  font-size: 1.25rem;
  color: #475569;
  font-weight: 400;
  line-height: 1.7;
  margin-top:24px;
}

/* SIDE SIGNAL */
.side-signal{
  border-left:1px solid #e5e7eb;
  padding-left:32px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.side-signal span{
  font-size: 0.9rem;
  color: #475569;
  letter-spacing:.18em;
}

.side-signal strong{
  font-size:1.4rem;
  font-weight:800;
  letter-spacing:.02em;
}

/* BUTTON */
.industry-intro button{
  margin-top:48px;
  background:none;
  border:none;
  font-size:.9rem;
  letter-spacing:.15em;
  cursor:pointer;
  padding-bottom:6px;
  border-bottom:1px solid black;
  width:fit-content;
}

/* ======= INDUSTRY FOCUS (HIDDEN) ======= */
.industry-focus{
  display:none;
  padding:0 8vw 120px;
}

.industry-focus.active{
  display:block;
  animation:fadeUp 1s ease both;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:80px;
}

.section-head h2{
  font-size:2.6rem;
  font-weight:400;
  max-width:520px;
}

.section-head span{
  font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:64px 48px;
}

.item{
  border-top:1px solid #e5e7eb;
  padding-top:28px;
}

.item h3{
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:12px;
}

.item p{
  color:#4b5563;
  line-height:1.6;
  max-width:420px;
}

/* ANIMATION */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:none}
}
/* ═══════════════════════════════════════════════════════
   Responsive SECTION 7: INDUSTRIES SECTION
   ════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .industry-intro {
       padding: 60px 4% 60px;
    }
    
    .intro-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .side-signal {
        border-left: 1px solid #e5e7eb;
        border-top: none;
        padding-left: 10px;
        padding-top: 0;
    }
}

@media (max-width: 768px) {

    .industry-intro {
       padding: 50px 3%;
    }

    .industry-intro h1 {
        font-size: 2rem;
    }
    
    .industry-intro p {
        font-size: 1.1rem;
        text-align: left;
        padding-left: 0;
    }
    
    .industry-focus {
        padding: 0 4% 80px;
    }
    
    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .section-head h2 {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .industry-intro {
        padding: 40px 2%;
    }
    
    .industry-intro h1 {
        font-size: 1.8rem;
    }

    .industry-intro p {
        font-size: 0.95rem;
        text-align: left;
        padding-left: 0;
    }
    
    .side-signal strong {
        font-size: 1.2rem;
    }
    
    .industry-intro button {
        font-size: 0.85rem;
    }
}

/* ==================================== SECTION 8 BRAND ==================================== */
    .private-network {
        position: relative;
        width: 100%;
        padding: 40px 6%;
        color: var(--text);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        overflow: hidden;
    }

    .private-image-wrapper {
        position: relative;
        flex: 0 0 480px;
    }

    .private-image {
        width: 100%;
        height: auto;
        border-radius: 16px;
        border: 1px solid var(--text);
        object-fit: cover;
        display: block;
    }

    .private-content {
        flex: 1;
    }

    .private-network h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 1.4rem;
        letter-spacing: -1px;
    }

    .private-network p {
        font-size: 1.25rem;
        color: #475569;
        font-weight: 400;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    .dual-cta {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
        display: inline-block;
        padding: 12px 32px;
        background: var(--text);
        color: var(--bg);
        text-decoration: none;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }
/* ═══════════════════════════════════════════════════════
   Responsive SECTION 8 BRAND OF TRUST SECTION
   ════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    
    .private-network {padding: 60px 4% 60px;}
    .private-image-wrapper{
            flex: 0 0 400px;
            width: 400px;
        }

        /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      }
    }

@media (max-width: 768px) {
        .private-network {
            flex-direction: column;
            gap: 40px;
            padding: 50px 3%;
        }

        .private-image-wrapper {
            order: -1;
            width: 100%;
            max-width: 100%;
            flex: none;
        }

        .private-content {
            max-width: 100%;
        }

        .private-network h2 {
            font-size: 2rem;
        }

        .private-network p {
            font-size: 1.1rem;
        }

        .dual-cta {
            flex-direction: column;
            gap: 15px;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            text-align: center;
        }

        /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      }
       } 

@media (max-width: 480px) {
    .private-network {
            padding: 40px 2%;
            gap: 30px;
        }

        .private-network h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .private-network p {
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .btn-primary,
        .btn-secondary {
            padding: 10px 24px;
            font-size: 0.95rem;
        }

        /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      }
}    

/* ==================================== SECTION 9 TABLE ==================================== */
.what-we-do {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 6% ;
}
.section-header {
    text-align: center;
    width: 100%;
    margin-bottom: 80px;
}
.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.4rem;
    letter-spacing: -1px;
}
.section-subtitle {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 400;
    line-height: 1.7;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 48px;
    width: 100%;
    margin: 0 auto;
}
.service-card {
    position: relative;
    background: #f8fafc;
    border: 0.1px solid var(--text);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}
.icon-wrapper {
    width: 110px;
    height: 110px;
    background: var(--text);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}
.service-card:hover .icon-wrapper {
    transform: scale(1.12);
}
.icon-wrapper svg {
    width: 50px;
    height: 50px;
    fill: white;
}
.service-card h3 {
    font-size: 30px;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.service-card p {
    font-size: 1.1rem;
    color: #475569;
    /* max-width removed → text now uses full available card width */
    text-align: left;
}
.arrow-button {
    position: absolute;
    top: 32px;           /* ← changed from bottom to top */
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg);
    border: 1px solid var(--text);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}
.arrow-button:hover {
    background-color: var(--text);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.arrow-button:hover svg {
    stroke: var(--bg);
}
.arrow-button svg {
    stroke: var(--text);
    transition: stroke 0.3s ease;
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════════════════
   Responsive SECTION 9: TABLE
   ════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .what-we-do { padding: 60px 4% 60px;}
    .section-header { text-align: left;}
    .section-subtitle {text-align: left;}
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 36px;
    }
    .service-card {
        padding: 48px 36px;
    }
    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}
/* Tablets and below 768px */
@media (max-width: 768px) {
    .what-we-do { padding: 50px 3%;}
    .section-header h2 {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-card {
        padding: 40px 32px;
    }
    .service-card h3 {
        font-size: 24px;
    }
    .service-card p {
        font-size: 1.05rem;
    }
    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}
/* Mobile devices 480px and below */
@media (max-width: 480px) {
    .what-we-do {
        padding: 40px 2%;
    }
    .section-header {
        margin-bottom: 60px;
    }
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .services-grid {
        gap: 24px;
    }
    .service-card {
        padding: 32px 24px;
    }
    .icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 30px;
    }
    .icon-wrapper svg {
        width: 40px;
        height: 40px;
    }
    .service-card h3 {
        font-size: 20px;
    }
    .service-card p {
        font-size: 0.95rem;
    }
    .arrow-button {
        top: 20px;           /* adjusted for mobile – still top-right */
        right: 20px;
        width: 35px;
        height: 35px;
    }
    .arrow-button svg {
        width: 18px;
        height: 18px;
    }
    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}   

/* ==================================== SECTION 10 BUSINESS ==================================== */
.challenges-section {
    padding: 40px 6% ;
    color: var(--text);
    overflow: visible !important;
}

.challenges-wrapper {
    margin: 0 auto;
    text-align: center;
}

.challenges-wrapper h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.challenges-wrapper .subtitle {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.marquee__track {
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 40px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.25) transparent;
}

.marquee__track::-webkit-scrollbar {
    height: 8px;
}

.marquee__track::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

.marquee__track::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.25);
    border-radius: 4px;
}

.marquee__track::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.45);
}

.marquee__track:hover {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.marquee__track:hover .marquee__grid {
    animation-play-state: paused;
}

.marquee_container {
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee__grid {
    display: flex;
    gap: 1.5rem;
    animation: marquee 80s linear infinite;
    will-change: transform;
    flex-shrink: 0;
    min-width: 200%;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee__grid:hover {
    animation-play-state: paused;
}

.marquee_card {
    position: relative;
    display: flex;
    justify-content: center;
    cursor: pointer;
    width: 22em;
    max-width: 90%;
    padding: 1.5em 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 12px;
    transition: all 0.38s ease;
    overflow: hidden;
    z-index: 2;
}

.marquee_card::before,
.marquee_card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.marquee_card::before {
    background: #000;
    width: 0;
    opacity: 0;
    transition: opacity 0s ease, width 0s ease;
    transition-delay: 0.5s;
}

.marquee_card::after {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.55s ease;
}

.marquee_card .marquee_content {
    width: 19em;
    max-width: 92%;
    text-align: left;
}

.marquee_card .marquee_logo {
    margin: 0 0 1.1em;
    font-size: 2.8rem;
    font-weight: 800;
    color: #c2ebe0;
    line-height: 1;
    transition: all 0.38s ease;
}

.marquee_card .h6 {
    color: black;
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0 0 0.9em;
    line-height: 1.3;
}

.marquee_card .marquee_hover_content {
    overflow: hidden;
    max-height: 0;
    transform: translateY(1.2em);
    transition: all 0.55s cubic-bezier(0.23,1,0.32,1);
}

.marquee_card .marquee_hover_content p {
    margin: 1.1em 0 1.4em;
    color: black;
    line-height: 1.55;
    font-size: 0.97rem;
}

.marquee_card .btn {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 0.75em 1.6em;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    max-width: 200px;
    text-align: center;
}

.marquee_card .btn:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

/* Hover / Interaction states */
.marquee_card:hover {
    width: 24.5em;
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
    transform: translateY(-4px);
}

.marquee_card:hover::before {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease, width 0.5s ease;
    transition-delay: 0s;
}

.marquee_card:hover::after {
    width: 0;
}

.marquee_card:hover .marquee_logo {
    margin-bottom: 0.6em;
    color: #60a5fa;
}

.marquee_card:hover .marquee_hover_content {
    max-height: 12em;
    transform: none;
}
/* ═══════════════════════════════════════════════════════
   Responsive SECTION 10: BUSINESS
   ════════════════════════════════════════════════════ */ 

@media (max-width: 1200px) {
    .challenges-section {padding: 60px 4%;}
    .challenges-wrapper {text-align: left;}
}

@media (max-width: 768px) {
    .challenges-section {padding: 50px 3%;}
    .challenges-wrapper h2 { font-size: 2rem;}
}

@media (max-width: 480px) {
    .challenges-section {padding: 40px 2%;}
    .challenges-wrapper .subtitle {font-size: 0.95rem;}
    .challenges-wrapper h2 { font-size: 1.8rem;}
}

/* ==================================== SECTION 11 FAQ ==================================== */
.faq-section {
    padding: 40px 6% ;
    color: var(--text);
}

.faq-wrapper {
    margin: 0 auto;
    text-align: center;
}

.faq-wrapper h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    margin: 0 0 32px 0;
}

.faq-wrapper .subtitle {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.faq-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-header {
    padding: 26px 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 88px;
    transition: background 0.3s;
}

.faq-header:hover {
    background: rgba(0,0,0,0.04);
}

.faq-header h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
    font-size: clamp(16px, 4.2vw, 21px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.faq-header svg {
    transition: transform 0.4s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.faq-card.open .faq-header svg {
    transform: rotate(180deg);
}

/* BODY */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.23,1,0.32,1), padding 0.7s;
    background: rgba(249, 250, 251, 0.6);     /* very light gray – looks nice with dots */
}

.faq-card.open .faq-body {
    max-height: 900px;
    padding: 0 36px 44px;
}

.faq-body p {
    font-size: 18px;
    line-height: 1.8;
    margin: 28px 0 0;
    opacity: 0.92;
    color: #475569;
}
/* ═══════════════════════════════════════════════════════
   Responsive SECTION 11: FAQ
   ════════════════════════════════════════════════════ */               
@media (max-width: 1200px) {

    .faq-section {padding: 60px 4%;}
    .faq-wrapper {text-align: left;}
}
 
 @media (max-width: 768px) {
    .faq-section {padding: 50px 3%;}
} 

@media (max-width: 480px) {
    .faq-section {padding: 40px 2%;}
    .faq-wrapper .subtitle { font-size: 0.95rem;}
    .faq-wrapper h2 { margin-bottom: 1rem; font-size: 1.8rem;}
    .faq-header h3 { white-space: normal;}
}

/*  ------- Footer Area ------- */

.what-we-do {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 6%;
}
.section-header {
    text-align: center;
    
    width: 100%;
    margin-bottom: 80px;
}
.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.4rem;
    letter-spacing: -1px;
}
.section-subtitle {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 400;
    line-height: 1.7;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 48px;
    width: 100%;
    
    margin: 0 auto;
}
.service-card {
    position: relative;
    background: #f8fafc;
    border: 0.1px solid var(--text);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}
.icon-wrapper {
    width: 110px;
    height: 110px;
    background: var(--text);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}
.service-card:hover .icon-wrapper {
    transform: scale(1.12);
}
.icon-wrapper svg {
    width: 50px;
    height: 50px;
    fill: white;
}
.service-card h3 {
    font-size: 30px;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.service-card p {
    font-size: 1.1rem;
    color: #475569;
    /* max-width removed → text now uses full available card width */
    text-align: left;
}
.arrow-button {
    position: absolute;
    top: 32px;           /* ← changed from bottom to top */
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg);
    border: 1px solid var(--text);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}
.arrow-button:hover {
    background-color: var(--text);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.arrow-button:hover svg {
    stroke: var(--bg);
}
.arrow-button svg {
    stroke: var(--text);
    transition: stroke 0.3s ease;
    width: 20px;
    height: 20px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  padding: 2.4rem 1.8rem;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,0.28);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2.5rem;
  color: #6b7280;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}

.modal-close:hover {
  color: #111;
}

.modal-buttons-centered {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.modal-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 220px;
  text-align: center;
}

.modal-btn.primary {
  background: #000;
  color: white;
}

.modal-btn.primary:hover {
  background: #111;
  transform: translateY(-1px);
}

.modal-btn.secondary {
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid #d1d5db;
}

.modal-btn.secondary:hover {
  background: #f1f5f9;
  border-color: #9ca3af;
}

/* ═══════════════════════════════════════════════════════
   Responsive SECTION 9: TABLE
   ════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .what-we-do { padding: 60px 4% 60px;}
    .section-header { text-align: left;}
    .section-subtitle {text-align: left;}
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 36px;
    }
    .service-card {
        padding: 48px 36px;
    }
    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}
/* Tablets and below 768px */
@media (max-width: 768px) {
    .what-we-do { padding: 50px 3%;}
    .section-header h2 {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-card {
        padding: 40px 32px;
    }
    .service-card h3 {
        font-size: 24px;
    }
    .service-card p {
        font-size: 1.05rem;
    }
    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}
/* Mobile devices 480px and below */
@media (max-width: 480px) {
    .what-we-do {
        padding: 40px 2%;
    }
    .section-header {
        margin-bottom: 60px;
    }
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .services-grid {
        gap: 24px;
    }
    .service-card {
        padding: 32px 24px;
    }
    .icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 30px;
    }
    .icon-wrapper svg {
        width: 40px;
        height: 40px;
    }
    .service-card h3 {
        font-size: 20px;
    }
    .service-card p {
        font-size: 0.95rem;
    }
    .arrow-button {
        top: 20px;           /* adjusted for mobile – still top-right */
        right: 20px;
        width: 35px;
        height: 35px;
    }
    .arrow-button svg {
        width: 18px;
        height: 18px;
    }
    /* FIX 3: Final border fix for smallest screens */
    .container,
    .entity-card,
    .service-card,
    .step,
    .marquee_card,
    .video-wrapper,
    .private-image,
    .main-card {
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
}

/* ── ----------------NEW FOCUS AREAS SECTION ─────────────── */
.focus-areas-section {
  padding: 40px 6%;
  text-align: left;
}

.focus-header {
  margin: 0 auto 0;
}

.focus-areas-section h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.focus-subtitle {
  font-size: 1.25rem;
  color: #475569;
  font-weight: 400;
  line-height: 1.7;
  margin-top:24px;
}

.view-focus-btn {
  margin-top:48px;
  background:none;
  border:none;
  font-size:.9rem;
  letter-spacing:.15em;
  cursor:pointer;
  padding-bottom:6px;
  border-bottom:1px solid black;
  width:fit-content;
}

/* ── Revealed content ────────────────────────────────────────────────────── */
.focus-detail-content {
  display: none;
  margin: 0 auto;
  text-align: left;
}

.focus-detail-content.active {
  display: block;
  animation: fadeInContent 0.6s ease-out;
}

.focus-detail-content h2 {
  margin: 2.4rem 0 1.1rem;
  font-size:1.25rem;
  font-weight:700;
}

.focus-detail-content > p {
  font-size: 1.25rem;
  color: #475569;
  font-weight: 400;
  line-height: 1.7;
  margin-top:24px;

}

.focus-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 2.8rem;
}

.focus-detail-content ul li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.1rem;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #475569;
}

.focus-detail-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 1.6rem;
  line-height: 1;
}

.avoid-list li {
  color: #334155;
}

.avoid-list li::before {
  color: #ef4444;
}

.closing-note {
  font-size: 1.22rem;
  font-weight: 500;
  color: #0f172a;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-style: italic;
}

@keyframes fadeInContent {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───────────────── 1200px (Large Tablets / Small Laptops) ───────────────── */
@media (max-width:1200px){

  .focus-areas-section{
    padding:36px 4%;
  }

}

/* ───────────────── 768px (Tablets) ───────────────── */
@media (max-width:768px){

  .focus-areas-section{
    padding:32px 3%;
  }

  .focus-areas-section h1{
    font-size: 2rem;
    line-height:1.1;
  }

  .focus-subtitle{
    font-size:1.1rem;
    line-height:1.6;
  }

  .view-focus-btn{
    margin-top:32px;
    font-size:.85rem;
  }

  .focus-detail-content h2{
    font-size:2rem;
    margin:2rem 0 1rem;
  }

  .focus-detail-content > p{
    font-size:1.05rem;
    line-height:1.65;
  }

  .focus-detail-content ul{
    margin:1.5rem 0 2.2rem;
  }

  .focus-detail-content ul li{
    font-size:1rem;
    padding-left:1.8rem;
  }

  .closing-note{
    font-size:1.05rem;
    margin-top:2.4rem;
  }

}

/* ───────────────── 480px (Mobile) ───────────────── */
@media (max-width:480px){

  .focus-areas-section{
    padding:28px 2%;
  }

  .focus-areas-section h1{
    font-size: 1.8rem;
    letter-spacing:-0.5px;
  }

  .focus-subtitle{
    font-size:.95rem;
    margin-top:18px;
  }

  .view-focus-btn{
    margin-top:26px;
    font-size:.85rem;
    letter-spacing:.12em;
  }

  .focus-detail-content h2{
    font-size:1rem;
    margin:1.6rem 0 .8rem;
  }

  .focus-detail-content > p{
    font-size:.95rem;
    margin-top:16px;
  }

  .focus-detail-content ul{
    margin:1.2rem 0 1.8rem;
  }

  .focus-detail-content ul li{
    font-size:.92rem;
    padding-left:1.5rem;
    margin-bottom:.8rem;
  }

  .focus-detail-content ul li::before{
    font-size:1.3rem;
  }

  .closing-note{
    font-size:.95rem;
    margin-top:2rem;
    padding-top:1.5rem;
  }

}

.is-invalid{
    border-color : red !important;
}
.valid{
    border-color : #ddd;
}