

      /* =========================================================
         DESIGN TOKENS — single source of truth. Every color, type
         size, spacing value and radius used below is pulled from
         this one :root so the palette / rhythm can be changed in
         one place (DRY). The former hero-only token set has been
         merged in here; only values that genuinely differ from the
         base tokens (the hero overlay gradient, the hero poster
         image and the pill radius) kept their own name.
         ========================================================= */
      :root {
        /* ---- color: steel-plate dark, cool paper light, flame + blueprint accents ---- */
        --uv-ink: #101a20; /* blue-black steel — dark section surface */
        --uv-ink-soft: #16232b; /* raised dark surface (cards on ink) */
        --uv-ink-line: #2a3941; /* hairline borders on dark */
        --uv-paper: #f3f4f1; /* cool steel-white — light section surface */
        --uv-white: #ffffff;
        --uv-steel-700: #2b3438; /* body copy on light */
        --uv-steel-500: #5b6a70; /* muted copy on light */
        --uv-steel-200: #dde2e1; /* hairline borders on light */
        --uv-flame: #00a652; /* signature accent — gas-flame / hazard green */
        --uv-flame-dark: #058a45;
        --uv-blue: #2c6e9e; /* schematic blueprint blue — secondary accent */
        --uv-blue-dark: #204f74;
        --uv-amber-tint: #ffe7d8; /* pale flame tint for badges on light */

        /* ---- video-hero specific tones (kept distinct: near-black but a
             warmer cast than --uv-ink, used only in that section) ---- */
        --uv-hero-ink: #12140f;
        --uv-hero-overlay-top: rgba(18, 20, 15, 0.048);
        --uv-hero-overlay-bottom: rgba(18, 20, 15, 0.623);
        --uv-hero-poster: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1900&auto=format&fit=crop");

        /* ---- type ---- */
        --font-display: "Plus Jakarta Sans", sans-serif; /* industrial signage, condensed feel */
        --font-body: "Albert Sans", sans-serif; /* engineering-grade, technical body face */
        --font-mono: "Plus Jakarta Sans", sans-serif; /* spec labels, numbers, gauges */

        /* ---- rhythm ---- */
        --space-xs: 8px;
        --space-sm: 16px;
        --space-md: 28px;
        --space-lg: 48px;
        --space-xl: 88px;
        --space-2xl: 128px;

        --radius-sm: 6px;
        --radius-md: 12px;
        --radius-lg: 20px;
        --radius-pill: 999px;

        --shadow-soft: 0 20px 50px rgba(16, 26, 32, 0.1);
        --shadow-lift: 0 26px 60px rgba(16, 26, 32, 0.16);

        --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: var(--font-body);
        color: var(--uv-steel-700);
        background-color: var(--uv-paper);
        margin: 0;
        overflow-x: hidden;
      }

      section{
        overflow: hidden;
      }

      a {
        color: inherit;
      }

      /* =========================================================
         COMMON / REUSED CLASSES (DRY layer)
         Every repeating visual pattern — eyebrows, headings,
         buttons, cards, section padding, reveal-on-scroll — is
         defined once here and reused everywhere instead of being
         redeclared per-section.
         ========================================================= */

      /* --- section shells --- */
      .uv-section {
        padding: var(--space-2xl) 0;
      }

      .uv-section--tight {
        padding: var(--space-xl) 0;
      }

      .uv-section--light {
        background-color: var(--uv-paper);
      }

      .uv-section--white {
        background-color: var(--uv-white);
      }

      .uv-section--dark {
        background-color: var(--uv-ink);
        color: rgba(255, 255, 255, 0.86);
      }

      .uv-section--dark .uv-heading {
        color: var(--uv-white);
      }

      /* --- eyebrow / kicker label, used above every heading --- */
      .uv-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-mono);
        font-size: 1rem;
        letter-spacing: 2px;
        color: var(--uv-flame);
        margin-bottom: var(--space-sm);
      }

      /* --- headings, one scale reused everywhere --- */
      .uv-heading {
        font-family: var(--font-display);
        letter-spacing: -0.5px;
        line-height: 1.05;
        color: var(--uv-ink);
        margin: 0 0 var(--space-sm);
      }

      .uv-heading--xl {
font-size: clamp(2.4rem, 5.6vw, 3.8rem);      }

      .uv-heading--lg {
        font-size: clamp(2.1rem, 3.6vw, 3.1rem);
      }

      .uv-heading--md {
        font-size: clamp(1.5rem, 2.4vw, 2rem);
      }

      .uv-heading--on-dark {
        color: var(--uv-white);
      }

      .uv-copy {
        font-size: 1rem;
        line-height: 1.75;
        color: var(--uv-steel-500);
 
      }

      .uv-section--dark .uv-copy {
        color: rgba(255, 255, 255, 0.68);
      }

      /* --- buttons: one system, three variants --- */
      .uv-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-mono);
        font-size: 0.82rem;
        letter-spacing: 1px;
        padding: 15px 26px;
        border-radius: var(--radius-sm);
        border: 1.5px solid transparent;
        text-decoration: none;
        white-space: nowrap;
        transition:
          transform 0.2s var(--ease),
          box-shadow 0.2s var(--ease),
          background-color 0.2s var(--ease),
          color 0.2s var(--ease),
          border-color 0.2s var(--ease);
      }

      .uv-btn i {
        font-size: 0.95rem;
        transition: transform 0.2s var(--ease);
      }

      .uv-btn:hover {
        transform: translateY(-2px);
      }

      .uv-btn:hover i {
        transform: translateX(3px);
      }

      .uv-btn--solid {
        background-color: var(--uv-flame);
        border-color: var(--uv-flame);
        color: var(--uv-white);
      }

      .uv-btn--solid:hover {
        background-color: var(--uv-flame-dark);
        border-color: var(--uv-flame-dark);
        color: var(--uv-white);
      }

      .uv-btn--outline {
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        color: var(--uv-white);
      }

      .uv-btn--outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: var(--uv-white);
        color: var(--uv-white);
      }

      .uv-btn--dark {
        background-color: var(--uv-ink);
        border-color: var(--uv-ink);
        color: var(--uv-white);
      }

      .uv-btn--dark:hover {
        background-color: var(--uv-blue-dark);
        border-color: var(--uv-blue-dark);
      }

      /* --- card shell, reused for testimonials / clients / service cards --- */
      .uv-card {
        /* background-color: var(--uv-white); */
        border: 1px solid var(--uv-steel-200);
        border-radius: var(--radius-md);
        transition:
          transform 0.25s var(--ease),
          box-shadow 0.25s var(--ease),
          border-color 0.25s var(--ease);
      }

      .uv-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-soft);
        border-color: transparent;
      }

      /* --- scroll reveal, shared by every animated block --- */
      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.7s var(--ease),
          transform 0.7s var(--ease);
      }

      .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      .reveal--delay-1.is-visible {
        transition-delay: 0.1s;
      }

      .reveal--delay-2.is-visible {
        transition-delay: 0.2s;
      }

      .reveal--delay-3.is-visible {
        transition-delay: 0.3s;
      }

      .reveal--delay-4.is-visible {
        transition-delay: 0.4s;
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        .reveal {
          opacity: 1;
          transform: none;
          transition: none;
        }

        .uv-btn:hover,
        .uv-card:hover {
          transform: none;
        }
      }

      /* =========================================================
         HEADER / NAV
         ========================================================= */
      .site-header {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--uv-white);
        padding: 10px 0;
        box-shadow: 0 10px 34px rgba(16, 26, 32, 0.16);
        z-index: 20;
        transition: box-shadow 0.25s var(--ease);
      }

      .site-header.is-scrolled {
        box-shadow: 0 14px 40px rgba(16, 26, 32, 0.24);
      }

   

      .brand {
        display: flex;
        flex-direction: column;
        line-height: 1;
        text-decoration: none;
      }

      .brand-main {
        font-family: var(--font-display);
        font-size: 1.7rem;
        letter-spacing: -0.5px;
        color: var(--uv-ink);
      }

      .brand-main span {
        color: var(--uv-flame);
      }

      .brand-sub {
        font-family: var(--font-mono);
        font-size: 0.6rem;
        letter-spacing: 2.5px;
        color: var(--uv-steel-500);
        margin-top: 2px;
      }

      .main-nav {
        gap: 2px;
      }

      .main-nav .nav-link {
        font-family: var(--font-mono);
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.6px;
        color: var(--uv-steel-700);
        padding: 10px 16px;
        transition: color 0.2s var(--ease);
      }

      .main-nav .nav-link:hover,
      .main-nav .nav-link:focus,
      .main-nav .nav-link.active {
        color: var(--uv-flame);
      }

      .dropdown-menu {
        border: none;
        border-radius: 10px;
        box-shadow: var(--shadow-lift);
        padding: 10px 0;
        margin-top: 10px;
      }

      .dropdown-item {
        font-family: var(--font-body);
        font-size: 0.88rem;
        color: var(--uv-steel-700);
        padding: 9px 22px;
        transition:
          background-color 0.2s var(--ease),
          color 0.2s var(--ease);
      }

      .dropdown-item:hover,
      .dropdown-item:focus {
        background-color: var(--uv-paper);
        color: var(--uv-flame);
      }

      .navbar-toggler {
        border: none;
        padding: 4px 8px;
      }

      .navbar-toggler:focus {
        box-shadow: none;
      }

      @media (max-width: 991.98px) {
       .site-header {
    position: absolute;
        top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    border-radius: 20px;
}


.hero-carousel, .carousel-inner, .carousel-item {
  height: 80vh !important;
}

.brand img{
  height: 50px;
}

        .navbar-collapse {
          background-color: var(--uv-white);
          padding: 18px 6px 8px;
          border-top: 1px solid var(--uv-steel-200);
          margin-top: 12px;
          border-radius: 0 0 14px 14px;
        }

        .main-nav .nav-link {
          padding: 10px 6px;
        }

        .uv-btn.d-none.d-lg-inline-flex {
          display: none !important;
        }
      }

      /* =========================================================
         HERO CAROUSEL
         ========================================================= */
      .hero-section {
        position: relative;
      }

      .hero-carousel,
      .carousel-inner,
      .carousel-item {
        height: 92vh;
        min-height: 580px;
      }

      .hero-slide {
        height: 100%;
        width: 100%;
        background-size: cover;
        background-position: top;
        position: relative;
        display: flex;
        align-items: center;
        background-repeat: no-repeat;
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          100deg,
          rgba(16, 26, 32, 0.9) 0%,
          rgba(16, 26, 32, 0.66) 40%,
          rgba(16, 26, 32, 0.2) 68%,
          rgba(16, 26, 32, 0.42) 100%
        );
      }

      /* --- subtle Ken Burns zoom on the active hero slide --- */
      .carousel-item.active .hero-slide {
        animation: heroKenBurns 8s var(--ease) forwards;
      }

      @keyframes heroKenBurns {
        from {
          background-size: 115%;
        }
        to {
          background-size: 104%;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .carousel-item.active .hero-slide {
          animation: none;
        }
      }

      .hero-content {
        position: relative;
        z-index: 2;
        color: var(--uv-white);
        padding: 0 24px;
      }

      .hero-title {
        font-family: var(--font-display);
        font-size: clamp(2.4rem, 5.6vw, 3.8rem);
        line-height: 1.04;
        letter-spacing: -1px;
        margin-bottom: 24px;
      }

      .hero-subtext {
        font-size: 1.05rem;
        line-height: 1.7;
        max-width: 560px;
        color: rgba(255, 255, 255, 0.86);
        margin-bottom: 0;
      }

      .hero-cta {
        margin-top: 34px;
      }

      .hero-indicators {
        bottom: 32px;
        margin-bottom: 0;
      }

      .hero-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background-color: rgba(255, 255, 255, 0.45);
        margin: 0 6px;
        opacity: 1;
        transition:
          background-color 0.25s var(--ease),
          transform 0.25s var(--ease);
      }

      .hero-indicators .active {
        background-color: var(--uv-flame);
        transform: scale(1.2);
      }

      .carousel-control-prev,
      .carousel-control-next {
        width: 64px;
        opacity: 0;
        transition: opacity 0.25s var(--ease);
      }

      .hero-carousel:hover .carousel-control-prev,
      .hero-carousel:hover .carousel-control-next {
        opacity: 1;
      }

      .hero-arrow {
        width: 46px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        font-size: 1.1rem;
        color: var(--uv-white);
        backdrop-filter: blur(2px);
        transition:
          background-color 0.2s var(--ease),
          border-color 0.2s var(--ease);
      }

      .carousel-control-prev:hover .hero-arrow,
      .carousel-control-next:hover .hero-arrow {
        background-color: var(--uv-flame);
        border-color: var(--uv-flame);
      }

      @media (max-width: 767.98px) {
        .hero-title {
          font-size: 2.1rem;
        }

        .hero-subtext {
          font-size: 0.95rem;
        }

        .carousel-control-prev,
        .carousel-control-next {
          display: none;
        }
      }

      /* =========================================================
         TRUST / QUOTE CARD (floats over hero)
         ========================================================= */
      .trust-section {
        position: relative;
        z-index: 5;
        overflow: visible;
      }

      .trust-card {
        background-color: var(--uv-ink);
        border-radius: var(--radius-lg);
        padding: 56px 48px;
        margin-top: -140px;
        box-shadow: var(--shadow-lift);
        position: relative;
        z-index: 6;
        overflow: hidden;
      }

      .trust-card-left {
        padding-right: 32px;
      }

      .trust-heading {
        font-family: var(--font-display);
        font-size: 2rem;
        line-height: 1.18;
        color: var(--uv-white);
        margin-bottom: 20px;
      }

      .trust-arrow-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        color: var(--uv-flame);
        font-size: 1.4rem;
        text-decoration: none;
        margin-bottom: 40px;
        transition:
          transform 0.2s var(--ease),
          color 0.2s var(--ease);
      }

      .trust-arrow-btn:hover {
        transform: translateX(6px);
        color: var(--uv-white);
      }

      .trust-offer-label {
        font-family: var(--font-mono);
        font-size: 0.78rem;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 6px;
      }

      .trust-offer-text {
        font-family: var(--font-display);
        font-size: 1.3rem;
        letter-spacing: 0.3px;
        color: var(--uv-flame);
        margin-bottom: 0;
      }

      .trust-input {
        background-color: var(--uv-ink-soft);
        border: 1px solid var(--uv-ink-line);
        color: var(--uv-white);
        border-radius: var(--radius-sm);
        padding: 14px 18px;
        font-size: 0.9rem;
        height: auto;
      }

      .trust-input::placeholder {
        color: rgba(255, 255, 255, 0.42);
      }

      .trust-input:focus {
        background-color: var(--uv-ink-soft);
        border-color: var(--uv-flame);
        color: var(--uv-white);
        outline: none;
        box-shadow: unset;
      }

      select.trust-input {
        color: rgba(255, 255, 255, 0.6);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%238C9296' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 18px center;
        background-size: auto;
        appearance: none;
      }

      .trust-submit {
        margin-top: 4px;
      }

      @media (max-width: 991.98px) {
        .trust-card {
          margin-top: -70px;
          padding: 40px 28px;
        }

        .trust-card-left {
          padding-right: 0;
          margin-bottom: 36px;
        }
      }

      @media (max-width: 575.98px) {
        .trust-card {
          border-radius: 16px;
          padding: 32px 20px;
        }

        .trust-heading {
          font-size: 1.6rem;
        }
      }

      /* =========================================================
         ABOUT
         ========================================================= */
      .about-section {
        padding: var(--space-2xl) 0 var(--space-xl);
      }

      .about-inset-image {
        border-radius: var(--radius-md);
        overflow: hidden;
        margin: 28px 0 0;
      }

      .about-inset-image img {
        width: 100%;
        height: 290px;
        object-fit: cover;
        object-position: top;
        display: block;
      }

      .about-main-image {
        width: 100%;
        height: 580px;
        object-fit: cover;
        object-position: center;
        border-radius: var(--radius-lg);
        display: block;
      }

      .about-fact-row {
     display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--uv-steel-200);
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
      }

      .about-fact-num {
        font-family: var(--font-display);
        font-size: 1.9rem;
        color: var(--uv-ink);
        line-height: 1;
      }

      .about-fact-label {
        font-family: var(--font-mono);
        font-size: 0.72rem;
        letter-spacing: 1px;
        color: var(--uv-steel-500);
        margin-top: 6px;
      }

      @media (max-width: 991.98px) {
        .about-section {
          padding: 90px 0 60px;
        }

        .about-main-image {
          min-height: 320px;
        }
      }

      /* =========================================================
         PROCESS (dark) + SERVICES (light)
         ========================================================= */
      .process-card {
        background-color: var(--uv-ink-soft);
        border: 1px solid var(--uv-ink-line);
        border-radius: var(--radius-md);
        padding: 34px 30px;
        height: 100%;
        transition:
          transform 0.25s var(--ease),
          border-color 0.25s var(--ease);
      }

      .process-card:hover {
        transform: translateY(-4px);
        border-color: var(--uv-flame);
      }

      .process-icon {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--uv-white);
        color: var(--uv-flame);
        font-size: 1.5rem;
        margin-bottom: 22px;
      }

      .process-title {
        font-family: var(--font-display);
        font-size: 1.3rem;
        color: var(--uv-white);
        margin-bottom: 12px;
      }

      .process-copy {
        font-size: 0.94rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.62);
        margin-bottom: 0;
      }

      .service-card {
        padding: 32px 28px;
        height: 100%;
      }

      .service-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--uv-flame);
        color: var(--uv-white);
        font-size: 1.5rem;
        margin-bottom: 24px;
      }

      .service-title {
        font-family: var(--font-display);
        font-size: 1.2rem;
        color: var(--uv-ink);
        margin-bottom: 12px;
      }

      .service-copy {
        font-size: 0.92rem;
        line-height: 1.65;
        color: var(--uv-steel-500);
        margin-bottom: 20px;
      }

      .service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-mono);
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        color: var(--uv-ink);
        text-decoration: none;
        transition:
          color 0.2s var(--ease),
          gap 0.2s var(--ease);
      }

      .service-link:hover {
        color: var(--uv-flame);
        gap: 12px;
      }

      /* =========================================================
         CTA + QUALITATIVE BADGES
         ========================================================= */
      .cta-card {
        border-radius: var(--radius-lg);
        padding: 56px 48px;
      }

      .cta-badges {
        display: flex;
        flex-direction: column;
        gap: 18px;
        max-width: 480px;
      }

      .cta-badge {
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }

      .cta-badge i {
        color: var(--uv-flame);
        font-size: 1.1rem;
        margin-top: 3px;
      }

      .cta-badge-title {
        font-family: var(--font-display);
        font-size: 1.05rem;
        color: var(--uv-white);
        margin-bottom: 2px;
      }

      .cta-badge-copy {
        font-size: 0.86rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 0;
      }

      .cta-image-wrap {
        border-radius: var(--radius-md);
        overflow: hidden;
        height: 100%;
      }

      .cta-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      @media (max-width: 991.98px) {
        .cta-card {
          padding: 40px 28px;
        }

        .cta-image-wrap {
          max-width: 360px;
          margin: 0 auto;
        }
      }

      @media (max-width: 575.98px) {
        .cta-card {
          border-radius: 16px;
          padding: 32px 20px;
        }
      }

      /* =========================================================
         CLIENTS STRIP (Swiper marquee)
         ========================================================= */
      .clients-heading {
        text-align: center;
        font-size: 1rem;
        color: var(--uv-steel-500);
        margin-bottom: 40px;
      }

      .clients-heading strong {
        color: var(--uv-ink);
      }

      .client-logo-card {
        height: 170px;
        border: 1px solid var(--uv-steel-200);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
          border-color 0.2s var(--ease),
          box-shadow 0.2s var(--ease);
      }

      .client-logo-card:hover {
        border-color: var(--uv-flame);
        box-shadow: var(--shadow-soft);
      }

      .client-logo-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .clients-swiper {
        padding: 10px 4px 40px;
      }

      .clients-swiper .swiper-slide {
        width: 220px;
        height: auto;
      }

      @media (max-width: 575.98px) {
        .clients-swiper .swiper-slide {
          width: 170px;
        }
      }

      /* =========================================================
         TESTIMONIALS
         ========================================================= */
      .testimonial-card {
        padding: 32px 28px;
        height: 100%;
      }

      .testimonial-stars {
        color: var(--uv-flame);
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
      }

      .testimonial-quote {
        font-size: 0.96rem;
        line-height: 1.72;
        color: var(--uv-steel-700);
        margin-bottom: 24px;
        min-height: 96px;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--uv-flame);
        color: var(--uv-white);
        font-family: var(--font-display);
        font-size: 1rem;
      }

      .testimonial-name {
        font-size: 0.9rem;
        color: var(--uv-ink);
        margin-bottom: 0;
      }

      .testimonial-role {
        font-family: var(--font-mono);
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        color: var(--uv-steel-500);
        margin-bottom: 0;
      }

      @media (max-width: 767.98px) {
        .testimonial-quote {
          min-height: 0;
        }
      }

      /* =========================================================
         FAQ
         ========================================================= */
      .faq-accordion .faq-item {
        background: transparent;
        border: none;
        margin-bottom: 14px;
      }

      .faq-button {
        background-color: var(--uv-white);
        border-radius: var(--radius-sm) !important;
        font-size: 0.98rem;
        color: var(--uv-ink);
        padding: 20px 24px;
        box-shadow: none;
      }

      .faq-button:not(.collapsed) {
        background-color: var(--uv-white);
        color: var(--uv-flame);
        box-shadow: var(--shadow-soft);
      }

      .faq-button::after {
        content: "\F4FE";
        font-family: "bootstrap-icons", sans-serif;
        background-image: none !important;
        font-size: 1.3rem;
        color: var(--uv-ink);
        transition:
          transform 0.25s var(--ease),
          color 0.25s var(--ease);
      }

      .faq-button:not(.collapsed)::after {
        content: "-";
        color: var(--uv-flame);
        transform: rotate(180deg);
      }

      .faq-button:focus {
        box-shadow: none;
      }

      .faq-body {
        padding: 4px 24px 22px;
        font-size: 0.92rem;
        line-height: 1.7;
        color: var(--uv-steel-500);
      }

      /* =========================================================
         INSIGHT / SERVICE-TILE CARD
         ========================================================= */
      .insight-card {
        position: relative;
        display: block;
        height: 420px;
        border-radius: var(--radius-md);
        overflow: hidden;
        text-decoration: none;
        isolation: isolate;
        box-shadow: 0 14px 34px rgba(16, 26, 32, 0.14);
        transition:
          transform 0.3s var(--ease),
          box-shadow 0.3s var(--ease);
      }

      .insight-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lift);
      }

      .insight-card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s var(--ease);
      }

      .insight-card:hover .insight-card-img {
        transform: scale(1.06);
      }

      .insight-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(16, 26, 32, 0.15) 0%,
          rgba(16, 26, 32, 0.55) 55%,
          rgba(16, 26, 32, 0.92) 100%
        );
        z-index: 1;
      }

      .insight-card-body {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 28px 26px 26px;
      }

      .insight-card-title {
        font-family: var(--font-display);
        font-size: 1.25rem;
        line-height: 1.28;
        color: var(--uv-white);
        margin: 0 0 10px;
      }

      .insight-card-copy {
        font-size: 0.86rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.78);
        margin: 0 0 18px;
      }

      .insight-card-btn {
        display: inline-flex;
        align-items: center;
        font-family: var(--font-mono);
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        color: var(--uv-ink);
        background-color: var(--uv-white);
        padding: 10px 20px;
        border-radius: var(--radius-sm);
        transition:
          background-color 0.2s var(--ease),
          color 0.2s var(--ease);
      }

      .insight-card:hover .insight-card-btn {
        background-color: var(--uv-flame);
        color: var(--uv-white);
      }

      @media (max-width: 767.98px) {
        .insight-card {
          height: 360px;
        }
      }

      /* =========================================================
         VIDEO HERO STRIP (mid-page)
         Reuses the base font, spacing and easing tokens; only the
         gradient overlay and poster image are unique to this block.
         ========================================================= */
      .hero-strategy {
        position: relative;
        width: 100%;
        min-height: 90vh;
        display: flex;
        align-items: flex-end;
        background-image: var(--uv-hero-poster); /* shows instantly, video fades in over it */
        background-size: cover;
        background-position: center;
        font-family: var(--font-body);
        overflow: hidden;
      }

      /* background video layer: fills the section exactly like the poster does */
      .hero-strategy__video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
      }

      .hero-strategy::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          var(--uv-hero-overlay-top) 0%,
          var(--uv-hero-overlay-bottom) 100%
        );
        z-index: 1;
      }

      .hero-strategy__content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
        padding: 0 var(--space-lg) 100px;
        text-align: center;
        color: var(--uv-white);
      }

      .hero-strategy__mark {
        display: inline-block;
        width: 14px;
        height: 34px;
        background-color: var(--uv-flame);
        transform: skewX(-14deg);
        margin-bottom: var(--space-sm);
      }

      .hero-strategy__title {
        font-family: var(--font-display);
        line-height: 1.2;
        font-size: clamp(1.9rem, 4vw, 2.7rem);
        letter-spacing: -0.5px;
        margin: 0;
      }

      .hero-strategy__title span {
        color: var(--uv-flame);
      }

      /* bottom bar: reuses the flame accent as its background */
      .hero-strategy__bar {
        position: relative;
        z-index: 2;
        width: 100%;
        background-color: var(--uv-flame);
        padding: var(--space-md) var(--space-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-md);
        flex-wrap: wrap;
      }

      .hero-strategy__bar-text {
        font-family: var(--font-body);
        font-size: 1.05rem;
        color: var(--uv-hero-ink);
        margin: 0;
      }

      /* pill button reuses ink + white tokens, no new colors introduced */
      .hero-strategy__btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-body);
        font-size: 0.92rem;
        color: var(--uv-white);
        background-color: var(--uv-hero-ink);
        border: none;
        border-radius: var(--radius-pill);
        padding: 12px 26px;
        text-decoration: none;
        white-space: nowrap;
        transition:
          transform 0.2s var(--ease),
          opacity 0.2s var(--ease);
      }

      .hero-strategy__btn:hover {
        transform: translateY(-2px);
        opacity: 0.9;
      }

      @media (max-width: 767.98px) {
        .hero-strategy {
          min-height: 560px;
        }

        .hero-strategy__content {
          padding: 0 var(--space-sm) 70px;
        }

        .hero-strategy__bar {
          padding: var(--space-sm);
          text-align: center;
        }

        .hero-slide {
          background-size: cover !important;
              background-position: -350px;
        }
      }

      /* =========================================================
         FOOTER
         ========================================================= */
      .site-footer {
        background-color: var(--uv-ink);
        color: rgba(255, 255, 255, 0.7);
        padding: 90px 0 30px;
        position: relative;
      }

      footer .fixed-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0.05;
}

footer .fixed-shape img {
    width: 100%;
    position: absolute;
    bottom: 0;
}

      .site-footer img {
        width: 100px;
        height: 130px;
      }

      .footer-brand .brand-main {
        color: var(--uv-white);
      }

      .footer-brand .brand-sub {
        color: rgba(255, 255, 255, 0.45);
      }

      .footer-col-label {
        font-family: var(--font-mono);
        font-size: 0.72rem;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 18px;
      }

      .footer-address {
        font-size: 0.92rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 18px;
      }

      .footer-phone,
      .footer-email {
        font-size: 0.92rem;
        color: var(--uv-white);
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .footer-phone i,
      .footer-email i {
        color: var(--uv-flame);
        font-size: 0.85rem;
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        font-size: 0.92rem;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        transition: color 0.2s var(--ease);
      }

      .footer-links a:hover {
        color: var(--uv-flame);
      }

      .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 70px;
        padding-top: 24px;
        border-top: 1px solid var(--uv-ink-line);
      }

      .footer-copy {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 0;
      }

      .footer-socials {
        display: flex;
        gap: 14px;
      }

      .footer-socials a {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--uv-ink-soft);
        color: var(--uv-white);
        transition:
          background-color 0.2s var(--ease),
          color 0.2s var(--ease);
      }

      .footer-socials a:hover {
        background-color: var(--uv-flame);
        color: var(--uv-white);
      }

      @media (max-width: 767.98px) {
        .site-footer {
          padding: 60px 0 24px;
        }

        .footer-bottom {
          justify-content: center;
          text-align: center;
          margin-top: 50px;
        }
      }

      /* about us */

       .page-header {
            position: relative;
            min-height: 550px;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: bottom;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            padding: var(--space-lg) 24px;
        }

        .page-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-mono);
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: var(--space-sm);
        }

        .page-breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s var(--ease);
        }

        .page-breadcrumb a:hover {
            color: var(--uv-flame);
        }

        .page-breadcrumb .active {
            color: var(--uv-flame);
        }

        .page-header-title span {
            color: var(--uv-flame);
        }

        @media (max-width: 767.98px) {
          .page-header-content {
                padding: 60px 16px 0;
            }
        }

        
  .history-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    display: block;
  }

  .history-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .history-item {
    display: grid;
    grid-template-columns: 72px 40px 1fr;
    align-items: start;
    gap: var(--space-sm);
    position: relative;
  }

  .history-year {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--uv-steel-700);
    border: 1px solid var(--uv-steel-200);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    text-align: center;
    height: fit-content;
  }

  .history-node {
    position: relative;
    width: 40px;
    display: flex;
    justify-content: center;
  }

  .history-node::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: -48px;
    left: 50%;
    width: 1px;
    background-color: var(--uv-steel-200);
    transform: translateX(-50%);
    z-index: 0;
  }

  .history-item:last-child .history-node::before {
    display: none;
  }

  .history-node i {
    position: relative;
    z-index: 1;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--uv-white);
    border: 1px solid var(--uv-steel-200);
    color: var(--uv-steel-500);
    font-size: 0.7rem;
  }

  .history-card {
    padding: 28px 30px;
  }

  .history-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--uv-ink);
    margin-bottom: 10px;
  }

  @media (max-width: 767.98px) {
    .history-item {
      grid-template-columns: 60px 30px 1fr;
    }

    .history-image {
      height: 340px;
    }
  }

    .mv-card,
  .goals-card {
    position: relative;
    padding: 36px 32px;
    height: 100%;
    overflow: hidden;
  }

  .mv-card-num {
    position: absolute;
    top: 20px;
    right: 26px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--uv-paper);
    line-height: 1;
    z-index: 0;
  }

  .mv-card .service-icon,
  .mv-card .service-title,
  .mv-card .service-copy,
  .goals-card .service-icon,
  .goals-card .service-title,
  .goals-card .service-copy {
    position: relative;
    z-index: 1;
  }

  .goals-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .goals-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .goals-list-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--uv-paper);
    color: var(--uv-flame-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
  }

  .goals-list span:last-child {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--uv-steel-500);
  }

  @media (max-width: 767.98px) {
    .mv-card,
    .goals-card {
      padding: 28px 24px;
    }
  }