  :root {
    --gold: #1565C0;
    --gold-light: #1976D2;
    --gold-dark: #0D47A1;
    --gold-glow: rgba(21, 101, 192, 0.3);
    --navy: #F8FAFF;
    --navy-mid: #EEF4FF;
    --navy-light: #E3EDFF;
    --white: #0D1B3E;
    --cream: #DDEEFF;
    --gray: #5A6785;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
  }

  /* GRAIN */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.25;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 4rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(248, 250, 255, 0.98), rgba(248, 250, 255, 0));
    transition: all 0.4s ease;
  }

  nav.scrolled {
    background: rgba(248, 250, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(21, 101, 192, 0.2);
    box-shadow: 0 2px 20px rgba(21, 101, 192, 0.08);
    height: 65px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo-icon {
    height: 40px;
    width: auto;
  }

  .nav-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    line-height: 1.1;
  }

  .nav-logo-text span {
    display: block;
    font-size: 0.55rem;
    color: var(--gray);
    letter-spacing: 0.3em;
    font-weight: 400;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(13, 27, 62, 0.7);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 8px 20px;
    border-radius: 2px;
    transition: all 0.3s !important;
  }

  .nav-cta::after {
    display: none !important;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    color: #FFFFFF !important;
  }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .nav-hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s;
  }

  /* ═══════════════════════════════════════════════
     HERO SLIDER — Shapoorji Pallonji Reference Style
  ═══════════════════════════════════════════════ */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    padding-top: 80px;
    /* Offset for fixed navbar */
    overflow: hidden;
    background: #0D1B3E;
  }

  /* Slider container */
  .hero-slider {
    position: absolute;
    inset: 0;
  }

  /* Individual slide */
  .hero-slide {
    position: absolute;
    inset: 0;
    background: var(--slide-bg);
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

  .hero-slide.active {
    opacity: 1;
    pointer-events: all;
  }

  .hero-slide.prev {
    opacity: 0;
  }

  /* Visual side — animated geometric shapes */
  .hero-slide-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-slide-shapes {
    position: absolute;
    inset: 0;
  }

  .hss {
    position: absolute;
    border-radius: 50%;
    background: rgba(21, 101, 192, 0.12);
    border: 1px solid rgba(21, 101, 192, 0.15);
    animation: hssFloat 8s ease-in-out infinite;
  }

  .hss-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
  }

  .hss-2 {
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
    background: rgba(21, 101, 192, 0.08);
  }

  .hss-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -4s;
    background: rgba(21, 101, 192, 0.2);
  }

  @keyframes hssFloat {

    0%,
    100% {
      transform: translate(-50%, -50%) scale(1);
    }

    50% {
      transform: translate(-50%, -50%) scale(1.08);
    }
  }

  .hero-slide-icon {
    position: relative;
    z-index: 2;
    font-size: clamp(6rem, 12vw, 10rem);
    filter: drop-shadow(0 0 60px rgba(21, 101, 192, 0.5));
    animation: iconBreath 4s ease-in-out infinite;
    opacity: 0.85;
  }

  @keyframes iconBreath {

    0%,
    100% {
      transform: scale(1) translateY(0);
    }

    50% {
      transform: scale(1.06) translateY(-8px);
    }
  }

  /* Decorative grid overlay */
  .hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  /* Content left side */
  .hero-slide-content {
    position: relative;
    z-index: 3;
    padding: 0 5vw 0 6vw;
    max-width: 55%;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1) 0.2s, opacity 0.9s ease 0.2s;
  }

  .hero-slide.active .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-slide-sector {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #1976D2;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-slide-sector::before {
    content: '';
    width: 32px;
    height: 1px;
    background: #1976D2;
  }

  .hero-slide-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    color: #F0F6FF;
    letter-spacing: -0.01em;
    margin-bottom: 1.8rem;
    text-shadow: 0 0 80px rgba(21, 101, 192, 0.3);
  }

  .hero-slide-title span {
    color: #1976D2;
    display: block;
    font-style: italic;
  }

  .hero-slide-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(240, 246, 255, 0.65);
    max-width: 460px;
    margin-bottom: 2.5rem;
  }

  .hero-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid #1565C0;
    color: #F0F6FF;
    padding: 13px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .hero-slide-cta span {
    transition: transform 0.3s;
    display: inline-block;
  }

  .hero-slide-cta:hover {
    background: #1565C0;
    border-color: #1565C0;
  }

  .hero-slide-cta:hover span {
    transform: translateX(4px);
  }

  /* Controls */
  .hero-controls {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 10;
  }

  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
  }

  .hero-prev:hover,
  .hero-next:hover {
    background: #1565C0;
    border-color: #1565C0;
  }

  .hero-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
    padding: 0;
  }

  .hero-dot.active {
    background: #1976D2;
    width: 24px;
    border-radius: 3px;
  }

  /* Counter */
  .hero-counter {
    position: absolute;
    bottom: 4rem;
    right: 5vw;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    font-family: 'Cinzel', serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  #heroCurrentNum {
    color: #1976D2;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .hero-counter-sep {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
  }

  /* Auto-play progress */
  .hero-progress-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 10;
  }

  .hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0D47A1, #1976D2);
    width: 0%;
    transition: none;
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
  }

  .scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #1565C0, transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }

  @keyframes scrollLine {
    0% {
      opacity: 0;
      transform: scaleY(0);
      transform-origin: top;
    }

    50% {
      opacity: 1;
      transform: scaleY(1);
    }

    100% {
      opacity: 0;
      transform: scaleY(0);
      transform-origin: bottom;
    }
  }

  @media (max-width: 768px) {
    .hero-slide-visual {
      display: none;
    }

    .hero-slide-content {
      max-width: 100%;
      padding: 0 2rem;
    }

    .hero-slide-title {
      font-size: 2.5rem;
    }

    .hero-counter {
      display: none;
    }

    .scroll-indicator {
      display: none;
    }
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* SHARED SECTION */
  .section {
    padding: 8rem 0;
    position: relative;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  .section-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .section-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .section-title .accent {
    color: var(--gold);
    font-style: italic;
  }

  .section-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(13, 27, 62, 0.65);
    max-width: 600px;
  }

  /* REVEAL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s ease;
  }

  .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s ease;
  }

  .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-delay-1 {
    transition-delay: 0.1s;
  }

  .reveal-delay-2 {
    transition-delay: 0.2s;
  }

  .reveal-delay-3 {
    transition-delay: 0.3s;
  }

  .reveal-delay-4 {
    transition-delay: 0.4s;
  }

  /* ABOUT */
  #about {
    background: linear-gradient(180deg, #FFFFFF 0%, #EEF4FF 50%, #FFFFFF 100%);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 3rem;
    background: rgba(21, 101, 192, 0.12);
    border: 1px solid rgba(21, 101, 192, 0.12);
  }

  .pillar {
    background: #FFFFFF;
    padding: 2rem;
    transition: background 0.3s;
  }

  .pillar:hover {
    background: #E3EDFF;
  }

  .pillar-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .pillar-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
  }

  .pillar-text {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.6;
  }

  .globe-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .globe-svg {
    width: 100%;
    max-width: 480px;
  }

  .globe-dot {
    animation: dotPulse 2s ease-in-out infinite;
  }

  @keyframes dotPulse {

    0%,
    100% {
      r: 3;
      opacity: 0.8;
    }

    50% {
      r: 6;
      opacity: 0.3;
    }
  }

  /* ===== TREE SECTION (COMPANY STRUCTURE) ===== */
  #tree-section {
    background: #F0F6FF;
    padding: 6rem 0 5rem;
    overflow: hidden;
    position: relative;
  }

  #tree-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(21, 101, 192, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  /* animated canvas bg for tree */
  #treeCanvasBg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .tree-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
  }

  .tree-header .section-tag {
    justify-content: center;
  }

  .tree-header .section-tag::before {
    display: none;
  }

  .tree-canvas-wrap {
    width: 96vw;
    margin: 0 auto;
    overflow: visible;
    padding: 0.5rem 0 1.5rem;
    position: relative;
    z-index: 1;
  }

  .tree-svg-container {
    display: block;
    width: 100%;
  }

  #orgTreeCanvas {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Tree node styles */
  .tree-root-box {
    fill: #1565C0;
    stroke: #1565C0;
    stroke-width: 2;
    rx: 8;
    filter: drop-shadow(0 0 20px rgba(21, 101, 192, 0.3));
  }

  .tree-root-text {
    font-family: Cinzel, serif;
    font-size: 14px;
    font-weight: 700;
    fill: #FFFFFF;
    text-anchor: middle;
    dominant-baseline: middle;
  }

  .tree-sector-box {
    rx: 6;
    filter: drop-shadow(0 4px 12px rgba(21, 101, 192, 0.2));
  }

  .tree-sector-text {
    font-family: Cinzel, serif;
    font-size: 9px;
    font-weight: 600;
    fill: #0D1B3E;
    text-anchor: middle;
    dominant-baseline: middle;
  }

  .tree-company-box {
    fill: rgba(227, 237, 255, 0.9);
    stroke: rgba(21, 101, 192, 0.2);
    stroke-width: 0.5;
    rx: 4;
  }

  .tree-company-text {
    font-family: Montserrat, sans-serif;
    font-size: 7.5px;
    fill: #1565C0;
    text-anchor: middle;
    dominant-baseline: middle;
  }

  .tree-connector {
    fill: none;
    stroke-width: 1.5;
  }

  /* Tree section lifeline glow scanline */
  @keyframes treeGlow {

    0%,
    100% {
      opacity: 0.4;
    }

    50% {
      opacity: 0.85;
    }
  }



  /* ===== ECOSYSTEM CIRCLES SECTION ===== */
  #ecosystem {
    background: #F8FAFF;
    padding: 5rem 0;
    position: relative;
  }

  .ecosystem-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .ecosystem-header .section-tag {
    justify-content: center;
  }

  .ecosystem-header .section-tag::before {
    display: none;
  }

  .eco-canvas {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
  }

  #ecoSvg {
    width: 80vw;
    max-width: none;
    height: auto;
    display: block;
  }

  /* ===== DIVISIONS ===== */
  #divisions {
    background: #F4F8FF;
  }

  .divisions-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .divisions-header .section-tag {
    justify-content: center;
  }

  .divisions-header .section-tag::before {
    display: none;
  }

  .division-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(21, 101, 192, 0.1);
  }

  .division-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
  }

  .division-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .division-card:hover {
    background: #F0F6FF;
    border-bottom-color: var(--gold);
    transform: translateY(-4px);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(21, 101, 192, 0.15);
  }

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

  .division-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(21, 101, 192, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .division-card:hover .division-card-glow {
    opacity: 1;
  }

  .division-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(21, 101, 192, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .division-card:hover .division-icon {
    border-color: var(--gold);
    background: rgba(21, 101, 192, 0.12);
    transform: scale(1.22);
    box-shadow: 0 0 18px rgba(21, 101, 192, 0.3);
  }

  .division-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .division-count {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .division-desc {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.7;
  }

  .division-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    font-size: 1rem;
  }

  .division-card:hover .division-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* COMPANIES */
  #companies {
    background: #F8FAFF;
    padding-bottom: 4rem;
  }

  .companies-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
  }

  .filter-btn {
    background: transparent;
    border: 1px solid rgba(21, 101, 192, 0.2);
    color: var(--gray);
    padding: 8px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.25s;
  }

  .filter-btn.active,
  .filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #FFFFFF;
  }

  .companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(21, 101, 192, 0.08);
  }

  .company-card {
    background: #FFFFFF;
    padding: 2.2rem;
    transition: all 0.35s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
  }

  .company-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .company-card:hover {
    background: #EEF4FF;
    transform: translateY(-3px);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(21, 101, 192, 0.12);
  }

  .company-card:hover::after {
    transform: scaleX(1);
  }

  .company-sector-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 1px;
    margin-bottom: 1.2rem;
    display: inline-block;
  }

  .tag-finance {
    background: rgba(21, 101, 192, 0.1);
    color: #1565C0;
  }

  .tag-realestate {
    background: rgba(22, 163, 74, 0.1);
    color: #166534;
  }

  .tag-hospitality {
    background: rgba(234, 88, 12, 0.1);
    color: #C2410C;
  }

  .tag-tech {
    background: rgba(126, 34, 206, 0.1);
    color: #7E22CE;
  }

  .tag-logistics {
    background: rgba(185, 28, 28, 0.1);
    color: #B91C1C;
  }

  .tag-energy {
    background: rgba(161, 98, 7, 0.1);
    color: #854D0E;
  }

  .tag-consulting {
    background: rgba(4, 120, 87, 0.1);
    color: #065F46;
  }

  .tag-fmcg {
    background: rgba(180, 83, 9, 0.1);
    color: #92400E;
  }

  .company-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
    line-height: 1.3;
  }

  .company-location {
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .company-desc {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.7;
  }

  .company-website {
    margin-top: 1rem;
    font-size: 0.65rem;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.2s;
  }

  .company-website:hover {
    color: var(--gold);
  }

  /* PRESENCE */
  #presence {
    background: #EEF4FF;
    overflow: hidden;
  }

  .presence-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
  }

  .country-list {
    margin-top: 2.5rem;
  }

  .country-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(21, 101, 192, 0.08);
    transition: all 0.3s;
    cursor: pointer;
  }

  .country-item:hover {
    padding-left: 8px;
  }

  .country-flag {
    font-size: 1.6rem;
  }

  .country-info-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
  }

  .country-info-companies {
    font-size: 0.65rem;
    color: var(--gray);
    letter-spacing: 0.1em;
  }

  .country-count {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(21, 101, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
  }

  /* HIGHLIGHTS */
  #highlights {
    background: #F8FAFF;
  }

  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }

  .highlight-card {
    background: #FFFFFF;
    border: 1px solid rgba(21, 101, 192, 0.1);
    padding: 2.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }

  .highlight-card:hover {
    border-color: rgba(21, 101, 192, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(21, 101, 192, 0.12);
  }

  .highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  }

  .highlight-num {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(21, 101, 192, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
  }

  .highlight-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .highlight-text {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.8;
  }

  /* ===== MEET THE TEAM ===== */
  #team {
    background: #F4F8FF;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
  }

  #team::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .team-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .team-header .section-tag {
    justify-content: center;
  }

  .team-header .section-tag::before {
    display: none;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .team-card {
    background: #FFFFFF;
    border: 1px solid rgba(21, 101, 192, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
  }

  .team-card:hover {
    border-color: rgba(21, 101, 192, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(21, 101, 192, 0.1);
  }

  .team-card-photo {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #E3EDFF, #EEF4FF);
  }

  .team-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(21, 101, 192, 0.05));
    position: relative;
  }

  .team-avatar-initials {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
  }

  .team-avatar-ring {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(21, 101, 192, 0.2);
    animation: spin 20s linear infinite;
  }

  .team-avatar-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 101, 192, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .team-card:hover .team-card-overlay {
    opacity: 1;
  }

  .team-socials {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    opacity: 0;
    transition: all 0.3s 0.1s;
  }

  .team-card:hover .team-socials {
    opacity: 1;
  }

  .team-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(21, 101, 192, 0.2);
    border: 1px solid rgba(21, 101, 192, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gold);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
  }

  .team-social-btn:hover {
    background: var(--gold);
    color: #FFFFFF;
  }

  .team-card-info {
    padding: 1.5rem;
  }

  .team-card-name {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
  }

  .team-card-title {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .team-card-desc {
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.6;
  }

  .team-card-divider {
    height: 1px;
    background: rgba(21, 101, 192, 0.1);
    margin: 1rem 0;
  }

  .team-card-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .team-sector-chip {
    font-size: 0.58rem;
    padding: 2px 8px;
    border-radius: 1px;
    background: rgba(21, 101, 192, 0.08);
    color: var(--gold);
    letter-spacing: 0.1em;
    border: 1px solid rgba(21, 101, 192, 0.15);
  }

  /* VISION SECTION */
  #vision {
    background: linear-gradient(180deg, #FFFFFF 0%, #EEF4FF 100%);
    text-align: center;
    padding: 7rem 0;
    position: relative;
  }

  .vision-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(13, 27, 62, 0.75);
    max-width: 900px;
    margin: 2rem auto;
    line-height: 1.5;
  }

  .vision-quote .highlight {
    color: var(--gold);
    font-weight: 400;
  }

  .regions-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .region-badge {
    background: rgba(21, 101, 192, 0.08);
    border: 1px solid rgba(21, 101, 192, 0.2);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 2px;
  }

  /* TIMELINE */
  #timeline {
    background: #FFFFFF;
    padding: 8rem 0;
  }

  .timeline-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .timeline-header .section-tag {
    justify-content: center;
  }

  .timeline-header .section-tag::before {
    display: none;
  }

  .timeline-track {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
  }

  .timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(21, 101, 192, 0.4) 10%, rgba(21, 101, 192, 0.4) 90%, transparent);
    transform: translateX(-50%);
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 3rem;
    align-items: start;
  }

  .timeline-item:nth-child(odd) .tl-content {
    grid-column: 1;
    text-align: right;
    padding-right: 2.5rem;
  }

  .timeline-item:nth-child(odd) .tl-empty {
    grid-column: 3;
  }

  .timeline-item:nth-child(even) .tl-content {
    grid-column: 3;
    text-align: left;
    padding-left: 2.5rem;
  }

  .timeline-item:nth-child(even) .tl-empty {
    grid-column: 1;
  }

  .tl-dot {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
  }

  .tl-dot-inner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 2px var(--gold), 0 0 20px rgba(21, 101, 192, 0.5);
    flex-shrink: 0;
  }

  .tl-year {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .tl-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .tl-desc {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.7;
  }

  /* AWARDS */
  #awards {
    background: #EEF4FF;
    padding: 6rem 0;
  }

  .awards-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .awards-header .section-tag {
    justify-content: center;
  }

  .awards-header .section-tag::before {
    display: none;
  }

  .awards-track-wrap {
    overflow: hidden;
    position: relative;
  }

  .awards-track-wrap::before,
  .awards-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }

  .awards-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--navy-mid), transparent);
  }

  .awards-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--navy-mid), transparent);
  }

  .awards-track {
    display: flex;
    gap: 2rem;
    animation: scrollAwards 30s linear infinite;
    width: max-content;
  }

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

  @keyframes scrollAwards {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .award-item {
    background: #FFFFFF;
    border: 1px solid rgba(21, 101, 192, 0.12);
    padding: 1.8rem 2rem;
    border-radius: 2px;
    min-width: 260px;
    flex-shrink: 0;
    transition: all 0.3s;
  }

  .award-item:hover {
    border-color: rgba(21, 101, 192, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.12);
  }

  .award-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .award-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
  }

  .award-org {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
  }

  .award-year {
    font-size: 0.62rem;
    color: var(--gray);
  }

  /* STATS COUNTER */
  #stats {
    background: #FFFFFF;
    border-top: 3px solid #1565C0;
    border-bottom: 1px solid rgba(21, 101, 192, 0.08);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }

  #stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.06) 0%, transparent 70%);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
  }

  .stat-item {
    text-align: center;
    position: relative;
  }

  .stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(21, 101, 192, 0.15);
  }

  .stat-item:last-child::after {
    display: none;
  }

  .stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 8px;
    line-height: 1.4;
  }

  /* CONTACT */
  #contact {
    background: linear-gradient(180deg, #EEF4FF 0%, #F8FAFF 100%);
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-form {
    margin-top: 2rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
  }

  .form-input,
  .form-textarea,
  .form-select {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(21, 101, 192, 0.2);
    color: #0D1B3E;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    border-radius: 2px;
    transition: border-color 0.3s;
    outline: none;
  }

  .form-input:focus,
  .form-textarea:focus,
  .form-select:focus {
    border-color: var(--gold);
    background: rgba(21, 101, 192, 0.05);
  }

  .form-textarea {
    height: 120px;
    resize: vertical;
  }

  .form-select option {
    background: #F8FAFF;
  }

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

  .contact-info {
    padding-top: 1rem;
  }

  .contact-info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(21, 101, 192, 0.08);
  }

  .contact-info-item:last-child {
    border-bottom: none;
  }

  .contact-info-icon {
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(21, 101, 192, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
  }

  .contact-info-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .contact-info-value {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.5;
  }

  /* FOOTER */
  footer {
    background: #1565C0;
    padding: 4rem 0 2rem;
    border-top: none;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .footer-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-top: 1.2rem;
  }

  .footer-col-title {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    transition: color 0.2s;
    letter-spacing: 0.03em;
  }

  .footer-links a:hover {
    color: #FFFFFF;
    font-weight: 600;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .footer-copy {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
  }

  .footer-tagline {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }

  /* MODAL */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 62, 0.55);
    backdrop-filter: blur(10px);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .modal-overlay.active {
    display: flex;
  }

  .modal {
    background: #FFFFFF;
    border: 1px solid rgba(21, 101, 192, 0.2);
    border-radius: 2px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.4s ease;
  }

  @keyframes modalIn {
    from {
      opacity: 0;
      transform: scale(0.95) translateY(20px);
    }

    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  .modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid rgba(21, 101, 192, 0.2);
    color: var(--gray);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(21, 101, 192, 0.1);
  }

  .modal-body {
    padding: 2rem 2.5rem 2.5rem;
  }

  .modal-company-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .modal-company-item {
    background: rgba(21, 101, 192, 0.04);
    border: 1px solid rgba(21, 101, 192, 0.1);
    padding: 1.3rem;
    border-radius: 2px;
    transition: all 0.2s;
  }

  .modal-company-item:hover {
    border-color: rgba(21, 101, 192, 0.25);
    background: rgba(21, 101, 192, 0.04);
  }

  .modal-company-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 4px;
  }

  .modal-company-meta {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }

  .modal-company-text {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.6;
  }

  /* MOBILE MENU */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(248, 250, 255, 0.98);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1565C0;
    text-decoration: none;
    transition: color 0.2s;
  }

  .mobile-menu a:hover {
    color: var(--gold);
  }

  /* GOLD DIVIDER */
  .gold-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .gold-divider::before,
  .gold-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(21, 101, 192, 0.3), transparent);
  }

  .gold-divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
  }

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

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

    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }

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

  @media (max-width: 900px) {
    .hero-stats {
      gap: 1.5rem;
      flex-wrap: wrap;
    }

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

    .presence-content {
      grid-template-columns: 1fr;
    }

    .contact-inner {
      grid-template-columns: 1fr;
    }

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

    nav {
      padding: 0 1.5rem;
    }

    .nav-links {
      display: none;
    }

    .nav-hamburger {
      display: flex;
    }

    .container {
      padding: 0 1.5rem;
    }

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

    /* Timeline collapses to single column */
    .timeline-item {
      grid-template-columns: 40px 1fr !important;
    }

    .timeline-item:nth-child(odd) .tl-content,
    .timeline-item:nth-child(even) .tl-content {
      grid-column: 2;
      text-align: left;
      padding-right: 0;
      padding-left: 1.2rem;
    }

    .timeline-item:nth-child(odd) .tl-empty,
    .timeline-item:nth-child(even) .tl-empty {
      display: none;
    }

    .tl-dot {
      grid-column: 1;
    }

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

  @media (max-width: 600px) {
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      justify-content: center;
    }

    .hero-stats {
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .hero-divider {
      display: none;
    }

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

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

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

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

    .footer-inner {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .hero-cta-group {
      flex-direction: column;
      align-items: center;
    }

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

    .section {
      padding: 5rem 0;
    }

    .container {
      padding: 0 1rem;
    }
  }

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

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

    .hero-title {
      font-size: 3rem;
    }
  }

  /* Cursor glow effect */
  .cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.04) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: transform 0.1s ease;
  }

  /* Number counter */
  .counter-animated {
    transition: all 2s ease;
  }

  /* WHAT WE DO */
  #what-we-do {
    background: #FFFFFF;
  }

  .wwd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .wwd-card {
    background: #F4F8FF;
    border: 1px solid rgba(21, 101, 192, 0.1);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .wwd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .wwd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(21, 101, 192, 0.12);
    border-color: rgba(21, 101, 192, 0.25);
  }

  .wwd-card:hover::before {
    transform: scaleX(1);
  }

  .wwd-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .wwd-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
  }

  .wwd-text {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.7;
  }

  /* OUR STORY */
  #our-story {
    background: linear-gradient(135deg, #EEF4FF 0%, #F8FAFF 100%);
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .story-text .section-body {
    margin-bottom: 0;
  }

  .story-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: #FFFFFF;
    border: 1px solid rgba(21, 101, 192, 0.1);
    border-radius: 8px;
  }

  .story-stat {
    text-align: center;
  }

  .story-stat-num {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
  }

  .story-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 3px;
  }

  .story-stat-div {
    width: 1px;
    height: 40px;
    background: rgba(21, 101, 192, 0.15);
  }

  .story-quote-card {
    background: #1565C0;
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
  }

  .story-quote-mark {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
  }

  .story-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
  }

  .story-quote-author {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-top: 1.2rem;
  }

  .story-badges {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .story-badge {
    background: #FFFFFF;
    border: 1px solid rgba(21, 101, 192, 0.15);
    border-radius: 6px;
    padding: 0.6rem 1rem;
    font-size: 0.72rem;
    color: #0D1B3E;
    font-weight: 500;
  }

  /* DROPDOWN NAV — Click-to-open, click-to-lock (Shapoorji Pallonji style) */
  .nav-item {
    position: relative;
  }

  .nav-item>a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

  .nav-item>a .nav-arrow {
    font-size: 0.45rem;
    opacity: 0.6;
    transition: transform 0.3s cubic-bezier(0.34, 1.5, 0.64, 1);
    display: inline-block;
  }

  .nav-item.open>a .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
  }

  .nav-item>a.has-dropdown {
    position: relative;
  }

  /* Mega-panel style dropdown like SP */
  .nav-dropdown {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }

  .nav-item.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  nav.scrolled+.nav-overlay~* .nav-dropdown {
    top: 65px;
  }

  .nav-dropdown-panel {
    background: #ffffff;
    border-top: 1px solid rgba(21, 101, 192, 0.12);
    box-shadow: 0 20px 60px rgba(21, 101, 192, 0.15);
    padding: 2.5rem 4rem;
    display: flex;
    gap: 0;
    min-height: 200px;
    animation: dropdownSlideIn 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  }

  @keyframes dropdownSlideIn {
    from {
      transform: translateY(-10px);
      opacity: 0.7;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .nav-dropdown-left {
    flex: 1;
    padding-right: 3rem;
    border-right: 1px solid rgba(21, 101, 192, 0.1);
    margin-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-dropdown-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .nav-dropdown-headline {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .nav-dropdown-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 260px;
  }

  .nav-dropdown-links {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    align-content: start;
  }

  .nav-dropdown-links.single-col {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(13, 27, 62, 0.7);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, padding 0.2s;
    border-left: 2px solid transparent;
    position: relative;
  }

  .nav-dropdown a::before {
    content: '→';
    font-size: 0.6rem;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-6px);
  }

  .nav-dropdown a:hover {
    background: rgba(21, 101, 192, 0.04);
    color: #1565C0;
    border-left-color: var(--gold);
    padding-left: 20px;
  }

  .nav-dropdown a:hover::before {
    opacity: 1;
    transform: translateX(0);
  }

  /* Overlay backdrop when menu is open */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 62, 0.15);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 997;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  @media (max-width: 1100px) {
    .wwd-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

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

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

    .story-stats {
      flex-wrap: wrap;
      gap: 1rem;
    }
  }
/* Generic Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212,175,55,0.2);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--white);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--white);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13,27,62,0.15);
}
