    /* =====================================================
       CSS VARIABLES & RESET
    ===================================================== */
    :root {
      --navy:       #0d1f2d;
      --navy-mid:   #162736;
      --navy-light: #1e3448;
      --green:      #1e7c3a;
      --green-mid:  #25963f;
      --green-bright: #2cb84e;
      --gold:       #c8a84b;
      --gold-light: #e2c06a;
      --white:      #ffffff;
      --off-white:  #f4f6f8;
      --gray-light: #e8ecf0;
      --gray:       #8a9bb0;
      --text-dark:  #0d1f2d;
      --text-body:  #3d5066;
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      --shadow-sm:  0 2px 12px rgba(13,31,45,0.10);
      --shadow-md:  0 8px 32px rgba(13,31,45,0.16);
      --shadow-lg:  0 20px 60px rgba(13,31,45,0.22);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Barlow', sans-serif;
      color: var(--text-body);
      background: var(--white);
      overflow-x: hidden;
    }

    /* =====================================================
       TYPOGRAPHY
    ===================================================== */
    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      color: var(--navy);
      line-height: 1.15;
    }
    .label-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green-mid);
    }
    .section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; }
    .section-subtitle { font-size: 1.05rem; color: var(--text-body); font-weight: 300; max-width: 600px; line-height: 1.75; }

    /* =====================================================
       UTILITY CLASSES
    ===================================================== */
    .bg-navy { background: var(--navy); }
    .bg-navy-mid { background: var(--navy-mid); }
    .bg-green { background: var(--green); }
    .bg-off-white { background: var(--off-white); }
    .text-gold { color: var(--gold); }
    .text-green { color: var(--green-mid); }
    .text-white { color: var(--white) !important; }
    .text-navy { color: var(--navy) !important; }

    .btn-primary-custom {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--green);
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.85rem 2rem;
      border: 2px solid var(--green);
      border-radius: 3px;
      cursor: pointer; text-decoration: none;
      transition: var(--transition);
    }
    .btn-primary-custom:hover {
      background: var(--green-bright); border-color: var(--green-bright);
      color: var(--white); text-decoration: none;
      transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,124,58,0.35);
    }
    .btn-outline-custom {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent;
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.85rem 2rem;
      border: 2px solid rgba(255,255,255,0.55);
      border-radius: 3px;
      cursor: pointer; text-decoration: none;
      transition: var(--transition);
    }
    .btn-outline-custom:hover {
      background: rgba(255,255,255,0.12); border-color: var(--white);
      color: var(--white); text-decoration: none;
      transform: translateY(-2px);
    }
    .btn-gold {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem; font-weight: 800;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.85rem 2.2rem;
      border: 2px solid var(--gold);
      border-radius: 3px;
      cursor: pointer; text-decoration: none;
      transition: var(--transition);
    }
    .btn-gold:hover {
      background: var(--gold-light); border-color: var(--gold-light);
      color: var(--navy); text-decoration: none;
      transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.4);
    }

    .gold-bar {
      width: 50px; height: 4px;
      background: linear-gradient(90deg, var(--green), var(--gold));
      border-radius: 2px; margin-bottom: 1.5rem;
    }
    .gold-bar.centered { margin-left: auto; margin-right: auto; }

    /* Scroll reveal base */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0; transform: translateX(-50px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal-right {
      opacity: 0; transform: translateX(50px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal-left.visible, .reveal-right.visible {
      opacity: 1; transform: translateX(0);
    }

    /* =====================================================
       NAVIGATION
    ===================================================== */
    #mainNav {
      position: sticky; top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0;
      transition: var(--transition);
      background: #ffffff;
      box-shadow: 0 2px 16px rgba(13,31,45,0.10);
      border-bottom: 2px solid var(--green);
    }
    #mainNav.scrolled {
      background: #ffffff;
      box-shadow: 0 4px 24px rgba(13,31,45,0.14);
      border-bottom: 2px solid var(--green);
    }
    .navbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.55rem 15px;
      max-width: 1140px; margin: 0 auto;
      width: 100%;
    }

    /* ── PNG logo image ── */
    .nav-logo {
      display: flex; align-items: center;
      text-decoration: none; line-height: 0;
    }
    .nav-logo-img {
      height: 64px;
      width: auto;
      display: block;
      object-fit: contain;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .nav-logo:hover .nav-logo-img { opacity: 0.9; transform: scale(1.02); }

    /* ── Nav links — dark on white ── */
    .nav-links {
      display: flex; align-items: center; gap: 0.15rem;
      list-style: none; margin: 0; padding: 0;
    }
    .nav-links li a {
      font-family: 'Barlow', sans-serif;
      font-size: 0.875rem; font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      padding: 0.5rem 0.9rem;
      border-radius: 4px;
      transition: var(--transition);
      letter-spacing: 0.02em;
      position: relative;
    }
    .nav-links li a::after {
      content: '';
      position: absolute; bottom: 4px; left: 0.9rem; right: 0.9rem;
      height: 2px; border-radius: 1px;
      background: var(--green);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.28s ease;
    }
    .nav-links li a:hover { color: var(--green); background: rgba(30,124,58,0.06); }
    .nav-links li a:hover::after { transform: scaleX(1); }
    .nav-cta { margin-left: 0.75rem; }

    /* ── Mobile nav toggle — dark bars ── */
    .nav-toggle {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
      background: none; border: none;
      flex-shrink: 0;
    }
    .nav-toggle:focus { outline: none; }
    .nav-toggle:focus-visible {
      box-shadow: 0 0 0 3px rgba(30,124,58,0.2);
      border-radius: 4px;
    }
    .nav-toggle span {
      width: 26px; height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: var(--transition);
      display: block;
    }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile dropdown — stays navy for contrast ── */
    .mobile-menu {
      display: none;
      background: var(--navy);
      padding: 1.25rem 2rem 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block; color: rgba(255,255,255,0.85);
      text-decoration: none; padding: 0.7rem 0;
      font-weight: 500; font-size: 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--gold); }

    @media (max-width: 991px) {
      .nav-links, .nav-cta { display: none; }
      .navbar-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: 0.8rem;
        padding: 0.7rem 15px;
      }
      .nav-logo { grid-column: 1; }
      .nav-toggle {
        display: flex;
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
        margin-right: 0.35rem;
        position: static;
        transform: none;
      }
    }

    /* =====================================================
       HERO SECTION
    ===================================================== */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center;
      overflow: hidden;
      background: var(--navy);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(13,31,45,0.97) 0%, rgba(13,31,45,0.78) 55%, rgba(30,52,72,0.6) 100%),
        url('hero-img.png') center/cover no-repeat;
    }
    .hero-grid-overlay {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(30,124,58,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,124,58,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-accent-bar {
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 5px;
      background: linear-gradient(180deg, var(--green), var(--gold), var(--green));
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 9rem 0 5rem;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(30,124,58,0.2);
      border: 1px solid rgba(30,124,58,0.5);
      color: var(--green-bright);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 0.45rem 1.1rem; border-radius: 20px;
      margin-bottom: 1.5rem;
    }
    .hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      font-weight: 800; color: var(--white);
      line-height: 1.1; margin-bottom: 1.5rem;
    }
    .hero-title .accent { color: var(--gold); }
    .hero-desc {
      font-size: 1.1rem; font-weight: 300;
      color: rgba(255,255,255,0.75);
      max-width: 580px; line-height: 1.8;
      margin-bottom: 2.5rem;
    }
    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
    .hero-stats {
      display: flex; gap: 2.5rem; flex-wrap: wrap;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat-item { display: flex; flex-direction: column; }
    .hero-stat-number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1;
    }
    .hero-stat-number span { color: var(--gold); }
    .hero-stat-label {
      font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.55);
      text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem;
    }
    .hero-scroll-hint {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      color: rgba(255,255,255,0.4);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
    }
    .scroll-dot {
      width: 28px; height: 44px;
      border: 2px solid rgba(255,255,255,0.25);
      border-radius: 14px;
      display: flex; justify-content: center; padding-top: 6px;
    }
    .scroll-dot::after {
      content: ''; width: 4px; height: 10px;
      background: var(--gold);
      border-radius: 2px;
      animation: scrollBob 1.8s ease-in-out infinite;
    }
    @keyframes scrollBob {
      0%, 100% { transform: translateY(0); opacity: 1; }
      80% { transform: translateY(10px); opacity: 0.3; }
    }

    /* =====================================================
       ABOUT SECTION
    ===================================================== */
    #about { padding: 7rem 0; background: var(--white); }
    .about-text h2 { margin-bottom: 1.2rem; }
    .about-text p {
      font-size: 1.05rem; line-height: 1.85;
      color: var(--text-body); margin-bottom: 1.2rem;
      font-weight: 300;
    }
    .about-highlights {
      display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem;
    }
    .highlight-chip {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.65rem 1.2rem;
      background: var(--off-white);
      border-radius: 4px;
      border-left: 3px solid var(--green);
      font-size: 0.88rem; font-weight: 600;
      color: var(--navy);
    }
    .highlight-chip i { color: var(--green); font-size: 0.95rem; }
    .about-image-wrap {
      position: relative;
    }
    .about-img {
      width: 100%; height: 480px; object-fit: cover;
      border-radius: 6px;
      box-shadow: var(--shadow-lg);
    }
    .about-badge-box {
      position: absolute; bottom: -1.5rem; left: -1.5rem;
      background: var(--navy);
      color: var(--white);
      padding: 1.5rem 2rem;
      border-radius: 6px;
      box-shadow: var(--shadow-md);
      text-align: center;
      min-width: 160px;
    }
    .about-badge-box .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1;
    }
    .about-badge-box .lbl {
      font-size: 0.75rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: rgba(255,255,255,0.65); margin-top: 0.35rem;
    }
    .about-icon-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem;
    }
    .about-icon-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.4rem;
      background: var(--off-white);
      border-radius: 6px;
      border: 1px solid var(--gray-light);
      transition: var(--transition);
    }
    .about-icon-item:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
      border-color: var(--green);
    }
    .abt-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--green), var(--green-mid));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-size: 1.1rem;
    }
    .about-icon-item h5 {
      font-family: 'Barlow', sans-serif;
      font-size: 0.92rem; font-weight: 700; margin-bottom: 0.25rem;
      color: var(--navy);
    }
    .about-icon-item p {
      font-size: 0.82rem; color: var(--gray); margin: 0; line-height: 1.5;
    }

    /* =====================================================
       SERVICES SECTION
    ===================================================== */
    #services { padding: 7rem 0; background: var(--navy); }
    #services .section-title { color: var(--white); }
    #services .section-subtitle { color: rgba(255,255,255,0.6); }
    #services .label-tag { color: var(--gold); }
    #services .gold-bar { background: linear-gradient(90deg, var(--gold), var(--green)); }
    .service-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px; padding: 2.5rem;
      height: 100%;
      transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--green), var(--gold));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, rgba(30,124,58,0.3), rgba(30,124,58,0.1));
      border: 1px solid rgba(30,124,58,0.4);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: var(--green-bright);
      margin-bottom: 1.5rem;
    }
    .service-card h3 {
      font-size: 1.3rem; color: var(--white); margin-bottom: 0.75rem;
    }
    .service-card p {
      font-size: 0.9rem; color: rgba(255,255,255,0.55);
      line-height: 1.75; margin-bottom: 1.25rem; font-weight: 300;
    }
    .service-list { list-style: none; padding: 0; margin: 0; }
    .service-list li {
      font-size: 0.85rem; color: rgba(255,255,255,0.7);
      padding: 0.35rem 0;
      display: flex; align-items: center; gap: 0.6rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .service-list li:last-child { border-bottom: none; }
    .service-list li i { color: var(--gold); font-size: 0.7rem; }

    /* =====================================================
       WHY CHOOSE US
    ===================================================== */
    #why { padding: 7rem 0; background: var(--off-white); }
    .why-feature {
      display: flex; gap: 1.2rem; align-items: flex-start;
      padding: 1.5rem; border-radius: 6px;
      transition: var(--transition);
      margin-bottom: 1rem;
    }
    .why-feature:hover { background: var(--white); box-shadow: var(--shadow-sm); }
    .why-icon {
      width: 52px; height: 52px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.2rem;
    }
    .why-feature h5 {
      font-family: 'Barlow', sans-serif;
      font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem;
    }
    .why-feature p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; margin: 0; font-weight: 300; }
    .why-visual {
      background: var(--navy);
      border-radius: 8px; padding: 3rem;
      height: 100%; color: var(--white);
      display: flex; flex-direction: column; justify-content: center;
      min-height: 500px;
    }
    .why-visual h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 1rem; }
    .why-visual p { color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }
    .why-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .why-stat-box {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px; padding: 1.2rem;
      text-align: center;
    }
    .why-stat-box .big {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem; font-weight: 800;
      color: var(--gold); line-height: 1;
    }
    .why-stat-box .lbl {
      font-size: 0.75rem; color: rgba(255,255,255,0.5);
      text-transform: uppercase; letter-spacing: 0.1em;
      margin-top: 0.3rem;
    }

    /* =====================================================
       INDUSTRIES SECTION
    ===================================================== */
    #industries { padding: 7rem 0; background: var(--white); }
    .industry-card {
      text-align: center; padding: 2.5rem 1.5rem;
      border: 1px solid var(--gray-light);
      border-radius: 8px;
      transition: var(--transition);
      cursor: default;
      height: 100%;
    }
    .industry-card:hover {
      border-color: var(--green);
      box-shadow: 0 12px 40px rgba(30,124,58,0.12);
      transform: translateY(-6px);
    }
    .industry-card:hover .ind-icon { background: var(--green); color: var(--white); }
    .ind-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--off-white);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem; color: var(--green);
      margin: 0 auto 1.25rem;
      transition: var(--transition);
      border: 2px solid var(--gray-light);
    }
    .industry-card h5 {
      font-family: 'Barlow', sans-serif;
      font-size: 0.95rem; font-weight: 700; color: var(--navy);
      margin-bottom: 0.5rem;
    }
    .industry-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; margin: 0; }

    /* =====================================================
       TESTIMONIALS
    ===================================================== */
    #testimonials { padding: 7rem 0; background: var(--off-white); }
    .testimonial-slider { position: relative; overflow: hidden; }
    .testimonials-track {
      display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    }
    .testimonial-slide {
      min-width: 100%; padding: 0 1rem;
    }
    .testimonial-card {
      background: var(--white); border-radius: 10px;
      padding: 3rem; max-width: 800px; margin: 0 auto;
      box-shadow: var(--shadow-md);
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 8rem; color: var(--green);
      opacity: 0.12;
      position: absolute; top: -1rem; left: 1.5rem;
      line-height: 1;
    }
    .testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; }
    .testimonial-card blockquote {
      font-size: 1.1rem; font-style: italic;
      color: var(--text-body); line-height: 1.85;
      font-weight: 300; margin: 0 0 1.5rem;
      position: relative; z-index: 1;
    }
    .testimonial-author { display: flex; align-items: center; gap: 1rem; }
    .author-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 700; color: var(--gold);
    }
    .author-info h6 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin: 0; }
    .author-info span { font-size: 0.82rem; color: var(--gray); }
    .slider-controls {
      display: flex; justify-content: center; align-items: center;
      gap: 1rem; margin-top: 2rem;
    }
    .slider-btn {
      width: 44px; height: 44px; border-radius: 50%;
      border: 2px solid var(--gray-light);
      background: var(--white);
      color: var(--navy); font-size: 0.9rem;
      cursor: pointer; transition: var(--transition);
      display: flex; align-items: center; justify-content: center;
    }
    .slider-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .slider-dots { display: flex; gap: 0.5rem; }
    .slider-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--gray-light); border: none; cursor: pointer;
      transition: var(--transition);
    }
    .slider-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

    /* =====================================================
       CTA BANNER
    ===================================================== */
    #cta-banner {
      background:
        linear-gradient(135deg, rgba(13,31,45,0.95) 0%, rgba(22,39,54,0.92) 100%),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
      padding: 6rem 0;
      text-align: center;
    }
    #cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
    #cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 550px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8; }

    /* =====================================================
       CONTACT SECTION
    ===================================================== */
    #contact { padding: 7rem 0; background: var(--white); }
    .contact-info-box {
      background: var(--navy); border-radius: 8px;
      padding: 3rem; height: 100%; color: var(--white);
    }
    .contact-info-box h4 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.5rem; }
    .contact-info-box > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 2rem; font-weight: 300; }
    .contact-detail {
      display: flex; align-items: flex-start; gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .contact-detail-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: rgba(30,124,58,0.2);
      border: 1px solid rgba(30,124,58,0.4);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--green-bright); font-size: 0.95rem;
    }
    .contact-detail h6 { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 0.25rem; font-family: 'Barlow', sans-serif; font-weight: 600; }
    .contact-detail p { color: var(--white); font-size: 0.9rem; margin: 0; font-weight: 400; }
    .contact-social { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
    .social-link {
      width: 38px; height: 38px; border-radius: 6px;
      background: rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7); font-size: 0.95rem;
      text-decoration: none; transition: var(--transition);
      border: 1px solid rgba(255,255,255,0.12);
    }
    .social-link:hover { background: var(--green); color: var(--white); border-color: var(--green); text-decoration: none; }
    .contact-form .form-group { margin-bottom: 1.2rem; }
    .contact-form label {
      font-size: 0.82rem; font-weight: 600; color: var(--navy);
      text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem;
    }
    .contact-form .form-control {
      border: 1.5px solid var(--gray-light);
      border-radius: 4px; padding: 0.85rem 1rem;
      font-family: 'Barlow', sans-serif;
      font-size: 0.92rem; color: var(--navy);
      background: var(--off-white);
      transition: var(--transition);
    }
    .contact-form .form-control:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(30,124,58,0.1);
      background: var(--white); outline: none;
    }
    .contact-form textarea { resize: vertical; min-height: 130px; }
    .contact-form .form-control.is-invalid {
      border-color: #e53935;
      box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
    }
    .contact-form .form-control.is-valid {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(30,124,58,0.08);
    }
    .invalid-feedback {
      display: block;
      font-size: 0.8rem;
      color: #e53935;
      margin-top: 0.3rem;
      min-height: 1rem;
    }
    #submitBtn:disabled { opacity: 0.72; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

    /* ── Custom Service Select ── */
    .custom-select-wrap {
      position: relative;
      display: block;
    }
    .custom-service-select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 100%;
      padding-right: 2.6rem !important;   /* room for arrow */
      white-space: normal;
      overflow: visible;
      text-overflow: unset;
      cursor: pointer;
    }
    /* Ensure dropdown list itself is wide enough to show full text */
    .custom-service-select option {
      white-space: normal;
      padding: 0.5rem 0.75rem;
    }
    .custom-select-arrow {
      position: absolute;
      right: 0.9rem;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: var(--green);
      font-size: 0.78rem;
      transition: var(--transition);
    }
    .custom-service-select:focus + .custom-select-arrow {
      color: var(--green-bright);
    }

    /* =====================================================
       FOOTER
    ===================================================== */
    footer {
      background: #0a1820;
      color: rgba(255,255,255,0.6);
      padding: 4rem 0 0;
    }
    .footer-logo { margin-bottom: 1rem; line-height: 0; }
    .footer-logo-svg {
      height: 80px;
      width: auto;
      display: block;
      border-radius: 16px;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    }
    .scroll-top-btn {
      position: fixed;
      right: 1.4rem;
      bottom: 1.4rem;
      width: 48px;
      height: 48px;
      border: none;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--green-mid));
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 30px rgba(13,31,45,0.22);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(14px);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.25s ease;
      z-index: 1100;
    }
    .scroll-top-btn:hover {
      background: linear-gradient(135deg, var(--green-bright), var(--green));
    }
    .scroll-top-btn.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    footer p { font-size: 0.88rem; line-height: 1.75; font-weight: 300; }
    .footer-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--white); margin-bottom: 1.25rem;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 0.6rem; }
    .footer-links li a {
      color: rgba(255,255,255,0.55); font-size: 0.88rem;
      text-decoration: none; transition: color 0.2s;
      display: inline-flex; align-items: center; gap: 0.4rem;
    }
    .footer-links li a:hover { color: var(--gold); }
    .footer-links li a i { font-size: 0.65rem; color: var(--green); }
    .footer-bottom {
      margin-top: 3rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1.5rem 0;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { margin: 0; font-size: 0.82rem; }
    .footer-social { display: flex; gap: 0.6rem; }
    .footer-social a {
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,0.07);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.55); font-size: 0.85rem;
      text-decoration: none; transition: var(--transition);
    }
    .footer-social a:hover { background: var(--green); color: var(--white); }

    /* =====================================================
       RESPONSIVE OVERRIDES
    ===================================================== */
    @media (max-width: 767px) {
      #hero {
        min-height: auto;
        align-items: flex-start;
      }

      .hero-title {
        font-size: clamp(2rem, 8vw, 2.95rem);
        line-height: 1.16;
      }
      .hero-title br { display: none; }
      .hero-stats { gap: 1.5rem; }
      .about-badge-box { display: none; }
      .about-icon-grid { grid-template-columns: 1fr; }
      .why-visual { min-height: auto; margin-top: 2rem; }
      .why-stat-grid { grid-template-columns: 1fr 1fr; }
      .contact-info-box { margin-bottom: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .navbar-inner { padding: 1rem 1.25rem; }
      .hero-content { padding: 2.35rem 0 4rem; }
    }

    @media (max-width: 575px) {
      .hero-title {
        font-size: clamp(1.8rem, 7.2vw, 2.45rem);
      }

      .hero-content {
        padding-top: 3.9rem;
      }

      .navbar-inner {
        padding: 0.7rem 15px;
      }

      .nav-toggle {
        margin-right: 0.5rem;
      }

      .nav-logo-img {
        height: 50px;
      }

      .mobile-menu {
        padding: 1.1rem 1.2rem 1.4rem;
      }

      .scroll-top-btn {
        right: 1rem;
        bottom: 1rem;
        width: 44px;
        height: 44px;
      }

      #hero .container {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
      }
    }

    /* Delay utility */
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }