﻿
    /* ==========================================================================
       ENTERPRISE DESIGN SYSTEM & TOKENS
       ========================================================================== */
    :root {
      --brand-navy: #062B67;
      --brand-blue: #075BCB;
      --brand-sky: #08A8F5;
      
      --neutral-50: #F8FAFC;
      --neutral-100: #F1F5F9;
      --neutral-200: #E2E8F0;
      --neutral-300: #CBD5E1;
      --neutral-400: #94A3B8;
      --neutral-500: #64748B;
      --neutral-600: #475569;
      --neutral-700: #334155;
      --neutral-800: #1E293B;
      --neutral-900: #0B1F3A;
      --white: #FFFFFF;

      --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

      --container-width: 1240px;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;

      --shadow-sm: 0 2px 4px rgba(11, 31, 58, 0.04), 0 1px 2px rgba(11, 31, 58, 0.02);
      --shadow-md: 0 10px 20px rgba(11, 31, 58, 0.06), 0 4px 8px rgba(11, 31, 58, 0.04);
      --shadow-lg: 0 24px 48px rgba(11, 31, 58, 0.08), 0 12px 24px rgba(11, 31, 58, 0.04);

      --ease: cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* CSS Reset */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      scroll-padding-top: 100px;
      overflow-x: clip;
    }

    body {
      font-family: var(--font-body);
      color: var(--neutral-800);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: clip;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-display);
      color: var(--neutral-900);
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    p {
      color: var(--neutral-600);
      font-size: 1rem;
      line-height: 1.65;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Strict list-style removal to eliminate rogue bullet points */
    ul, ol, li {
      list-style: none !important;
      list-style-type: none !important;
      margin: 0;
      padding: 0;
    }

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-wrap {
      padding: 96px 0;
    }

    .section-wrap-alt {
      background-color: var(--neutral-50);
      border-top: 1px solid rgba(0,0,0,0.03);
      border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    /* Typography kicker & headers */
    .editorial-header {
      margin-bottom: 56px;
    }

    .text-center {
      text-align: center;
    }

    .editorial-kicker {
      display: inline-block;
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--brand-blue);
      margin-bottom: 12px;
    }

    .editorial-title {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--brand-navy);
      margin-bottom: 14px;
    }

    .editorial-lead {
      font-size: 1.125rem;
      color: var(--neutral-600);
      max-width: 680px;
      margin: 0 auto;
    }

    @media (max-width: 600px) {
      .editorial-title {
        font-size: 1.8rem;
      }
      .editorial-lead {
        font-size: 1rem;
      }
    }

    /* Standard Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s var(--ease);
      white-space: nowrap;
    }

    @media (max-width: 600px) {
      .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
      }
    }

    .btn-primary {
      background-color: var(--brand-navy);
      color: var(--white);
      border-color: var(--brand-navy);
    }

    .btn-primary:hover {
      background-color: var(--brand-blue);
      border-color: var(--brand-blue);
      color: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(7, 91, 203, 0.25);
    }

    .btn-secondary {
      background-color: var(--white);
      color: var(--neutral-800);
      border-color: var(--neutral-300);
    }

    .btn-secondary:hover {
      background-color: var(--neutral-50);
      border-color: var(--neutral-400);
      color: var(--neutral-900);
    }

    .btn-white {
      background-color: var(--white);
      color: var(--brand-navy);
      font-weight: 700;
    }

    .btn-white:hover {
      background-color: var(--neutral-100);
      transform: translateY(-1px);
    }

    .btn-outline-white {
      background-color: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .btn-outline-white:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: var(--white);
    }

    /* ==========================================================================
       1. HEADER / NAVBAR
       ========================================================================== */
    .site-nav {
      position: sticky;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--neutral-200);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .brand-wrap {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    /* Official Full Logo Display */
    .brand-logo-full {
      height: 48px;
      width: auto;
      max-width: 260px;
      object-fit: contain;
      display: block;
    }

    .nav-links-menu {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-link-anchor {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--neutral-700);
      position: relative;
      padding: 8px 0;
      transition: color 0.2s ease;
    }

    .nav-link-anchor:hover,
    .nav-link-anchor.active {
      color: var(--brand-blue);
    }

    .nav-link-anchor.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--brand-blue);
      border-radius: 2px;
    }

    .nav-right-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    /* Dropdown Styles */
    .nav-dropdown {
      position: relative;
    }

    .dropdown-arrow {
      font-size: 0.8rem;
      margin-left: 4px;
      display: inline-block;
      transition: transform 0.2s ease;
    }

    .nav-dropdown:hover .dropdown-arrow {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 200px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      border-radius: var(--radius-sm);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.2s ease;
      display: flex;
      flex-direction: column;
      padding: 12px 0;
      z-index: 100;
      border: 1px solid var(--neutral-200);
    }

    .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu .nav-link-anchor {
      display: block;
      padding: 10px 24px;
      font-size: 0.9rem;
      color: var(--neutral-700);
      transition: background 0.2s, color 0.2s;
      font-weight: 500;
    }

    .dropdown-menu .nav-link-anchor::after {
      display: none; /* No underline on dropdown items */
    }

    .dropdown-menu .nav-link-anchor:hover {
      background-color: var(--neutral-50);
      color: var(--brand-blue);
    }

    .nav-toggle-btn {
      display: none;
      background: none;
      border: none;
      padding: 4px;
      color: var(--brand-navy);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-only-btn {
      display: none;
      width: 100%;
      margin-top: 16px;
    }

    @media (max-width: 992px) {
      .nav-links-menu {
        gap: 16px;
      }
      .nav-link-anchor {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 768px) {
      .nav-links-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        border-left: 1px solid var(--neutral-200);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
        overflow-y: auto;
      }
      .nav-links-menu.is-open {
        right: 0;
      }
      
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 8px 0 0 20px; 
        border: none;
        min-width: 100%;
        display: none;
      }
      .nav-dropdown.is-expanded .dropdown-menu {
        display: flex;
      }
      .nav-dropdown.is-expanded .dropdown-arrow {
        transform: rotate(180deg);
      }
      .dropdown-menu .nav-link-anchor {
        padding: 8px 0;
      }
      .nav-dropdown:hover .dropdown-arrow {
        transform: none; /* Disable rotation on mobile */
      }
      .nav-toggle-btn {
        display: flex;
      }
      .desktop-only-btn {
        display: none !important;
      }
      .mobile-only-btn {
        display: block;
      }
    }

    /* ==========================================================================
       2. HERO SECTION
       ========================================================================== */
    .hero-layout {
      padding: 80px 0 96px;
      background: radial-gradient(circle at 90% 10%, rgba(8, 168, 245, 0.05) 0%, transparent 60%),
                  radial-gradient(circle at 10% 90%, rgba(7, 91, 203, 0.04) 0%, transparent 60%);
      border-bottom: 1px solid var(--neutral-200);
    }

    .hero-columns {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 56px;
    }

    .hero-kicker-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--brand-navy);
      background-color: #EBF4FF;
      border: 1px solid #D0E4FF;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 24px;
    }

    .hero-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: var(--brand-sky);
    }

    .hero-main-heading {
      font-size: 3.4rem;
      font-weight: 800;
      line-height: 1.12;
      color: var(--brand-navy);
      margin-bottom: 18px;
      letter-spacing: -0.03em;
    }

    .hero-main-heading span {
      color: var(--brand-blue);
    }

    .hero-sub-heading {
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--neutral-800);
      margin-bottom: 16px;
      line-height: 1.4;
    }

    .hero-text-lead {
      font-size: 1.05rem;
      color: var(--neutral-600);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 580px;
    }

    .hero-button-group {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .hero-metrics-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding-top: 32px;
      border-top: 1px solid var(--neutral-200);
    }

    .hero-metric-figure {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      color: var(--brand-navy);
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .hero-metric-caption {
      font-size: 0.8125rem;
      color: var(--neutral-500);
      font-weight: 600;
      line-height: 1.4;
    }

    /* Hero Right Showcase: Clean Architecture Card */
    .hero-showcase-card {
      background: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .hero-showcase-header {
      padding: 16px 20px;
      background: var(--neutral-50);
      border-bottom: 1px solid var(--neutral-200);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .showcase-status-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #065F46;
      background-color: #D1FAE5;
      padding: 4px 10px;
      border-radius: 12px;
    }

    .showcase-status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: #10B981;
    }

    .showcase-system-title {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--neutral-700);
    }

    .hero-showcase-img {
      width: 100%;
      height: 320px;
      object-fit: cover;
    }

    .hero-showcase-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 16px 20px;
      background-color: var(--white);
      border-top: 1px solid var(--neutral-200);
      gap: 16px;
    }

    .showcase-metric-col-title {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--brand-blue);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 2px;
    }

    .showcase-metric-col-val {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--brand-navy);
    }

    @media (max-width: 992px) {
      .hero-columns {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .hero-main-heading {
        font-size: 2.8rem;
      }
      .hero-showcase-img {
        height: 260px;
      }
    }

    @media (max-width: 600px) {
      .hero-main-heading {
        font-size: 2.2rem;
      }
      .hero-sub-heading {
        font-size: 1.15rem;
      }
      .hero-button-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
      }
      .hero-button-group .btn {
        width: 100%;
      }
      .hero-metrics-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .hero-metrics-bar > div {
        text-align: center;
      }
      .hero-metrics-bar > div:last-child {
        grid-column: span 2;
      }
      .hero-metric-figure {
        font-size: 1.6rem;
      }
      .hero-showcase-metrics {
        grid-template-columns: 1fr;
      }
    }

    /* ==========================================================================
       3. CLIENTS STRIP
       ========================================================================== */
    .clients-strip {
      padding: 36px 0;
      background-color: var(--white);
      border-bottom: 1px solid var(--neutral-200);
    }

    .clients-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .clients-intro-text {
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--neutral-500);
    }

    .clients-marks-row {
      display: flex;
      align-items: center;
      gap: 36px;
      flex-wrap: wrap;
    }

    .client-monogram {
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: var(--neutral-400);
      transition: color 0.2s ease;
      cursor: default;
      user-select: none;
    }

    .client-monogram:hover {
      color: var(--brand-blue);
    }

    /* ==========================================================================
       4. ABOUT SECTION
       ========================================================================== */
    .about-split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 64px;
      margin-bottom: 64px;
    }

    .about-photo-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--neutral-200);
      box-shadow: var(--shadow-md);
      position: relative;
    }

    .about-feature-img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }

    .about-content-block .editorial-title {
      font-size: 2.2rem;
      margin-bottom: 18px;
    }

    .about-narrative-lead {
      font-size: 1.1rem;
      color: var(--neutral-800);
      font-weight: 500;
      margin-bottom: 16px;
      line-height: 1.65;
    }

    .about-narrative-body {
      margin-bottom: 28px;
    }

    .about-pillars-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 32px;
    }

    .pillar-line {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--neutral-900);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pillar-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: var(--brand-blue);
      flex-shrink: 0;
    }

    /* 3 Equal Stat Cards */
    .stat-cards-matrix {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .stat-box-card {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      text-align: center;
      box-shadow: var(--shadow-sm);
    }

    .stat-figure-val {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--brand-blue);
      margin-bottom: 6px;
      line-height: 1.1;
    }

    .stat-text-label {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--neutral-600);
    }

    @media (max-width: 992px) {
      .about-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .about-feature-img {
        height: 280px;
      }
      .stat-cards-matrix {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .about-pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    /* ==========================================================================
       5. SERVICES (8 EQUAL STANDARDIZED CARDS)
       ========================================================================== */
    .services-equal-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    @media (max-width: 1200px) {
      .services-equal-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .services-equal-grid {
        grid-template-columns: 1fr;
      }
    }

    .service-module-card {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
    }

    .service-module-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-blue);
    }

    .service-img-container {
      width: 100%;
      height: 175px;
      overflow: hidden;
      background-color: var(--neutral-100);
    }

    .service-real-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .service-module-card:hover .service-real-img {
      transform: scale(1.04);
    }

    .service-card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .service-card-tag {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--brand-blue);
      margin-bottom: 8px;
    }

    .service-card-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--brand-navy);
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .service-card-desc {
      font-size: 0.9rem;
      color: var(--neutral-600);
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .service-card-cta {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--brand-blue);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
    }

    .service-card-cta:hover {
      color: var(--brand-navy);
      gap: 9px;
    }

    /* ==========================================================================
       6. TECHNOLOGY STACK
       ========================================================================== */
    .tech-tabs-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-bottom: 40px;
    }

    .tech-tab-link {
      background-color: var(--white);
      border: 1px solid var(--neutral-300);
      padding: 9px 20px;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--neutral-700);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .tech-tab-link:hover {
      border-color: var(--brand-blue);
      color: var(--brand-blue);
    }

    .tech-tab-link.active {
      background-color: var(--brand-navy);
      color: var(--white);
      border-color: var(--brand-navy);
    }

    .tech-group-pane {
      display: none;
    }

    .tech-group-pane.active {
      display: block;
    }

    .tech-modular-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
    }

    .tech-brick {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-md);
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      height: 84px;
      box-shadow: var(--shadow-sm);
      transition: all 0.2s ease;
    }

    .tech-brick:hover {
      border-color: var(--brand-blue);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .tech-marker {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--brand-blue);
      flex-shrink: 0;
    }

    .tech-title-text {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--brand-navy);
    }

    .tech-sub-type {
      font-size: 0.78rem;
      color: var(--neutral-500);
    }

    /* ==========================================================================
       7. WHY CHOOSE US
       ========================================================================== */
    .why-section-split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 48px;
      align-items: stretch;
    }

    .why-lead-panel {
      background-color: var(--brand-navy);
      color: var(--white);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      box-shadow: var(--shadow-md);
    }

    .why-lead-panel h3 {
      font-size: 2rem;
      color: var(--white);
      margin-bottom: 16px;
    }

    .why-lead-panel p {
      color: var(--neutral-300);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .why-manifesto-quote {
      border-left: 3px solid var(--brand-sky);
      padding-left: 20px;
      margin-top: auto;
    }

    .why-manifesto-quote p {
      font-style: italic;
      color: #E2E8F0;
      font-size: 0.95rem;
      margin-bottom: 8px;
    }

    .why-manifesto-source {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--brand-sky);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .why-equal-matrix {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    @media (max-width: 640px) {
      .why-equal-matrix {
        grid-template-columns: 1fr;
      }
    }

    .why-item-card {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.2s ease;
    }

    .why-item-card:hover {
      border-color: var(--brand-blue);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .why-item-num {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--brand-blue);
      background-color: #EBF4FF;
      display: inline-block;
      padding: 2px 8px;
      border-radius: var(--radius-sm);
      margin-bottom: 12px;
      align-self: flex-start;
    }

    .why-item-title {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--brand-navy);
      margin-bottom: 8px;
    }

    .why-item-text {
      font-size: 0.875rem;
      color: var(--neutral-600);
      line-height: 1.6;
    }

    @media (max-width: 992px) {
      .why-section-split {
        grid-template-columns: 1fr;
      }
    }

    /* ==========================================================================
       8. WORK PROCESS (CONNECTED ROADMAP)
       ========================================================================== */
    .process-timeline-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    @media (max-width: 1024px) {
      .process-timeline-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 640px) {
      .process-timeline-grid {
        grid-template-columns: 1fr;
      }
    }

    .process-step-node {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-md);
      padding: 28px 20px;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: var(--shadow-sm);
      transition: all 0.2s ease;
    }

    .process-step-node:hover {
      border-color: var(--brand-blue);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .process-step-order {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--brand-sky);
      margin-bottom: 12px;
      line-height: 1;
    }

    .process-step-name {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--brand-navy);
      margin-bottom: 8px;
    }

    .process-step-detail {
      font-size: 0.85rem;
      color: var(--neutral-600);
      line-height: 1.55;
    }

    /* ==========================================================================
       9. PROJECTS / PORTFOLIO
       ========================================================================== */
    .portfolio-filter-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 40px;
    }

    .portfolio-filter-btn {
      background-color: var(--white);
      border: 1px solid var(--neutral-300);
      padding: 8px 18px;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--neutral-700);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .portfolio-filter-btn:hover {
      border-color: var(--brand-blue);
      color: var(--brand-blue);
    }

    .portfolio-filter-btn.active {
      background-color: var(--brand-navy);
      color: var(--white);
      border-color: var(--brand-navy);
    }

    .portfolio-equal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    @media (max-width: 992px) {
      .portfolio-equal-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .portfolio-equal-grid {
        grid-template-columns: 1fr;
      }
    }

    .portfolio-item-card {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    }

    .portfolio-item-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-blue);
    }

    .portfolio-thumb-wrap {
      width: 100%;
      height: 210px;
      overflow: hidden;
      background-color: var(--neutral-100);
    }

    .portfolio-thumb-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .portfolio-item-card:hover .portfolio-thumb-img {
      transform: scale(1.04);
    }

    .portfolio-info-box {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .portfolio-card-category {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--brand-blue);
      margin-bottom: 8px;
    }

    .portfolio-card-heading {
      font-size: 1.18rem;
      font-weight: 700;
      color: var(--brand-navy);
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .portfolio-card-brief {
      font-size: 0.9rem;
      color: var(--neutral-600);
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .portfolio-tags-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
    }

    .portfolio-tech-tag {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--neutral-600);
      background-color: var(--neutral-100);
      padding: 3px 10px;
      border-radius: var(--radius-sm);
    }

    .portfolio-view-link {
      margin-top: auto;
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--brand-blue);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* ==========================================================================
       10. TESTIMONIALS
       ========================================================================== */
    .testimonial-center-card {
      max-width: 820px;
      margin: 0 auto;
    }

    .testimonial-white-card {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-lg);
      padding: 44px;
      box-shadow: var(--shadow-md);
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testimonial-stars-row {
      color: #F59E0B;
      font-size: 1.1rem;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }

    .testimonial-quote-p {
      font-size: 1.15rem;
      color: var(--neutral-800);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 24px;
    }

    .testimonial-profile-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar-img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      background-color: var(--neutral-200);
    }

    .testimonial-name-h4 {
      font-weight: 700;
      color: var(--brand-navy);
      font-size: 0.95rem;
    }

    .testimonial-role-caption {
      font-size: 0.825rem;
      color: var(--neutral-500);
    }

    .testimonial-controls-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 28px;
    }

    .testimonial-btn {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--neutral-300);
      background-color: var(--white);
      color: var(--neutral-700);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      transition: all 0.2s ease;
    }

    .testimonial-btn:hover {
      background-color: var(--brand-navy);
      color: var(--white);
      border-color: var(--brand-navy);
    }

    .testimonial-dots-row {
      display: flex;
      gap: 8px;
    }

    .testimonial-dot-circle {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: var(--neutral-300);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .testimonial-dot-circle.active {
      background-color: var(--brand-blue);
      width: 24px;
      border-radius: 5px;
    }

    /* ==========================================================================
       11. BLOG & INSIGHTS
       ========================================================================== */
    .blog-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 48px;
    }

    @media (max-width: 992px) {
      .blog-cards-grid {
        grid-template-columns: 1fr;
      }
    }

    .blog-item-module {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: var(--shadow-sm);
      transition: all 0.2s ease;
    }

    .blog-item-module:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-blue);
    }

    .blog-header-img-wrap {
      width: 100%;
      height: 190px;
      overflow: hidden;
      background-color: var(--neutral-100);
    }

    .blog-visual-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .blog-item-module:hover .blog-visual-img {
      transform: scale(1.04);
    }

    .blog-details-area {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .blog-meta-flex {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.8rem;
      color: var(--neutral-500);
      margin-bottom: 10px;
    }

    .blog-category-tag {
      font-weight: 700;
      color: var(--brand-blue);
    }

    .blog-post-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--brand-navy);
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .blog-post-intro {
      font-size: 0.875rem;
      color: var(--neutral-600);
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .blog-read-action {
      margin-top: auto;
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--brand-blue);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* ==========================================================================
       12. FAQS
       ========================================================================== */
    .faq-layout-container {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-card-row {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-sm);
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color 0.2s ease;
    }

    .faq-card-row.active {
      border-color: var(--brand-blue);
    }

    .faq-toggle-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--brand-navy);
      cursor: pointer;
    }

    .faq-toggle-trigger:hover {
      color: var(--brand-blue);
    }

    .faq-symbol-indicator {
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--brand-navy);
      line-height: 1;
      transition: transform 0.2s ease;
    }

    .faq-card-row.active .faq-symbol-indicator {
      transform: rotate(45deg);
      color: var(--brand-blue);
    }

    .faq-content-drawer {
      display: none;
      padding: 0 24px 24px;
      font-size: 0.9375rem;
      color: var(--neutral-600);
      line-height: 1.7;
    }

    .faq-card-row.active .faq-content-drawer {
      display: block;
    }

    /* ==========================================================================
       13. CONTACT SECTION (NO GSTIN / NO LLPIN)
       ========================================================================== */
    .contact-split-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 48px;
    }

    @media (max-width: 992px) {
      .contact-split-grid {
        grid-template-columns: 1fr;
      }
    }

    .contact-info-panel {
      background-color: var(--brand-navy);
      color: var(--white);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact-info-panel h3 {
      font-size: 1.8rem;
      color: var(--white);
      margin-bottom: 12px;
    }

    .contact-info-lead {
      color: var(--neutral-300);
      font-size: 1rem;
      margin-bottom: 36px;
      line-height: 1.6;
    }

    .contact-channels-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 36px;
    }

    .contact-channel-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .contact-channel-type {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--brand-sky);
    }

    .contact-channel-value {
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
    }

    .contact-channel-value a:hover {
      color: var(--brand-sky);
    }

    .contact-guarantee-note {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 24px;
      font-size: 0.85rem;
      color: var(--neutral-400);
    }

    .contact-form-card {
      background-color: var(--white);
      border: 1px solid var(--neutral-200);
      border-radius: var(--radius-lg);
      padding: 44px;
      box-shadow: var(--shadow-sm);
    }

    .form-two-col {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    @media (max-width: 600px) {
      .form-two-col {
        grid-template-columns: 1fr;
      }
    }

    .form-group-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 18px;
    }

    .input-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brand-navy);
    }

    .text-input {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--neutral-300);
      border-radius: var(--radius-sm);
      background-color: var(--white);
      color: var(--neutral-900);
      font-size: 0.925rem;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .text-input:focus {
      outline: none;
      border-color: var(--brand-blue);
      box-shadow: 0 0 0 3px rgba(7, 91, 203, 0.12);
    }

    textarea.text-input {
      resize: vertical;
      min-height: 110px;
    }

    .privacy-notice-text {
      font-size: 0.8rem;
      color: var(--neutral-500);
      margin-top: 12px;
    }

    .form-alert-success {
      display: none;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      background-color: #ECFDF5;
      color: #065F46;
      border: 1px solid #A7F3D0;
      font-size: 0.875rem;
      margin-top: 16px;
    }

    .form-alert-success.show {
      display: block;
    }

    /* ==========================================================================
       14. CTA BANNER
       ========================================================================== */
    .cta-billboard {
      background-color: var(--brand-navy);
      padding: 80px 0;
      border-top: 1px solid var(--neutral-700);
      text-align: center;
    }

    .cta-billboard-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .cta-billboard-title {
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 14px;
    }

    .cta-billboard-lead {
      font-size: 1.15rem;
      color: var(--neutral-300);
      margin-bottom: 32px;
    }

    @media (max-width: 600px) {
      .cta-billboard-title {
        font-size: 2rem;
      }
      .cta-billboard-lead {
        font-size: 1rem;
      }
    }

    .cta-billboard-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    /* ==========================================================================
       15. FOOTER (NO GSTIN / NO LLPIN)
       ========================================================================== */
    .corporate-footer {
      background-color: #031535;
      color: var(--neutral-300);
      padding-top: 80px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-columns-row {
      display: grid;
      grid-template-columns: 1.4fr 0.9fr 1fr 0.9fr;
      gap: 40px;
      margin-bottom: 56px;
    }

    @media (max-width: 992px) {
      .footer-columns-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .footer-columns-row {
        grid-template-columns: 1fr;
      }
    }

    .footer-brand-badge {
      display: inline-block;
      background: var(--white);
      padding: 10px 18px;
      border-radius: var(--radius-sm);
      margin-bottom: 18px;
    }

    .footer-logo-img {
      height: 38px;
      width: auto;
      display: block;
    }

    .footer-motto {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }

    .footer-summary-para {
      font-size: 0.875rem;
      color: var(--neutral-400);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .footer-social-nav {
      display: flex;
      gap: 16px;
    }

    .footer-social-link {
      font-size: 0.85rem;
      color: var(--neutral-400);
      font-weight: 600;
    }

    .footer-social-link:hover {
      color: var(--brand-sky);
    }

    .footer-section-header {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 18px;
    }

    .footer-links-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-item-link {
      font-size: 0.875rem;
      color: var(--neutral-400);
    }

    .footer-item-link:hover {
      color: var(--white);
    }

    .footer-copyright-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.825rem;
      color: var(--neutral-500);
    }

    @media (max-width: 768px) {
      .footer-copyright-bar {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
      }
    }
  

      .slider-marquee {
        overflow: hidden;
        white-space: nowrap;
        flex-grow: 1;
        position: relative;
        padding: 10px 0;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-padding: 10px 0;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      }
      .slider-track {
        display: inline-flex;
        align-items: center;
        animation: scroll 20s linear infinite;
      }
      .slider-track:hover {
        animation-play-state: paused;
      }
      .slider-logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 40px;
        transition: transform 0.3s ease;
      }
      .slider-logo svg, .slider-logo img {
        height: 40px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        filter: grayscale(100%) opacity(0.6);
        transition: filter 0.3s ease, transform 0.3s ease;
      }
      .slider-logo:hover svg, .slider-logo:hover img {
        filter: grayscale(0%) opacity(1);
      }
      .slider-logo:hover {
        transform: scale(1.05);
      }
      @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
      .clients-flex {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
      }
      .clients-intro-text {
        flex: 0 0 35%;
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--neutral-700);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-align: left;
        line-height: 1.4;
      }
      .slider-marquee {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        padding: 10px 0;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-padding: 10px 0;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      }
      @media (max-width: 992px) {
        .clients-flex {
          flex-direction: column;
          gap: 24px;
        }
        .clients-intro-text {
          flex: none;
          width: 100%;
          text-align: center;
        }
        .slider-marquee {
          flex: none;
          width: 100%;
        }
      }
    

            .tech-stack-container {
              display: flex;
              gap: 60px;
              align-items: flex-start;
              margin-top: 20px;
            }
            .tech-sidebar {
              flex: 0 0 260px;
              display: flex;
              flex-direction: column;
              gap: 8px;
            }
            .tech-tab {
              text-align: left;
              padding: 12px 16px;
              background-color: transparent;
              border: none;
              border-left: 3px solid transparent;
              color: var(--neutral-500);
              font-weight: 600;
              font-size: 0.95rem;
              cursor: pointer;
              transition: all 0.2s ease;
              border-radius: 0 4px 4px 0;
            }
            .tech-tab:hover {
              color: var(--brand-blue);
              background-color: var(--neutral-50);
            }
            .tech-tab.active {
              background-color: #F0F4FF;
              color: var(--brand-blue);
              border-left: 3px solid var(--brand-blue);
            }
            .tech-content {
              flex: 1;
              padding-top: 10px;
            }
            .tech-pane {
              display: none;
              animation: fadeIn 0.3s ease;
            }
            .tech-pane.active {
              display: block;
            }
            .tech-grid {
              display: grid;
              grid-template-columns: repeat(6, 1fr);
              gap: 40px 20px;
              text-align: center;
            }
            .tech-item {
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: flex-start;
              gap: 12px;
            }
            .tech-item img {
              height: 48px;
              width: auto;
              max-width: 80px;
              object-fit: contain;
              filter: grayscale(10%) contrast(110%);
            }
            .tech-item span {
              font-size: 0.85rem;
              font-weight: 600;
              color: var(--neutral-600);
              line-height: 1.2;
              text-align: center;
            }
            @media (max-width: 992px) {
              .tech-stack-container {
                flex-direction: column;
                align-items: stretch;
              }
              .tech-content {
                width: 100%;
              }
              .tech-sidebar {
                flex: 1 1 auto;
                width: 100%;
                flex-direction: row;
                overflow-x: auto;
                gap: 8px;
                padding-bottom: 12px;
                -ms-overflow-style: none;
                scrollbar-width: none;
              }
              .tech-sidebar::-webkit-scrollbar { display: none; }
              .tech-tab {
                white-space: nowrap;
                border-left: none;
                border-bottom: 3px solid var(--neutral-300);
              }
              .tech-tab:hover {
                border-bottom-color: var(--brand-blue);
              }
              .tech-tab.active {
                border-left: none;
                border-bottom: 3px solid #3361DB;
              }
              .tech-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px 16px;
              }
            }
            @media (max-width: 600px) {
              .tech-grid {
                grid-template-columns: repeat(2, 1fr);
              }
            }
            @keyframes fadeIn {
              from { opacity: 0; transform: translateY(10px); }
              to { opacity: 1; transform: translateY(0); }
            }
          

      .process-s-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        position: relative;
        text-align: center;
      }
      .process-step-node {
        background-color: transparent;
        padding: 20px;
        position: relative;
        border: none;
        box-shadow: none;
      }
      .process-step-node:hover {
        transform: none;
      }
      .process-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--neutral-100);
        color: var(--brand-blue);
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        position: relative;
        z-index: 2;
        border: 2px solid var(--brand-blue);
      }
      .process-step-name {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--brand-navy);
      }
      .process-step-detail {
        font-size: 0.85rem;
        color: var(--neutral-600);
        line-height: 1.5;
      }
      
      /* Order for the S curve */
      .step-1 { grid-area: 1 / 1 / 2 / 2; }
      .step-2 { grid-area: 1 / 2 / 2 / 3; }
      .step-3 { grid-area: 1 / 3 / 2 / 4; }
      .step-4 { grid-area: 2 / 3 / 3 / 4; }
      .step-5 { grid-area: 2 / 2 / 3 / 3; }
      .step-6 { grid-area: 2 / 1 / 3 / 2; }

      /* Dashed line curves between elements can be complex to do fully responsively. 
         We'll use simpler flexbox fallback on mobile. */
      @media (max-width: 992px) {
        .process-s-grid {
          display: flex;
          flex-direction: column;
        }
      }
    

      .coverflow-container {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 40px 0;
        overflow: hidden;
      }
      .coverflow-card {
        position: absolute;
        width: 60%;
        max-width: 600px;
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: all 0.5s var(--ease);
        opacity: 0;
        z-index: 1;
        transform: scale(0.8) translateX(0);
        pointer-events: none;
      }
      .coverflow-card.active {
        opacity: 1;
        z-index: 3;
        transform: scale(1) translateX(0);
        pointer-events: auto;
      }
      .coverflow-card.prev {
        opacity: 0.3;
        z-index: 2;
        transform: scale(0.8) translateX(-110%);
      }
      .coverflow-card.next {
        opacity: 0.3;
        z-index: 2;
        transform: scale(0.8) translateX(110%);
      }
      
      .testimonial-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
      }
      .nav-btn {
        background: var(--brand-blue);
        color: white;
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        transition: background 0.2s;
      }
      .nav-btn:hover { background: var(--brand-navy); }
      .dots {
        display: flex;
        gap: 8px;
      }
      .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--neutral-300);
        transition: all 0.3s ease;
      }
      .dot.active {
        background: var(--brand-blue);
        width: 24px;
        border-radius: 10px;
      }
      
      .cf-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
      }
      .cf-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        background: var(--neutral-200);
      }
      .cf-name { font-weight: 700; color: var(--brand-navy); font-size: 1.1rem; }
      .cf-role { font-size: 0.85rem; color: var(--neutral-500); }
      .cf-stars { color: #F59E0B; font-size: 0.9rem; margin-top: 4px; }
      .cf-text { font-size: 1rem; color: var(--neutral-700); line-height: 1.6; font-style: italic; }
      
      @media (max-width: 768px) {
        .coverflow-card { width: 90%; padding: 24px; }
        .coverflow-card.prev { transform: scale(0.85) translateX(-40%); opacity: 0; }
        .coverflow-card.next { transform: scale(0.85) translateX(40%); opacity: 0; }
        .coverflow-container { height: 450px; }
      }
    


/* Team Card Styles */
.team-card {
  background: white; 
  border-radius: 16px; 
  padding: 40px 30px; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
  width: 340px; 
  text-align: center; 
  border: 1px solid rgba(0,0,0,0.03); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}
.team-social-link {
  color: #999; 
  font-size: 1.3rem; 
  transition: color 0.3s;
}
.team-social-link:hover {
  color: var(--brand-blue);
}

/* Service Details Layout */
.service-details-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 60px;
}
@media (max-width: 991px) {
  .service-details-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .dropdown-menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: block !important;
    box-shadow: none !important;
    padding-left: 20px !important;
    background: transparent !important;
    margin-top: 10px;
    opacity: 1 !important;
    transform: none !important;
  }
  .dropdown-arrow {
    display: none;
  }
}

/* Responsive Hero Fixes */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }
  .hero-subheadline {
    font-size: 1rem !important;
    padding: 0 15px !important;
  }
  .hero-section .btn {
    padding: 12px 25px !important;
    font-size: 1rem !important;
    width: 100% !important;
    margin-bottom: 10px !important;
  }
  .story-image {
    float: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 30px !important;
  }
}

*/
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
@media (max-width: 991px) {
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9; /* Light neutral track */
}
::-webkit-scrollbar-thumb {
  background: var(--brand-blue);
  border-radius: 6px;
  border: 3px solid #f1f5f9; /* Creates a padded effect */
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-navy);
}
/* Firefox support */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-blue) #f1f5f9;
}



*/
    position: relative !important;
    top: auto !important;
    left: auto !important;
    box-shadow: none !important;
    padding-left: 20px !important;
    background: transparent !important;
    margin-top: 10px;
    border-left: 2px solid var(--brand-blue) !important;
    margin-left: 10px !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Show when toggled via JS */
  .nav-dropdown.is-expanded .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-dropdown.is-expanded .dropdown-arrow {
    transform: rotate(180deg) !important;
  }
}

/* Foolproof Mobile Dropdown: Always Expanded */
@media (max-width: 991px) {
  .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    box-shadow: none !important;
    padding-left: 15px !important;
    background: transparent !important;
    margin-top: 5px !important;
    border-left: 2px solid var(--brand-blue) !important;
    margin-left: 10px !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .dropdown-arrow {
    display: none !important;
  }
  .dropdown-menu .nav-link-anchor {
    padding: 8px 0 !important;
  }
}


/* ==========================================================================
   DYNAMIC CMS CONTENT STYLING
   ========================================================================== */
.cms-content {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.9;
}
.cms-content p {
  margin-bottom: 25px;
}
.cms-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 20px;
  font-family: var(--font-display);
}
.cms-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 30px 0 15px;
  font-family: var(--font-display);
}
.cms-content blockquote {
  border-left: 5px solid var(--brand-blue);
  padding: 20px 30px;
  background: #f8f9fa;
  border-radius: 0 12px 12px 0;
  margin: 40px 0;
  font-size: 1.25rem;
  font-style: italic;
  color: #333;
}
.cms-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.cms-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #555;
}
.cms-content ul li::before {
  content: "\f058"; /* FontAwesome check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-blue);
}
.cms-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
