:root {
      --primary-blue: #1a4b8c;
      --accent-blue:  #2563eb;
      --light-blue:   #dbeafe;
      --dark:         #0f1c2e;
      --mid-grey:     #6b7280;
      --light-grey:   #f1f5f9;
      --border-grey:  #e2e8f0;
      --white:        #ffffff;
    }

    * { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: #1e293b;
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, .brand-font {
      font-family: 'Rajdhani', sans-serif;
    }

    /* ─── NAVBAR ──────────────────────────────────────── */
    .navbar {
      background: var(--dark) !important;
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1050;
      box-shadow: 0 2px 20px rgba(0,0,0,.5);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
    }

    .brand-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--accent-blue), #1d4ed8);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: white;
      flex-shrink: 0;
    }

    .brand-text-main {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      line-height: 1.1;
      letter-spacing: 0.5px;
    }

    .brand-text-sub {
      font-size: 0.65rem;
      color: #93c5fd;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 500;
    }

    .navbar-nav .nav-link {
      color: #cbd5e1 !important;
      font-weight: 500;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 1.5rem 1rem !important;
      transition: color 0.2s, border-bottom 0.2s;
      border-bottom: 3px solid transparent;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #60a5fa !important;
      border-bottom-color: #60a5fa;
    }

    .navbar-toggler {
      border-color: #374151;
      color: white;
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    /* ─── TOP BAR ─────────────────────────────────────── */
    .top-bar {
      background: var(--primary-blue);
      padding: 7px 0;
      font-size: 0.8rem;
      color: #bfdbfe;
    }

    .top-bar a { color: #bfdbfe; text-decoration: none; }
    .top-bar a:hover { color: white; }

    /* ─── HERO ────────────────────────────────────────── */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--dark);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(10,24,47,.92) 0%, rgba(15,30,60,.75) 50%, rgba(30,60,100,.5) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='%230f1c2e'/%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff08'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff05' stroke-width='.5'/%3E%3C/svg%3E");
      background-size: cover, 60px 60px;
    }

    /* animated gear shapes */
    .gear-decor {
      position: absolute;
      border-radius: 50%;
      border: 3px solid rgba(37,99,235,.15);
      animation: spin linear infinite;
    }
    .gear-decor::before {
      content: '';
      position: absolute;
      inset: 8px;
      border-radius: 50%;
      border: 2px dashed rgba(37,99,235,.1);
    }
    .gear-1 { width: 300px; height: 300px; right: -80px; top: 10%; animation-duration: 40s; }
    .gear-2 { width: 180px; height: 180px; right: 180px; top: 5%;  animation-duration: 25s; animation-direction: reverse; }
    .gear-3 { width: 120px; height: 120px; left: 5%; bottom: 15%; animation-duration: 20s; }

    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    .hero-content { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-block;
      background: rgba(37,99,235,.2);
      border: 1px solid rgba(37,99,235,.4);
      color: #93c5fd;
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 700;
      line-height: 1.05;
      color: white;
      margin-bottom: 1.5rem;
    }

    .hero-title .highlight {
      background: linear-gradient(90deg, #60a5fa, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: #94a3b8;
      max-width: 560px;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .btn-hero-primary {
      background: linear-gradient(135deg, var(--accent-blue), #1d4ed8);
      color: white;
      border: none;
      padding: 14px 32px;
      border-radius: 6px;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .5px;
      transition: all .25s;
      box-shadow: 0 8px 25px rgba(37,99,235,.4);
    }

    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(37,99,235,.5);
      color: white;
    }

    .btn-hero-outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,.3);
      padding: 12px 32px;
      border-radius: 6px;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .5px;
      transition: all .25s;
    }

    .btn-hero-outline:hover {
      background: rgba(255,255,255,.1);
      border-color: white;
      color: white;
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .stat-item .num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #60a5fa;
      line-height: 1;
    }

    .stat-item .label {
      font-size: .75rem;
      color: #64748b;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 2px;
    }

    /* ─── SECTION TITLES ──────────────────────────────── */
    .section-eyebrow {
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--accent-blue);
      margin-bottom: .5rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
    }

    .section-title span { color: var(--accent-blue); }

    .section-divider {
      width: 56px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-blue), #93c5fd);
      border-radius: 2px;
      margin: 1rem 0 1.5rem;
    }

    /* ─── WHY US STRIP ────────────────────────────────── */
    .why-strip {
      background: var(--primary-blue);
      padding: 2.5rem 0;
    }

    .why-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: white;
    }

    .why-item .icon-wrap {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .why-item .text strong {
      display: block;
      font-weight: 600;
      font-size: .95rem;
    }

    .why-item .text span {
      font-size: .8rem;
      color: #bfdbfe;
    }

    /* ─── ABOUT ───────────────────────────────────────── */
    #about { padding: 100px 0; background: var(--white); }

    .about-img-wrap {
      position: relative;
    }

    .about-img-main {
      border-radius: 12px;
      overflow: hidden;
      background: linear-gradient(135deg, #1e3a5f, #0f1c2e);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-img-main svg { opacity: .15; }

    .about-img-main .engine-icon {
      font-size: 8rem;
      color: rgba(96,165,250,.3);
    }

    .about-badge-box {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: white;
      border-radius: 12px;
      padding: 20px 24px;
      box-shadow: 0 20px 50px rgba(0,0,0,.12);
      text-align: center;
      min-width: 130px;
    }

    .about-badge-box .big-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--accent-blue);
      line-height: 1;
    }

    .about-badge-box .small-text {
      font-size: .72rem;
      color: var(--mid-grey);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 2px;
    }

    .check-list { list-style: none; padding: 0; margin: 0; }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: .95rem;
      color: #334155;
    }

    .check-list li i {
      color: var(--accent-blue);
      font-size: 1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ─── SERVICES ────────────────────────────────────── */
    #services {
      padding: 100px 0;
      background: var(--light-grey);
    }

    .service-card {
      background: white;
      border-radius: 14px;
      padding: 2rem;
      height: 100%;
      border: 1px solid var(--border-grey);
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-blue), #60a5fa);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(37,99,235,.12);
      border-color: #bfdbfe;
    }

    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 60px;
      height: 60px;
      background: var(--light-blue);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--accent-blue);
      margin-bottom: 1.25rem;
      transition: background .3s, color .3s;
    }

    .service-card:hover .service-icon {
      background: var(--accent-blue);
      color: white;
    }

    .service-card h5 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: .6rem;
    }

    .service-card p {
      font-size: .875rem;
      color: var(--mid-grey);
      line-height: 1.7;
      margin: 0;
    }

    .service-num {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      font-family: 'Rajdhani', sans-serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--border-grey);
      line-height: 1;
      pointer-events: none;
      transition: color .3s;
    }

    .service-card:hover .service-num { color: #dbeafe; }

    /* ─── CTA BANNER ──────────────────────────────────── */
    .cta-banner {
      background: linear-gradient(135deg, var(--primary-blue) 0%, #0f1c2e 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff06'/%3E%3C/svg%3E");
    }

    .cta-banner h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: white;
      font-weight: 700;
    }

    .cta-banner p { color: #93c5fd; font-size: 1.05rem; }

    .btn-cta {
      background: white;
      color: var(--primary-blue);
      font-weight: 700;
      padding: 14px 36px;
      border-radius: 6px;
      border: none;
      font-size: .95rem;
      letter-spacing: .5px;
      transition: all .25s;
    }

    .btn-cta:hover {
      background: #dbeafe;
      color: var(--primary-blue);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0,0,0,.2);
    }

    .btn-cta-outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,.4);
      font-weight: 600;
      padding: 12px 36px;
      border-radius: 6px;
      font-size: .95rem;
      transition: all .25s;
    }

    .btn-cta-outline:hover {
      border-color: white;
      background: rgba(255,255,255,.1);
      color: white;
      transform: translateY(-2px);
    }

    /* ─── CONTACT ─────────────────────────────────────── */
    #contact { padding: 100px 0; background: white; }

    .contact-info-card {
      background: var(--light-grey);
      border-radius: 12px;
      padding: 2rem;
      height: 100%;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-grey);
    }

    .contact-item:last-child { border-bottom: none; }

    .contact-icon {
      width: 46px;
      height: 46px;
      background: var(--light-blue);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--accent-blue);
      flex-shrink: 0;
    }

    .contact-item .label {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--mid-grey);
      font-weight: 600;
    }

    .contact-item .value {
      font-size: .95rem;
      color: var(--dark);
      font-weight: 500;
      margin-top: 2px;
    }

    .contact-form-wrap {
      background: white;
      border: 1px solid var(--border-grey);
      border-radius: 14px;
      padding: 2.5rem;
      box-shadow: 0 10px 40px rgba(0,0,0,.06);
    }

    .form-label {
      font-size: .82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: #374151;
      margin-bottom: .4rem;
    }

    .form-control, .form-select {
      border: 1.5px solid var(--border-grey);
      border-radius: 8px;
      padding: .65rem 1rem;
      font-size: .9rem;
      color: var(--dark);
      transition: border-color .2s, box-shadow .2s;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--accent-blue);
      box-shadow: 0 0 0 3px rgba(37,99,235,.1);
    }

    .btn-submit {
      background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
      color: white;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .5px;
      width: 100%;
      transition: all .25s;
    }

    .btn-submit:hover {
      opacity: .92;
      transform: translateY(-1px);
      box-shadow: 0 8px 25px rgba(37,99,235,.35);
      color: white;
    }

    /* ─── HOURS BADGE ─────────────────────────────────── */
    .hours-card {
      background: linear-gradient(135deg, var(--primary-blue), #1e40af);
      border-radius: 12px;
      padding: 1.75rem;
      color: white;
      margin-top: 1.5rem;
    }

    .hours-card h6 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #93c5fd;
      margin-bottom: 1rem;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: .875rem;
      padding: 5px 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { color: #bfdbfe; }
    .hours-row .time { color: white; font-weight: 500; }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--dark);
      color: #94a3b8;
      padding: 60px 0 0;
    }

    .footer-brand .brand-text-main { font-size: 1.4rem; }

    .footer-brand p {
      font-size: .875rem;
      line-height: 1.7;
      margin-top: .75rem;
      color: #64748b;
    }

    footer h6 {
      font-family: 'Rajdhani', sans-serif;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #60a5fa;
      margin-bottom: 1.25rem;
    }

    footer ul { list-style: none; padding: 0; margin: 0; }

    footer ul li {
      margin-bottom: .6rem;
    }

    footer ul li a {
      color: #64748b;
      text-decoration: none;
      font-size: .875rem;
      transition: color .2s;
    }

    footer ul li a:hover { color: #93c5fd; }

    .footer-bottom {
      margin-top: 50px;
      border-top: 1px solid #1e293b;
      padding: 20px 0;
      font-size: .8rem;
      color: #475569;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: #1e293b;
      color: #64748b;
      border-radius: 8px;
      font-size: 1rem;
      text-decoration: none;
      transition: all .2s;
      margin-right: 6px;
    }

    .social-links a:hover {
      background: var(--accent-blue);
      color: white;
    }

    /* ─── UTILITY ─────────────────────────────────────── */
    .scroll-reveal { opacity: 0; transform: translateY(30px); transition: all .6s ease; }
    .scroll-reveal.visible { opacity: 1; transform: translateY(0); }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
      .about-badge-box { right: 0; }
      .contact-form-wrap { padding: 1.5rem; }
      #home { min-height: auto; padding: 120px 0 80px; }
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #1e293b;
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, .brand-font {
      font-family: 'Rajdhani', sans-serif;
    }

    /* ─── NAVBAR ──────────────────────────────────────── */
    .navbar {
      background: var(--dark) !important;
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1050;
      box-shadow: 0 2px 20px rgba(0,0,0,.5);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
    }

    .brand-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--accent-blue), #1d4ed8);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: white;
      flex-shrink: 0;
    }

    .brand-text-main {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      line-height: 1.1;
      letter-spacing: 0.5px;
    }

    .brand-text-sub {
      font-size: 0.65rem;
      color: #93c5fd;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 500;
    }

    .navbar-nav .nav-link {
      color: #cbd5e1 !important;
      font-weight: 500;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 1.5rem 1rem !important;
      transition: color 0.2s, border-bottom 0.2s;
      border-bottom: 3px solid transparent;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: #60a5fa !important;
      border-bottom-color: #60a5fa;
    }

    .navbar-toggler {
      border-color: #374151;
      color: white;
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    /* ─── TOP BAR ─────────────────────────────────────── */
    .top-bar {
      background: var(--primary-blue);
      padding: 7px 0;
      font-size: 0.8rem;
      color: #bfdbfe;
    }

    .top-bar a { color: #bfdbfe; text-decoration: none; }
    .top-bar a:hover { color: white; }

    /* ─── HERO ────────────────────────────────────────── */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--dark);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(10,24,47,.92) 0%, rgba(15,30,60,.75) 50%, rgba(30,60,100,.5) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='%230f1c2e'/%3E%3Ccircle cx='30' cy='30' r='1' fill='%23ffffff08'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff05' stroke-width='.5'/%3E%3C/svg%3E");
      background-size: cover, 60px 60px;
    }

    /* animated gear shapes */
    .gear-decor {
      position: absolute;
      border-radius: 50%;
      border: 3px solid rgba(37,99,235,.15);
      animation: spin linear infinite;
    }
    .gear-decor::before {
      content: '';
      position: absolute;
      inset: 8px;
      border-radius: 50%;
      border: 2px dashed rgba(37,99,235,.1);
    }
    .gear-1 { width: 300px; height: 300px; right: -80px; top: 10%; animation-duration: 40s; }
    .gear-2 { width: 180px; height: 180px; right: 180px; top: 5%;  animation-duration: 25s; animation-direction: reverse; }
    .gear-3 { width: 120px; height: 120px; left: 5%; bottom: 15%; animation-duration: 20s; }

    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    .hero-content { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-block;
      background: rgba(37,99,235,.2);
      border: 1px solid rgba(37,99,235,.4);
      color: #93c5fd;
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 700;
      line-height: 1.05;
      color: white;
      margin-bottom: 1.5rem;
    }

    .hero-title .highlight {
      background: linear-gradient(90deg, #60a5fa, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: #94a3b8;
      max-width: 560px;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .btn-hero-primary {
      background: linear-gradient(135deg, var(--accent-blue), #1d4ed8);
      color: white;
      border: none;
      padding: 14px 32px;
      border-radius: 6px;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .5px;
      transition: all .25s;
      box-shadow: 0 8px 25px rgba(37,99,235,.4);
    }

    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(37,99,235,.5);
      color: white;
    }

    .btn-hero-outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,.3);
      padding: 12px 32px;
      border-radius: 6px;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .5px;
      transition: all .25s;
    }

    .btn-hero-outline:hover {
      background: rgba(255,255,255,.1);
      border-color: white;
      color: white;
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .stat-item .num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #60a5fa;
      line-height: 1;
    }

    .stat-item .label {
      font-size: .75rem;
      color: #64748b;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 2px;
    }

    /* ─── SECTION TITLES ──────────────────────────────── */
    .section-eyebrow {
      font-size: .75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--accent-blue);
      margin-bottom: .5rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
    }

    .section-title span { color: var(--accent-blue); }

    .section-divider {
      width: 56px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-blue), #93c5fd);
      border-radius: 2px;
      margin: 1rem 0 1.5rem;
    }

    /* ─── WHY US STRIP ────────────────────────────────── */
    .why-strip {
      background: var(--primary-blue);
      padding: 2.5rem 0;
    }

    .why-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: white;
    }

    .why-item .icon-wrap {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .why-item .text strong {
      display: block;
      font-weight: 600;
      font-size: .95rem;
    }

    .why-item .text span {
      font-size: .8rem;
      color: #bfdbfe;
    }

    /* ─── ABOUT ───────────────────────────────────────── */
    #about { padding: 100px 0; background: var(--white); }

    .about-img-wrap {
      position: relative;
    }

    .about-img-main {
      border-radius: 12px;
      overflow: hidden;
      background: linear-gradient(135deg, #1e3a5f, #0f1c2e);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-img-main svg { opacity: .15; }

    .about-img-main .engine-icon {
      font-size: 8rem;
      color: rgba(96,165,250,.3);
    }

    .about-badge-box {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: white;
      border-radius: 12px;
      padding: 20px 24px;
      box-shadow: 0 20px 50px rgba(0,0,0,.12);
      text-align: center;
      min-width: 130px;
    }

    .about-badge-box .big-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--accent-blue);
      line-height: 1;
    }

    .about-badge-box .small-text {
      font-size: .72rem;
      color: var(--mid-grey);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 2px;
    }

    .check-list { list-style: none; padding: 0; margin: 0; }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: .95rem;
      color: #334155;
    }

    .check-list li i {
      color: var(--accent-blue);
      font-size: 1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ─── SERVICES ────────────────────────────────────── */
    #services {
      padding: 100px 0;
      background: var(--light-grey);
    }

    .service-card {
      background: white;
      border-radius: 14px;
      padding: 2rem;
      height: 100%;
      border: 1px solid var(--border-grey);
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-blue), #60a5fa);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(37,99,235,.12);
      border-color: #bfdbfe;
    }

    .service-card:hover::before { transform: scaleX(1); }

    .service-icon {
      width: 60px;
      height: 60px;
      background: var(--light-blue);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--accent-blue);
      margin-bottom: 1.25rem;
      transition: background .3s, color .3s;
    }

    .service-card:hover .service-icon {
      background: var(--accent-blue);
      color: white;
    }

    .service-card h5 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: .6rem;
    }

    .service-card p {
      font-size: .875rem;
      color: var(--mid-grey);
      line-height: 1.7;
      margin: 0;
    }

    .service-num {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      font-family: 'Rajdhani', sans-serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--border-grey);
      line-height: 1;
      pointer-events: none;
      transition: color .3s;
    }

    .service-card:hover .service-num { color: #dbeafe; }

    /* ─── CTA BANNER ──────────────────────────────────── */
    .cta-banner {
      background: linear-gradient(135deg, var(--primary-blue) 0%, #0f1c2e 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff06'/%3E%3C/svg%3E");
    }

    .cta-banner h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: white;
      font-weight: 700;
    }

    .cta-banner p { color: #93c5fd; font-size: 1.05rem; }

    .btn-cta {
      background: white;
      color: var(--primary-blue);
      font-weight: 700;
      padding: 14px 36px;
      border-radius: 6px;
      border: none;
      font-size: .95rem;
      letter-spacing: .5px;
      transition: all .25s;
    }

    .btn-cta:hover {
      background: #dbeafe;
      color: var(--primary-blue);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0,0,0,.2);
    }

    .btn-cta-outline {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,.4);
      font-weight: 600;
      padding: 12px 36px;
      border-radius: 6px;
      font-size: .95rem;
      transition: all .25s;
    }

    .btn-cta-outline:hover {
      border-color: white;
      background: rgba(255,255,255,.1);
      color: white;
      transform: translateY(-2px);
    }

    /* ─── CONTACT ─────────────────────────────────────── */
    #contact { padding: 100px 0; background: white; }

    .contact-info-card {
      background: var(--light-grey);
      border-radius: 12px;
      padding: 2rem;
      height: 100%;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-grey);
    }

    .contact-item:last-child { border-bottom: none; }

    .contact-icon {
      width: 46px;
      height: 46px;
      background: var(--light-blue);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--accent-blue);
      flex-shrink: 0;
    }

    .contact-item .label {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--mid-grey);
      font-weight: 600;
    }

    .contact-item .value {
      font-size: .95rem;
      color: var(--dark);
      font-weight: 500;
      margin-top: 2px;
    }

    .contact-form-wrap {
      background: white;
      border: 1px solid var(--border-grey);
      border-radius: 14px;
      padding: 2.5rem;
      box-shadow: 0 10px 40px rgba(0,0,0,.06);
    }

    .form-label {
      font-size: .82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: #374151;
      margin-bottom: .4rem;
    }

    .form-control, .form-select {
      border: 1.5px solid var(--border-grey);
      border-radius: 8px;
      padding: .65rem 1rem;
      font-size: .9rem;
      color: var(--dark);
      transition: border-color .2s, box-shadow .2s;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--accent-blue);
      box-shadow: 0 0 0 3px rgba(37,99,235,.1);
    }

    .btn-submit {
      background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
      color: white;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .5px;
      width: 100%;
      transition: all .25s;
    }

    .btn-submit:hover {
      opacity: .92;
      transform: translateY(-1px);
      box-shadow: 0 8px 25px rgba(37,99,235,.35);
      color: white;
    }

    /* ─── HOURS BADGE ─────────────────────────────────── */
    .hours-card {
      background: linear-gradient(135deg, var(--primary-blue), #1e40af);
      border-radius: 12px;
      padding: 1.75rem;
      color: white;
      margin-top: 1.5rem;
    }

    .hours-card h6 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #93c5fd;
      margin-bottom: 1rem;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: .875rem;
      padding: 5px 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { color: #bfdbfe; }
    .hours-row .time { color: white; font-weight: 500; }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--dark);
      color: #94a3b8;
      padding: 60px 0 0;
    }

    .footer-brand .brand-text-main { font-size: 1.4rem; }

    .footer-brand p {
      font-size: .875rem;
      line-height: 1.7;
      margin-top: .75rem;
      color: #64748b;
    }

    footer h6 {
      font-family: 'Rajdhani', sans-serif;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #60a5fa;
      margin-bottom: 1.25rem;
    }

    footer ul { list-style: none; padding: 0; margin: 0; }

    footer ul li {
      margin-bottom: .6rem;
    }

    footer ul li a {
      color: #64748b;
      text-decoration: none;
      font-size: .875rem;
      transition: color .2s;
    }

    footer ul li a:hover { color: #93c5fd; }

    .footer-bottom {
      margin-top: 50px;
      border-top: 1px solid #1e293b;
      padding: 20px 0;
      font-size: .8rem;
      color: #475569;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: #1e293b;
      color: #64748b;
      border-radius: 8px;
      font-size: 1rem;
      text-decoration: none;
      transition: all .2s;
      margin-right: 6px;
    }

    .social-links a:hover {
      background: var(--accent-blue);
      color: white;
    }

    /* ─── UTILITY ─────────────────────────────────────── */
    .scroll-reveal { opacity: 0; transform: translateY(30px); transition: all .6s ease; }
    .scroll-reveal.visible { opacity: 1; transform: translateY(0); }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
      .about-badge-box { right: 0; }
      .contact-form-wrap { padding: 1.5rem; }
      #home { min-height: auto; padding: 120px 0 80px; }
    }