    :root {
      --bg: #f5f2ee;
      --bg2: #edeae4;
      --bg3: #ffffff;
      --accent: #0450A6;
      --accent2: #033d80;
      --dark-blue: #01142a;
      --accent-light: rgba(4,80,166,0.12);
      --accent-warm: #c8a96e;
      --page-hero-bg: var(--dark-blue);
      --text: #1a1a1a;
      --text-mid: #2a3a4a;
      --text-muted: #5a6a7a;
      --border: rgba(4,80,166,0.15);
      --shadow: 0 4px 32px rgba(4,80,166,0.1);
      --shadow-lg: 0 16px 64px rgba(4,80,166,0.12);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    .inner-page { padding-top: 100px; padding-bottom: 60px; min-height: 60vh; }

    /* Page title / hero section - dark blue + bg image */
    .page-hero {
      background: var(--page-hero-bg);
      background-image: url('../images/hero-bg.svg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #fff;
      padding: 140px 0 100px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgb(1 20 42 / 36%) 0%, rgb(4 80 166 / 62%) 100%);
      z-index: 1;
    }
    .page-hero .container,
    .page-hero .row,
    .page-hero h1,
    .page-hero .hero-sub {
      position: relative;
      z-index: 2;
    }
  
    /* Desktop-only hero video background (scrolls with section) */
    .hero-video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-video-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-video-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(1,20,42,0.82) 0%, rgba(4,80,166,0.68) 100%);
    }

    @media (min-width: 992px) {
      .page-hero,
      .about-page-hero,
      .contact-hero {
        background-image: none !important;
        background-color: transparent !important;
      }
    }

    /* Same bg image for about & contact hero */
    .about-page-hero,
    .contact-hero {
      background: var(--page-hero-bg);
      background-image: url('../images/hero-bg.svg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }
    .about-page-hero::before,
    .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(1,20,42,0.88) 0%, rgba(4,80,166,0.82) 100%);
      z-index: 1;
    }
    .about-page-hero .container,
    .about-page-hero h1,
    .about-page-hero .about-hero-sub,
    .contact-hero .container,
    .contact-hero h1,
    .contact-hero .contact-hero-desc,
    .contact-hero .contact-hero-inner {
      position: relative;
      z-index: 2;
    }
    .page-hero h1 {
      font-size: clamp(2.25rem, 4vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 16px;
      color: #fff;
    }
    .page-hero .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.85);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .content-img-wrap {
      overflow: hidden;
      min-height: 260px;
      border-radius: 16px;
      background: var(--accent-light);
    }
    .content-img-wrap img {
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
      display: block;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Times New Roman', Times, serif;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: transparent;
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 16px 0;
      position: fixed;
      width: 100%;
      z-index: 1000;
      top: 0;
      transition: background 0.3s, padding 0.3s, box-shadow 0.3s, border-color 0.3s;
    }

    .navbar.scrolled {
      background: rgba(4,80,166,0.98);
      padding: 10px 0;
      box-shadow: 0 2px 24px rgba(0,0,0,0.15);
      border-bottom-color: rgba(255,255,255,0.1);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .brand-logo {
      width: 38px; height: 38px;
      background: #fff;
      border-radius: 8px;
      color: #0450A6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 900;
    }

    .brand-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
      line-height: 1.1;
    }

    .brand-text span {
      display: block;
      font-size: 0.65rem;
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .navbar .nav-link {
      color: rgba(255,255,255,0.9) !important;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 7px 16px !important;
      border-radius: 6px;
      transition: all 0.2s;
    }

    .navbar .nav-link:hover {
      color: #fff !important;
      background: rgba(255,255,255,0.15);
    }

    .navbar .dropdown-menu {
      background: #0450A6;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      padding: 8px 0;
      margin-top: 6px;
    }
    .navbar .dropdown-item {
      color: rgba(255,255,255,0.9);
      padding: 10px 20px;
      font-size: 0.875rem;
    }
    .navbar .dropdown-item:hover {
      background: rgba(255,255,255,0.15);
      color: #fff;
    }
    .navbar .dropdown-toggle::after { margin-left: 6px; }

    /* Dropdown open on hover (desktop) */
    @media (min-width: 992px) {
      .navbar .dropdown-hover:hover .dropdown-menu { display: block !important; }
      .navbar .dropdown-hover .dropdown-menu { margin-top: 0px; }
    }

    .btn-enquire {
      background: rgba(255,255,255,0.2);
      color: #fff !important;
      border: 1px solid rgba(255,255,255,0.4);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 10px 24px !important;
      border-radius: 8px;
      transition: all 0.25s;
    }

    .btn-enquire:hover {
      background: #fff;
      color: #0450A6 !important;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 640px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    #heroVideo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgb(4 80 166 / 57%) 0%, rgb(4 80 166 / 47%) 55%, rgb(4 80 166 / 56%) 100%);
      z-index: 1;
    }

    /* Grain texture overlay */
    .hero-grain {
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0.04;
      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)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 128px;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      padding-top: 90px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 40px;
      margin-bottom: 28px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      background: #4cff91;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    .hero h1 {
      font-size: clamp(2.8rem, 5vw, 5rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -1px;
      color: #fff;
      margin-bottom: 12px;
  }

    .hero h1 .line-accent {
      color: #c8a96e;
      font-style: italic;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.75;
      max-width: 500px;
      margin-bottom: 40px;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .btn-hero-primary {
      background: #c8a96e;
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 15px 34px;
      border-radius: 8px;
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
      letter-spacing: 0.3px;
    }

    .btn-hero-primary:hover {
      background: #b8924e;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(200,169,110,0.4);
    }

    .btn-hero-outline {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(8px);
      color: #fff;
      font-weight: 500;
      font-size: 0.9rem;
      padding: 14px 30px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
    }

    .btn-hero-outline:hover {
      background: rgba(255,255,255,0.15);
      color: #fff;
    }

    /* Hero scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.5);
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50% { transform: scaleY(0.5); opacity: 0.3; }
    }

    /* Hero right side card */
    .hero-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(16px);
      border-radius: 16px;
      padding: 28px;
    }

    .hero-stat-row {
      display: flex;
      gap: 24px;
      margin-bottom: 20px;
    }

    .hero-stat {
      flex: 1;
      text-align: center;
    }

    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }

    .hero-stat-num sup {
      font-size: 1rem;
      color: #c8a96e;
    }

    .hero-stat-lbl {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
    }

    .hero-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(76,255,145,0.08);
      border: 1px solid rgba(76,255,145,0.2);
      border-radius: 10px;
      padding: 12px 16px;
      margin-top: 8px;
    }

    .hero-badge i {
      color: #4cff91;
      font-size: 1.1rem;
    }

    .hero-badge p {
      margin: 0;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.4;
    }

    .hero-badge p strong {
      color: #fff;
      display: block;
    }

    /* ── STRIP SECTION ── */
    .marquee-strip {
      background: var(--accent);
      padding: 18px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .marquee-track {
      display: inline-flex;
      animation: marquee 25s linear infinite;
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.7);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0 36px;
    }

    .marquee-item i { color: #c8a96e; font-size: 0.7rem; }

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

    /* ── COMMON ── */
    .section { padding: 100px 0; }

    .label-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-light);
      color: #0450A6;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 40px;
      margin-bottom: 18px;
    }

    .label-pill::before {
      content: '';
      width: 5px; height: 5px;
      background: #0450A6;
      border-radius: 50%;
    }

    .section-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -0.5px;
      margin-bottom: 18px;
      color: var(--text);
    }

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

    .section-body {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.78;
    }

    .btn-main {
      background: var(--dark-blue);
      color: #fff;
      font-weight: 600;
      font-size: 0.88rem;
      padding: 13px 30px;
      border-radius: 8px;
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
      letter-spacing: 0.2px;
    }

    .btn-main:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(1,20,42,0.3);
    }

    .btn-ghost {
      background: transparent;
      color: var(--accent);
      font-weight: 600;
      font-size: 0.88rem;
      padding: 12px 24px;
      border-radius: 8px;
      border: 1.5px solid var(--accent);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.25s;
    }

    .btn-ghost:hover {
      background: var(--accent);
      color: #fff;
    }

    /* ── STATS (two-column: copy + stats grid) ── */
    .stats-section {
      background: var(--bg3);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 80px 0;
    }

    .stats-section .row { align-items: center; }
    .stats-left { max-width: 540px; }
    .stats-left .stat-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--text);
      margin-bottom: 20px;
    }
    .stats-left .stat-desc {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 28px;
    }
    .btn-learn-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 8px;
      border: 1px solid var(--text-muted);
      background: #fff;
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-learn-more:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-light);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 48px;
    }
    .stat-box {
      text-align: left;
      padding: 0;
      position: relative;
    }
    .stat-box::after { display: none; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-num--img {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
    }
    .stat-icon {
      width: clamp(44px, 4vw, 56px);
      height: clamp(44px, 4vw, 56px);
      display: block;
    }
    .stat-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.4;
      font-weight: 400;
      text-transform: none;
      letter-spacing: 0;
    }
    .stats-img-wrap {
      overflow: hidden;
      border-radius: 16px;
      background: var(--bg2);
    }
    .stats-section-img {
      width: 100%;
      height: auto;
      min-height: 280px;
      object-fit: cover;
      display: block;
    }

    /* ── ABOUT ── */
    .about-section { background: var(--bg); }

    .about-image-wrap {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 16px;
      display: block;
      background: var(--bg2);
    }

    .about-img-placeholder {
      width: 100%;
      height: 460px;
      border-radius: 20px;
      background: linear-gradient(145deg, var(--dark-blue) 0%, var(--accent) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .about-img-placeholder::before {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      border: 60px solid rgba(255,255,255,0.06);
      top: -60px; right: -60px;
    }

    .about-img-placeholder::after {
      content: '';
      position: absolute;
      width: 200px; height: 200px;
      border-radius: 50%;
      border: 40px solid rgba(255,255,255,0.05);
      bottom: -40px; left: -40px;
    }

    .about-image-wrap img.about-img-main,
    .about-img-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
    }

    .about-img-icon {
      font-size: 5rem;
      color: rgba(255,255,255,0.15);
    }

    .about-float-card {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: #fff;
      border-radius: 14px;
      padding: 20px 24px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      min-width: 200px;
    }

    .about-float-card .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--dark-blue);
      line-height: 1;
    }

    .about-float-card p {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin: 4px 0 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .about-float-card2 {
      position: absolute;
      top: 30px;
      left: -20px;
      background: var(--dark-blue);
      color: #fff;
      border-radius: 14px;
      padding: 16px 20px;
      box-shadow: 0 8px 32px rgba(4,80,166,0.3);
      min-width: 160px;
    }

    .about-float-card2 .ico { font-size: 1.4rem; margin-bottom: 8px; }
    .about-float-card2 h6 { font-size: 0.85rem; font-weight: 700; margin: 0; }
    .about-float-card2 p { font-size: 0.72rem; opacity: 0.7; margin: 2px 0 0; }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .check-list li::before {
      content: '';
      flex-shrink: 0;
      width: 20px; height: 20px;
      background: var(--accent-light);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l4 4 6-7' stroke='%230450A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
      margin-top: 1px;
    }

    /* ── SERVICES ── */
    .services-section { background: var(--bg2); }

    .service-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 30px;
      height: 100%;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(4,80,166,0.25);
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), #c8a96e);
      transform: scaleX(0);
      transition: transform 0.35s;
      border-radius: 0 0 16px 16px;
    }

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

    .service-num {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 900;
      color: rgba(4,80,166,0.08);
      line-height: 1;
      margin-bottom: 0;
      letter-spacing: -2px;
    }

    .service-icon {
      width: 54px; height: 54px;
      flex-shrink: 0;
      background: var(--accent-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--dark-blue);
      margin-bottom: 20px;
      margin-left: auto;
    }

    .service-card h5 {
      width: 100%;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }

    .service-card p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.72;
      margin: 0;
      width: 100%;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--dark-blue);
      width: 100%;
      margin-top: 20px;
      font-size: 0.82rem;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: gap 0.2s;
    }

    .service-link:hover { gap: 10px; color: var(--accent); }

    /* ── WHY US ── */
    .why-section { background: var(--bg); }

    .why-grid-item {
      padding: 32px;
      border-radius: 16px;
      background: var(--bg3);
      border: 1px solid var(--border);
      transition: all 0.3s;
      height: 100%;
    }

    .why-grid-item:hover {
      border-color: rgba(4,80,166,0.25);
      box-shadow: var(--shadow);
    }

    .why-icon {
      width: 50px; height: 50px;
      background: var(--accent-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #0450A6;
      margin-bottom: 18px;
    }

    .why-grid-item h6 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .why-grid-item p {
      font-size: 0.855rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }

    /* ── EXPERTISE ── */
    .expertise-section {
      background: var(--accent);
      position: relative;
      overflow: hidden;
    }

    .expertise-section::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      border: 80px solid rgba(255,255,255,0.03);
      top: -200px; right: -200px;
    }

    .expertise-section::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      border: 60px solid rgba(255,255,255,0.03);
      bottom: -150px; left: -100px;
    }

    .expertise-section .label-pill {
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.8);
    }

    .expertise-section .label-pill::before {
      background: #c8a96e;
    }

    .expertise-section .section-title { color: #fff; }
    .expertise-section .section-body { color: rgba(255,255,255,0.6); }

    .exp-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 32px;
      height: 100%;
      transition: all 0.3s;
    }

    .exp-card:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
      transform: translateY(-4px);
    }

    .exp-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(255,255,255,0.08);
      line-height: 1;
      margin-bottom: 12px;
    }

    .exp-icon {
      width: 48px; height: 48px;
      background: rgba(200,169,110,0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #c8a96e;
      margin-bottom: 18px;
    }

    .exp-card h5 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }

    .exp-card p {
      font-size: 0.86rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.72;
      margin: 0;
    }

    /* ── PARTNERS ── */
    .partners-section { background: var(--bg3); }

    .partner-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text-mid);
      letter-spacing: 1px;
      transition: all 0.25s;
      text-align: center;
      width: 100%;
    }

    .partner-chip:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-light);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    /* ── CLIENT LOGOS ── */
    .client-logos-section { background: var(--bg3); padding: 60px 0; border-top: 1px solid var(--border); }
    .client-logos-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      align-items: center;
    }
    .client-logo-item {
      background: rgba(4,80,166,0.04);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 12px;
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .client-logo-item img {
      width: 100%;
      max-width: 140px;
      height: 56px;
      object-fit: contain;
      display: block;
    }
    @media (max-width: 992px) {
      .client-logos-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 576px) {
      .client-logos-grid { grid-template-columns: repeat(2, 1fr); }
      .client-logo-item img { height: 50px; }
    }

    /* ── ISO CERTIFICATIONS (about + footer) ── */
    .about-iso-section { background: var(--bg3); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .iso-images-grid { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
    .iso-images-grid img {
      width: 320px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      background: #fff;
      border-radius: 16px;
      padding: 14px;
      border: 1px solid var(--border);
    }
    .footer-iso-wrap { margin-top: 18px; }
    .footer-iso-grid {
      display: flex;
      gap: 12px;
      flex-wrap: wrap; /* ISO logos row + DUNS below */
      justify-content: center;
      overflow-x: visible;
    }
    .footer-iso-grid img {
      width: 120px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 8px;
      flex: 0 0 auto; /* prevent shrinking/wrapping */
    }
    .footer-iso-grid a {
      flex: 0 0 auto;
      display: block;
      text-decoration: none;
    }
    .footer-iso-grid a img { display: block; }
    .footer-iso-grid a[href*="dunsregistered.com"] {
      flex: 0 0 100%;
      display: flex;
      justify-content: center;
      margin-top: 8px;
    }
    .footer-iso-grid a[href*="dunsregistered.com"] img {
      max-width: 140px;
      height: auto;
    }
    .footer-iso-grid img.iso-cert-thumb { cursor: pointer; }

    /* ── ISO Lightbox (no-scroll, fit to viewport) ── */
    .iso-lightbox-dialog {
      max-width: 520px;
      width: min(520px, calc(100vw - 24px));
    }
    #isoLightbox .modal-content {
      border-radius: 14px;
      overflow: hidden; /* prevent inner scrollbars */
      max-height: 100vh;
    }
    #isoLightbox .modal-header {
      padding: 10px 14px;
    }
    #isoLightbox .modal-body {
      padding: 8px 10px 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    #isoLightboxImg {
      width: auto;
      max-width: 100%;
      max-height: calc(100vh - 210px);
      object-fit: contain;
      display: block;
    }

    /* ── Service Zones (Locations + Contact) ── */
    .zones-pills-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin: 24px 0 28px;
    }

    .zone-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 20px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .zone-pill.north  { background: rgba(4,80,166,0.12); color: #0450A6; }
    .zone-pill.south  { background: rgba(22,163,74,0.12); color: #16a34a; }
    .zone-pill.east   { background: rgba(234,88,12,0.12); color: #ea580c; }
    .zone-pill.west   { background: rgba(147,51,234,0.12); color: #9333ea; }

    .zone-table-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.05rem;
      margin: 28px 0 14px;
      text-align: center;
    }
    .zone-table-title.east { color: #ea580c; }
    .zone-table-title.north { color: #0450A6; }
    .zone-table-title.south { color: #16a34a; }
    .zone-table-title.west { color: #9333ea; }

    .contact-zones-section {
      padding: 44px 0 34px;
      background: var(--bg3);
      border-top: 1px solid var(--border);
    }
    .contact-zones-section .zones-pills-row { margin: 0; }

    @media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 520px !important;
    }
}
    /* ── FAQ ── */
    .faq-section { background: var(--bg2); }

    .faq-wrap {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .faq-item {
      background: var(--bg3);
      border-bottom: 1px solid var(--border);
    }

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

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 28px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      transition: background 0.2s;
      user-select: none;
    }

    .faq-question:hover { background: var(--bg); }

    .faq-btn {
      width: 32px; height: 32px;
      background: var(--accent-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0450A6;
      font-size: 0.8rem;
      flex-shrink: 0;
      transition: all 0.3s;
    }

    .faq-btn.open {
      background: #0450A6;
      color: #fff;
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 28px;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.78;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }

    .faq-answer.open {
      max-height: 200px;
      padding: 0 28px 24px;
    }

    /* ── CTA ── */
    .cta-section {
      background: var(--bg);
      padding: 80px 0;
    }

    .cta-inner {
      background: linear-gradient(135deg, var(--accent) 0%, #032a52 100%);
      border-radius: 24px;
      padding: 72px 56px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-inner::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      border: 80px solid rgba(255,255,255,0.04);
      top: -200px; right: -150px;
    }

    .cta-inner::after {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      border: 50px solid rgba(200,169,110,0.08);
      bottom: -120px; left: -80px;
    }

    .cta-inner h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: #fff;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .cta-inner p {
      color: rgba(255,255,255,0.6);
      font-size: 1rem;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .btn-cta-primary {
      background: #c8a96e;
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
    }

    .btn-cta-primary:hover {
      background: #b8924e;
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-cta-outline {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
    }

    .btn-cta-outline:hover {
      background: rgba(255,255,255,0.18);
      color: #fff;
    }

    /* ── FOOTER ── */
    footer {
      background: #0450A6;
      color: rgba(255,255,255,0.7);
      padding: 80px 0 32px;
    }

    .footer-brand-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-brand-text em {
      font-style: normal;
      color: rgba(255,255,255,0.85);
    }

    .footer-desc {
      font-size: 0.875rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.45);
      max-width: 240px;
      margin-bottom: 24px;
    }

    .social-row { display: flex; gap: 10px; }

    .soc-btn {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.45);
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.2s;
    }

    .soc-btn:hover {
      border-color: #c8a96e;
      color: #c8a96e;
    }

    .footer-heading {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 20px;
    }

    .footer-links { list-style: none; padding: 0; }

    .footer-links li { margin-bottom: 12px; }

    .footer-links a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: #fff; }

    .footer-contact { list-style: none; padding: 0; }

    .footer-contact li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 14px;
    }

    .footer-contact li i {
      color: rgba(255,255,255,0.7);
      width: 16px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* Toll Free row alignment (icon + label + number) */
    .footer-contact li.toll-free-li {
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }
    .footer-contact .toll-free-li i { margin-top: 0; }
    .footer-contact .toll-free-label {
      white-space: nowrap;
      font-weight: 700;
    }

    /* Email labels alignment (Sales/Support) */
    .footer-contact .footer-email-label {
      white-space: nowrap;
      font-weight: 700;
    }
    .footer-contact li.footer-email-li {
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }
    .footer-contact li.footer-email-li i { margin-top: 0; }

    .contact-email-label {
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
      margin-right: 6px;
    }

    .footer-contact a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-contact a:hover { color: #fff; }

    .footer-contact span {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.5);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      margin-top: 60px;
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    /* ── HOME POPUP (50% scroll) ── */
    .home-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(6px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s, visibility 0.35s;
    }
    .home-popup-overlay.visible {
      opacity: 1;
      visibility: visible;
    }
    .home-popup {
      background: #fff;
      border-radius: 20px;
      max-width: 440px;
      width: 100%;
      position: relative;
      padding: 36px 32px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.25);
      transform: scale(0.9);
      transition: transform 0.35s;
    }
    .home-popup-overlay.visible .home-popup {
      transform: scale(1);
    }
    .home-popup-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border: none;
      background: var(--bg2);
      border-radius: 50%;
      color: var(--text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .home-popup-close:hover {
      background: var(--accent-light);
      color: var(--dark-blue);
    }
    .home-popup-inner h3 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--text);
    }
    .home-popup-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }
    .home-popup-form .form-label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-mid);
    }
    .home-popup-form .form-control {
      border-radius: 10px;
      padding: 12px 16px;
      border: 1px solid var(--border);
    }

    /* ── WhatsApp Float ── */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 56px;
      height: 56px;
      background: #25D366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      box-shadow: 0 4px 20px rgba(37,211,102,0.5);
      z-index: 9998;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .whatsapp-float:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 28px rgba(37,211,102,0.6);
      color: #fff;
    }

    /* ── Cookie Consent (home) ── */
    .cookie-consent {
      position: fixed;
      left: 24px;
      bottom: 24px;
      z-index: 10020;
      max-width: 360px;
      width: calc(100vw - 48px);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 18px 48px rgba(1,20,42,0.18);
      padding: 16px 16px 14px;
      display: none;
    }
    .cookie-consent p {
      margin: 0 0 12px;
      font-size: 0.84rem;
      line-height: 1.55;
      color: var(--text-mid);
    }
    .cookie-consent p a {
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
    }
    .cookie-consent p a:hover { text-decoration: underline; }
    .cookie-consent .cookie-btn {
      border: none;
      background: var(--accent);
      color: #fff;
      font-size: 0.82rem;
      font-weight: 700;
      border-radius: 8px;
      padding: 9px 14px;
      cursor: pointer;
    }
    @media (max-width: 576px) {
      .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
      }
    }
