/* home page css  start*/

:root {
    --st-red: #c0272d;
    --st-red-dark: #9e1f24;
    --st-gray: #3d3d3d;
    --st-light: #f6f6f6;
    --default-font:
        "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial,
        sans-serif;
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

body {
    font-family: var(--default-font);
    color: #222;
    padding-top: 0 !important;
}

/* Nunito for all headings */
h1,
h2,
h3,
h4,
h5,
h6,
.section-eyebrow,
.section-title,
.hero-h1,
.why-kpi-num,
.why-feat-card-title,
.stats-num,
.stats-lbl,
.hdr-link,
.hdr-btn-quote,
.hdr-btn-brochure,
.hdr-top-link,
.hdr-top-cert {
    font-family: var(--heading-font);
}

/* Poppins for nav, buttons, labels */
.nav-link,
.dropdown-item,
.btn,
.btn-sam,
.btn-quote,
.btn-brochure,
.prd2-cta,
.hero-eyebrow-txt {
    font-family: var(--nav-font);
}

/* ══════════════════════════════════════════
   Hero — 80% Image Left + 20% Video Right
   On scroll: panels split to reveal full video
══════════════════════════════════════════ */
.hero-scroll-stage {
    height: 280vh;   /* scroll room for the animation */
    position: relative;
}

.hero-sticky-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* ── Background video (always behind panels) ── */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Dark overlay on video (visible after panels open) */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.70) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.15) 70%,
        rgba(0,0,0,0.00) 100%
    );
}

/* ── Image panels ── */
.hero-panel {
    position: absolute;
    top: 0;
    height: 100%;
    background-image: var(--img);
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 1.3s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
    z-index: 4;
}

/* LEFT panel: 80% wide, image anchored left */
.hero-panel-left {
    left: 0;
    width: 80%;
    background-position: left center;
    display: flex;
    align-items: center;   /* vertically center the text */
}

/* RIGHT panel: 20% wide, image anchored right */
.hero-panel-right {
    right: 0;
    width: 20%;
    background-position: right center;
}

/* OPEN — left panel slides fully left, right panel slides fully right */
.hero-sticky-wrap.hero-open .hero-panel-left  { transform: translateX(-100%); }
.hero-sticky-wrap.hero-open .hero-panel-right { transform: translateX(100%); }

/* ── Dark gradient overlay on left panel for text readability ── */
.hero-panel-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.50) 45%,
        rgba(0,0,0,0.10) 80%,
        transparent 100%
    );
    pointer-events: none;
}

/* ── Text content inside left panel ── */
.hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    pointer-events: auto;
}

/* Badge */
.hero-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}
.hero-eyebrow-badge i { color: var(--st-red); font-size: 0.9rem; }

/* Title */
.hero-main-title {
    font-family: var(--heading-font, "Nunito", sans-serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-main-title span { color: var(--st-red); }

/* Sub text */
.hero-main-sub {
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    color: rgba(255,255,255,0.88);
    line-height: 1.85;
    max-width: 520px;
    margin: 0 0 36px 0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* CTA row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--st-red);
    color: #fff;
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(192,39,45,0.45);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-btn-primary:hover {
    background: #a01f24;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(192,39,45,0.55);
    color: #fff;
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.55);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.hero-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

/* Hide pointer events on content after panels open */
.hero-sticky-wrap.hero-open .hero-content-wrap { pointer-events: none; }

/* ── Scroll hint ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.6);
    animation: scrollBounce 2s ease-in-out infinite;
    transition: opacity .4s;
}
.hero-sticky-wrap.hero-open .hero-scroll-hint { opacity: 0; pointer-events: none; }
.hero-scroll-hint i { font-size: 1.3rem; }

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.5; }
    50%       { transform: translateX(-50%) translateY(8px); opacity: 1;   }
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .hero-content-wrap { padding: 0 40px 0 60px; }
}

@media (max-width: 991px) {
    .hero-panel-left  { width: 85%; }
    .hero-panel-right { width: 15%; }
    .hero-content-wrap { padding: 0 28px 0 40px; }
}

@media (max-width: 767px) {
    .hero-scroll-stage { height: 250vh; }
    /* On mobile: top/bottom split instead of left/right */
    .hero-panel-left  { width: 100%; height: 75%; top: 0; background-position: top center; }
    .hero-panel-right { width: 100%; height: 25%; bottom: 0; top: auto; right: 0; background-position: bottom center; }
    .hero-sticky-wrap.hero-open .hero-panel-left  { transform: translateY(-100%); }
    .hero-sticky-wrap.hero-open .hero-panel-right { transform: translateY(100%); }
    .hero-content-wrap { padding: 0 24px; }
    .hero-main-sub { max-width: 100%; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; }
    .hero-video-overlay { background: rgba(0,0,0,0.55); }
}

/* ── Old .hero-img-section (no longer used, kept for safety) ── */
.hero-img-section { display: none; }


}

@media (max-width: 991px) {
    .hero-content-wrap {
        width: 70%;
        padding: 0 28px 0 36px;
    }
}

@media (max-width: 767px) {
    .hero-scroll-stage { height: 250vh; }
    .hero-half { width: 100%; height: 50%; }
    .hero-half-left  { top: 0; left: 0; background-position: top center; }
    .hero-half-right { bottom: 0; right: 0; top: auto; background-position: bottom center; }
    .hero-sticky-wrap.hero-open .hero-half-left  { transform: translateY(-100%); }
    .hero-sticky-wrap.hero-open .hero-half-right { transform: translateY( 100%); }
    .hero-content-wrap {
        width: 100%;
        padding: 0 20px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 60%, transparent 100%);
        justify-content: flex-start;
        padding-top: 80px;
    }
    .hero-video-overlay { background: rgba(0,0,0,.55); }
}

/* Scroll hint — visible before open */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
    transition: opacity .4s;
}

.hero-sticky-wrap.hero-open .hero-scroll-hint {
    opacity: 0;
    pointer-events: none;
}

.hero-scroll-hint i { font-size: 1.3rem; }

@media (max-width: 991px) {
    .hero-content-wrap {
        width: 65%;
        padding: 0 28px 0 36px;
    }
}

@media (max-width: 767px) {
    .hero-scroll-stage { height: 250vh; }
    .hero-content-wrap {
        width: 100%;
        padding: 0 20px;
        text-align: left;
    }
    .hero-main-sub { max-width: 100%; }
    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-video-overlay { background: rgba(0,0,0,.55); }
}

/* ── Hero — Scroll Split Reveal ── */
#hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

#hero.reveal {
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    animation: heroZoom 18s ease-out forwards;
}

.hero-slide.active {
    opacity: 1;
}

/* ── 4-Panel Curtain Reveal ── */
.curtain {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

/* Shared shimmer pseudo-element on each curtain */
.curtain::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    animation: curtainShimmer 3s ease-in-out infinite;
}

@keyframes curtainShimmer {
    0% {
        background-position: 200% 200%;
    }
    100% {
        background-position: -200% -200%;
    }
}

/* Red accent line on each curtain edge (facing center) */
.curtain-top {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #111 85%, #1a0000 100%);
    transform: translateY(0) scaleY(1);
    transform-origin: top center;
    transition:
        transform 1.1s cubic-bezier(0.76, 0, 0.24, 1),
        opacity 0.9s ease 0.2s;
}
.curtain-top::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        var(--st-red, #c0272d),
        transparent
    );
    opacity: 0.8;
}

.curtain-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #111 85%, #1a0000 100%);
    transform: translateY(0) scaleY(1);
    transform-origin: bottom center;
    transition:
        transform 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.08s,
        opacity 0.9s ease 0.28s;
}
.curtain-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        var(--st-red, #c0272d),
        transparent
    );
    opacity: 0.8;
}

.curtain-left {
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #111 85%, #1a0000 100%);
    transform: translateX(0) scaleX(1);
    transform-origin: left center;
    transition:
        transform 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.16s,
        opacity 0.9s ease 0.36s;
}
.curtain-left::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--st-red, #c0272d),
        transparent
    );
    opacity: 0.8;
}

.curtain-right {
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, #111 85%, #1a0000 100%);
    transform: translateX(0) scaleX(1);
    transform-origin: right center;
    transition:
        transform 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.24s,
        opacity 0.9s ease 0.44s;
}
.curtain-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--st-red, #c0272d),
        transparent
    );
    opacity: 0.8;
}

/* ── Open state: curtains fly away ── */
#hero.reveal .curtain-top {
    transform: translateY(-102%) scaleY(1);
    opacity: 0;
}
#hero.reveal .curtain-bottom {
    transform: translateY(102%) scaleY(1);
    opacity: 0;
}
#hero.reveal .curtain-left {
    transform: translateX(-102%) scaleX(1);
    opacity: 0;
}
#hero.reveal .curtain-right {
    transform: translateX(102%) scaleX(1);
    opacity: 0;
}

/* ── Play button ── */
.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(192, 39, 45, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        opacity 0.6s ease;
    padding: 0;
    box-sizing: border-box;
    font-size: inherit;
    color: inherit;
}

/* Outer pulsing ring */
.hero-play-btn::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px solid rgba(192, 39, 45, 0.45);
    animation: playRingPulse 2.2s ease-out infinite;
}

/* Second outer ring */
.hero-play-btn::after {
    content: "";
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    border: 1px solid rgba(192, 39, 45, 0.2);
    animation: playRingPulse 2.2s ease-out infinite 0.55s;
}

@keyframes playRingPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.18);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

.hero-play-btn:hover {
    background: rgba(192, 39, 45, 0.38);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translate(-50%, -50%) scale(1.08);
}

.hero-play-btn:focus {
    outline: none;
}

.hero-play-btn i {
    font-size: 2.8rem;
    color: #fff;
    margin-left: 7px;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

#hero.reveal .hero-play-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hero-video-controls {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 8px 16px 8px 10px;
}

.hero-video-progress {
    width: 220px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.hero-video-progress-bar {
    height: 100%;
    background: var(--st-red);
    border-radius: 2px;
    width: 0%;
    pointer-events: none;
}

.hero-video-progress-dot {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--st-red);
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
}

.hero-video-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.32);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
    cursor: pointer;
}

.hero-video-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.hero-video-btn-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.hero-video-btn i {
    font-size: 1.1rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    transition: opacity 1s ease 0.3s;
}

#hero.reveal .hero-overlay {
    opacity: 0.55;
}

/* Video subtle zoom-in on reveal */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.06);
    transition: transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#hero.reveal .hero-video {
    transform: scale(1);
}

/* ── Hero content box ── */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 64px 48px 56px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 32px 80px rgba(0, 0, 0, 0.18),
        0 2px 0 rgba(192, 39, 45, 0.6) inset;
}

/* Staggered content reveal after curtains open */
.hero-content .animate {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

#hero.reveal .hero-content .animate:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}
#hero.reveal .hero-content .animate:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.72s;
}
#hero.reveal .hero-content .animate:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.88s;
}
#hero.reveal .hero-content .animate:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.02s;
}
#hero.reveal .hero-content .animate:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.14s;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding: 48px 28px 44px;
        margin: 0 1.5rem;
    }
}

/* ── Eyebrow with lines ── */
.hero-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-line {
    flex: 0 0 36px;
    height: 2px;
    background: linear-gradient(
        to right,
        var(--st-red, #c0272d),
        rgba(192, 39, 45, 0.3)
    );
    border-radius: 1px;
}

.hero-eyebrow-txt {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #bbb;
    transition: color 0.8s ease-in-out;
}

#hero.reveal .hero-eyebrow-txt {
    color: rgba(255, 255, 255, 0.7);
}

/* ── H1 ── */
.hero-h1 {
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: #1a1a1a;
    margin-bottom: 24px;
    transition: color 0.8s ease-in-out;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

#hero.reveal .hero-h1 {
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-h1-red {
    color: var(--st-red, #c0272d);
    transition: color 0.8s ease-in-out;
}

#hero.reveal .hero-h1-red {
    color: var(--st-red, #c0272d);
}

/* ── Sub-headline ── */
.hero-sub {
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    color: #aaa;
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 600px;
    transition: color 0.8s ease-in-out;
}

#hero.reveal .hero-sub {
    color: rgba(255, 255, 255, 0.68);
}

/* ── Cert tags ── */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.hero-tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 7px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
}

#hero.reveal .hero-tag {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
}

.hero-tag:hover {
    background: rgba(192, 39, 45, 0.22);
    border-color: rgba(192, 39, 45, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

#hero:not(.reveal) .hero-tag:hover {
    background: rgba(192, 39, 45, 0.15);
    border-color: rgba(192, 39, 45, 0.35);
    color: #fff;
}

.hero-tag .bi {
    color: var(--st-red, #c0272d);
}

/* CTA buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
    border-radius: 999px;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.hero-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ── Scroll indicator ── */
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-scroll-line {
    display: block;
    width: 2px;
    height: 44px;
    background: linear-gradient(to bottom, var(--st-red, #c0272d), transparent);
    border-radius: 1px;
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-txt {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.8s ease-in-out;
}

#hero.reveal .hero-scroll-txt {
    color: rgba(255, 255, 255, 0.4);
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 1;
        transform: scaleY(1) translateY(0);
    }
    50% {
        opacity: 0.35;
        transform: scaleY(0.55) translateY(4px);
    }
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition:
        background 0.3s,
        transform 0.3s,
        width 0.3s;
    display: inline-block;
    margin: 0 4px;
}

.slider-dots .dot.active {
    background: var(--st-red);
    transform: scale(1.2);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .hero-content {
        padding-top: 90px;
        padding-bottom: 70px;
    }

    .hero-h1 {
        font-size: 1.55rem;
    }

    .hero-play-btn {
        width: 84px;
        height: 84px;
    }

    .hero-play-btn i {
        font-size: 2.2rem;
    }

    .slider-arrow {
        display: none;
    }

    .hero-sub br {
        display: none;
    }

    .hero-video-controls {
        bottom: 20px;
    }

    .hero-video-progress {
        width: 140px;
    }
}

/* ── Stats dark section ── */
.stats-dark-section {
    background: linear-gradient(135deg, #071425 0%, #0d2a5e 100%);
    padding: 0;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-item-left {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-item-top {
    border-top: none;
}

.stats-item-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border: 2px solid rgba(192, 39, 45, 0.5);
    border-radius: 12px;
    background: rgba(192, 39, 45, 0.1);
    color: var(--st-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.stats-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stats-lbl {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .stats-dark-section .col-lg-4 {
        padding: 40px 24px 20px !important;
    }

    .stats-item {
        padding: 28px 20px;
        gap: 14px;
    }

    .stats-num {
        font-size: 1.9rem;
    }
}

@media (max-width: 575px) {
    .stats-item {
        padding: 22px 14px;
        gap: 10px;
    }

    .stats-item-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .stats-num {
        font-size: 1.5rem;
    }
}

/* ── Section common ── */
.section-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--st-red);
    font-weight: 600;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* ── Global section header (badge + title + divider) ── */
.sec-header {
    text-align: center;
    margin-bottom: 48px;
}

.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 39, 45, 0.08);
    border: 1.5px solid rgba(192, 39, 45, 0.2);
    color: var(--st-red, #c0272d);
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.sec-badge i {
    font-size: 0.82rem;
}

.sec-title {
    font-family: var(--heading-font, "Nunito", sans-serif);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 0;
}

.sec-title span {
    color: var(--st-red, #c0272d);
}

.sec-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px auto 16px;
    color: var(--st-red, #c0272d);
    font-size: 0.55rem;
}

.sec-divider span {
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--st-red, #c0272d));
    border-radius: 1px;
}

.sec-divider span:last-child {
    background: linear-gradient(to left, transparent, var(--st-red, #c0272d));
}

.sec-sub {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

/* ── About cards ── */
.about-card {
    background: #fff;
    border-radius: 12px;
    border-left: 3px solid var(--st-red);
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.about-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

/* ── Products section ── */
.products-section {
    padding: 80px 0;
    background: #f4f6f9;
}

.products-section .section-eyebrow {
    color: var(--st-red);
}

.products-section .section-title {
    color: #1a1a1a;
}

/* Slider structure */
.prod-slider-wrap {
    position: relative;
    padding: 0 56px 50px;
}

.prod-slider-viewport {
    overflow: hidden;
}

.prod-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.prod-slide-wrap {
    flex: 0 0 calc((100% - 48px) / 3);
    box-sizing: border-box;
}

/* Arrows */
.prod-slider-arrow {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}

.prod-slider-arrow:hover {
    background: var(--st-red);
    color: #fff;
    border-color: var(--st-red);
}

.prod-slider-prev {
    left: 0;
}

.prod-slider-next {
    right: 0;
}

/* Dots */
.prod-slider-dots {
    text-align: center;
    margin-top: 28px;
}

.prod-slider-dots .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 4px;
    cursor: pointer;
    transition:
        background 0.25s,
        width 0.25s;
}

.prod-slider-dots .dot.active {
    background: var(--st-red);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .prod-slide-wrap {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 575px) {
    .prod-slider-wrap {
        padding: 0 48px 40px;
    }

    .prod-slide-wrap {
        flex: 0 0 100%;
    }
}

/* Product card — full clickable */
.pcard {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 28px 26px;
    height: 100%;
    text-decoration: none;
    border: 1px solid #e8eaed;
    border-top: 4px solid var(--st-red);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
    cursor: pointer;
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(192, 39, 45, 0.13);
    border-color: var(--st-red);
}

.pcard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pcard-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(192, 39, 45, 0.1);
    line-height: 1;
    letter-spacing: -0.04em;
}

.pcard-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(192, 39, 45, 0.08);
    color: var(--st-red);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.pcard:hover .pcard-icon {
    background: var(--st-red);
    color: #fff;
}

.pcard-title {
    font-size: 0.97rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.35;
}

.pcard-desc {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 14px;
}

.pcard-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.pcard-list li {
    font-size: 0.78rem;
    color: #555;
    padding: 5px 0 5px 14px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.pcard-list li:last-child {
    border-bottom: none;
}

.pcard-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--st-red);
}

.pcard-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4f6f9;
    color: var(--st-red);
    font-size: 1rem;
    margin-top: auto;
    align-self: flex-start;
    transition:
        background 0.25s,
        transform 0.25s;
}

.pcard:hover .pcard-arrow {
    background: var(--st-red);
    color: #fff;
    transform: translateX(4px);
}

/* Legacy product-card kept for other pages */
.product-card {
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid var(--st-red);
    padding: 22px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.product-card h5 {
    font-size: 1rem;
    font-weight: 700;
}

.product-card-li {
    font-size: 0.87rem;
    color: #666;
    padding-left: 14px;
    position: relative;
    margin-bottom: 4px;
}

.product-card-li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--st-red);
}

/* ── Process section ── */
.process-dark {
    background: linear-gradient(180deg, #071425, #040b14);
}

.process-col {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
}

.process-head {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 14px;
}

.process-head.red {
    background: rgba(192, 39, 45, 0.22);
    border-color: rgba(192, 39, 45, 0.35);
}

.process-node {
    position: relative;
    margin: 10px auto;
    width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #101010;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 0.83rem;
    text-align: center;
}

.process-node::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 2px;
    height: 10px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.22);
}

.process-col .process-node:last-child::after {
    display: none;
}

.process-node.dispatch {
    background: rgba(192, 39, 45, 0.9);
    color: #fff;
    border-color: transparent;
}

.process-node.dispatch::after {
    display: none;
}

/* ── Quality cards ── */
.quality-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.quality-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.cert-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
}

/* ── Industry cards ── */
.industry-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    border-bottom: 3px solid transparent;
    transition:
        border-color 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
}

.industry-card:hover {
    border-color: var(--st-red);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* ── Contact ── */
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    border-left: 3px solid transparent;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
    cursor: default;
}

.contact-card:hover {
    transform: translateY(-6px) translateX(3px);
    box-shadow: 0 20px 48px rgba(192, 39, 45, 0.14);
    border-left-color: var(--st-red);
    background: #fff8f8;
}

.contact-card:hover h5 {
    color: var(--st-red);
    transition: color 0.25s ease;
}

.contact-card:hover .bi-geo-alt-fill {
    transform: scale(1.25);
    transition: transform 0.25s ease;
}

.form-control:focus {
    border-color: var(--st-red);
    box-shadow: 0 0 0 3px rgba(192, 39, 45, 0.12);
}

.btn-sam {
    background: var(--st-red);
    color: #fff;
    border-radius: 999px;
    padding: 10px 28px;
    font-weight: 600;
}

.btn-sam:hover {
    background: var(--st-red-dark);
    color: #fff;
}

/* ── Footer ── */
.site-footer {
    position: relative;
    overflow: hidden;
    background: #0b1f3a;
}

/* Subtle diagonal grid overlay */
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.025) 25%,
            transparent 25%
        ),
        linear-gradient(
            225deg,
            rgba(255, 255, 255, 0.025) 25%,
            transparent 25%
        ),
        linear-gradient(
            315deg,
            rgba(255, 255, 255, 0.025) 25%,
            transparent 25%
        ),
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.025) 25%,
            transparent 25%
        );
    background-size: 120px 120px;
    pointer-events: none;
    z-index: 0;
}

/* Soft radial glow from top-right */
.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 800px 500px at 80% 0%,
            rgba(59, 130, 246, 0.08) 0%,
            transparent 70%
        );
    pointer-events: none;
    z-index: 0;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

.footer-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--st-red);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 16px;
    border-radius: 6px;
    transition:
        background 0.18s,
        transform 0.18s;
}

.footer-brochure-btn:hover {
    background: var(--st-red-dark);
    color: #fff;
    transform: translateY(-2px);
}

.footer-brochure-btn .bi {
    font-size: 1rem;
}

/* ── Footer layout ── */
.footer-main-row {
    gap: 0;
}

.footer-brand-col {
    padding: 48px 32px 40px 0;
}

.footer-col {
    padding: 48px 28px 40px;
}

/* ── Circle dotted bg behind logo ── */
.footer-circle-bg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
}

.fcr {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.55) 1.8px,
        transparent 1.8px
    );
    background-size: 10px 10px;
}

.fcr-1 {
    width: 240px;
    height: 240px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.5) 1.8px,
        transparent 1.8px
    );
    background-size: 10px 10px;
    -webkit-mask-image: radial-gradient(
        ellipse 120px 120px at center,
        transparent 108px,
        black 109px,
        black 120px,
        transparent 121px
    );
    mask-image: radial-gradient(
        ellipse 120px 120px at center,
        transparent 108px,
        black 109px,
        black 120px,
        transparent 121px
    );
    animation: ringRotate 22s linear infinite;
}

.fcr-2 {
    width: 185px;
    height: 185px;
    background: radial-gradient(
        circle,
        rgba(192, 39, 45, 0.7) 1.5px,
        transparent 1.5px
    );
    background-size: 9px 9px;
    -webkit-mask-image: radial-gradient(
        ellipse 92px 92px at center,
        transparent 80px,
        black 81px,
        black 92px,
        transparent 93px
    );
    mask-image: radial-gradient(
        ellipse 92px 92px at center,
        transparent 80px,
        black 81px,
        black 92px,
        transparent 93px
    );
    animation: ringRotate 16s linear infinite reverse;
}

.fcr-3 {
    width: 132px;
    height: 132px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.45) 1.5px,
        transparent 1.5px
    );
    background-size: 8px 8px;
    -webkit-mask-image: radial-gradient(
        ellipse 66px 66px at center,
        transparent 54px,
        black 55px,
        black 66px,
        transparent 67px
    );
    mask-image: radial-gradient(
        ellipse 66px 66px at center,
        transparent 54px,
        black 55px,
        black 66px,
        transparent 67px
    );
    animation: ringRotate 12s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes ringPulse {
    0%   { transform: scale(1);    opacity: 0.7; }
    50%  { transform: scale(1.12); opacity: 0.3; }
    100% { transform: scale(1);    opacity: 0.7; }
}

@keyframes glowRing {
    0%   { box-shadow: 0 0 0px 0px rgba(192, 39, 45, 0);   }
    50%  { box-shadow: 0 0 22px 8px rgba(192, 39, 45, 0.35); }
    100% { box-shadow: 0 0 0px 0px rgba(192, 39, 45, 0);   }
}

/* ── Hover state: rings react ── */

/* Outer ring — speed up + turn red */
.footer-circle-bg:hover .fcr-1 {
    background: radial-gradient(
        circle,
        rgba(192, 39, 45, 0.85) 2px,
        transparent 2px
    );
    background-size: 10px 10px;
    animation: ringRotate 5s linear infinite, ringPulse 1.8s ease-in-out infinite;
}

/* Middle ring — speed up reverse + turn white + glow */
.footer-circle-bg:hover .fcr-2 {
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.9) 2px,
        transparent 2px
    );
    background-size: 9px 9px;
    animation: ringRotate 4s linear infinite reverse, ringPulse 1.4s ease-in-out infinite 0.3s;
}

/* Inner ring — speed up + turn red accent */
.footer-circle-bg:hover .fcr-3 {
    background: radial-gradient(
        circle,
        rgba(192, 39, 45, 0.9) 2px,
        transparent 2px
    );
    background-size: 8px 8px;
    animation: ringRotate 3s linear infinite, ringPulse 1.2s ease-in-out infinite 0.6s;
}

/* Logo scales up on hover of the whole circle area */
.footer-circle-bg:hover .footer-logo-link {
    transform: scale(1.1);
}

/* Smooth transitions on the rings */
.fcr-1, .fcr-2, .fcr-3 {
    transition: background 0.4s ease;
}

/* Logo image — large, no circle crop */
.footer-logo-link {
    position: relative;
    z-index: 2;
    display: block;
    transition: transform 0.4s ease;
}

.footer-logo-link:hover {
    transform: scale(1.06);
}

.footer-logo-img {
    width: 260px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Map */
.footer-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    padding: 56px 0 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 48px;
    display: block;
    display: block;
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin: 0;
}

.footer-cert {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 999px;
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.footer-links li a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition:
        color 0.18s,
        gap 0.18s;
}

.footer-links li a::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--st-red);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.18s;
}

.footer-links li a:hover {
    color: #fff;
    gap: 12px;
}

.footer-links li a:hover::before {
    opacity: 1;
}

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

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

.footer-contact-list li i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.18s;
}

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

.footer-contact-list li strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.footer-bottom {
    background: #c0272d;
    border-top: none;
    padding: 16px 0;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-copy strong {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s,
        transform 0.2s;
}

.footer-social a i {
    line-height: 1;
    display: block;
}

.footer-social a:hover {
    background: var(--st-red);
    color: #fff;
    border-color: var(--st-red);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .footer-social {
        justify-content: flex-start;
    }
}

/* ── Bullet list ── */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--st-red);
}

/* ── Animate on scroll ── */
.animate {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.animate.visible {
    opacity: 1;
    transform: none;
}

/* ── Manufacturing Steps (Products section) ── */
.mfg-steps-wrap {
    position: relative;
    padding-bottom: 10px;
}

.mfg-line {
    position: absolute;
    top: 90px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #dde0e6;
    z-index: 0;
}

.mfg-circles-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.mfg-circle-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.mfg-circle-link {
    display: block;
    text-decoration: none;
}

.mfg-circle-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
    background: #eee;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mfg-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mfg-circle-link:hover .mfg-circle-img {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.mfg-circle-link:hover .mfg-circle-img img {
    transform: scale(1.07);
}

.mfg-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--st-red);
    border: 3px solid #f4f6f9;
    box-shadow: 0 0 0 2px var(--st-red);
    margin-top: 14px;
    flex-shrink: 0;
}

.mfg-cards-row {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.mfg-card-col {
    flex: 1;
    min-width: 0;
}

.mfg-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 22px 18px 20px;
    height: 100%;
    transition:
        box-shadow 0.25s,
        transform 0.25s,
        border-color 0.25s;
}

.mfg-card:hover {
    box-shadow: 0 12px 36px rgba(192, 39, 45, 0.12);
    transform: translateY(-4px);
    border-color: var(--st-red);
}

.mfg-step-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--st-red);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mfg-card-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.mfg-card-desc {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.65;
    margin-bottom: 10px;
}

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

.mfg-card-list li {
    font-size: 0.78rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 4px;
}

.mfg-card-list li i {
    color: var(--st-red);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: -1px;
}

/* ── Vertical Connected Product Cards ── */
.vertical-products-wrap {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.vertical-connection-line {
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--st-red) 10%,
        var(--st-red) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
    z-index: 0;
}

.vertical-product-card {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition:
        box-shadow 0.3s,
        transform 0.3s;
}

.vertical-product-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.vpc-image-box {
    flex: 0 0 40%;
    height: 280px;
    background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
}

.vpc-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.vertical-product-card:hover .vpc-image-box img {
    transform: scale(1.05);
}

.vpc-content-box {
    flex: 1;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.vpc-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(192, 39, 45, 0.08);
    line-height: 1;
    margin-bottom: 8px;
}

.vpc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.4;
}

.vpc-desc {
    font-size: 0.93rem;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.7;
}

.vpc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.vpc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.vpc-features li i {
    color: var(--st-red);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.9rem;
}

.vpc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--st-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition:
        gap 0.2s,
        color 0.2s;
}

.vpc-link:hover {
    color: var(--st-red-dark);
    gap: 12px;
}

.vpc-link i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.vpc-link:hover i {
    transform: translateX(2px);
}

@media (max-width: 991px) {
    .mfg-line {
        display: none;
    }

    .vertical-product-card {
        flex-direction: column;
    }

    .vpc-image-box {
        flex: 0 0 240px;
        height: 240px;
    }

    .vpc-content-box {
        padding: 32px 24px;
    }

    .vpc-title {
        font-size: 1.1rem;
    }

    .vpc-number {
        font-size: 2.5rem;
    }

    .mfg-circles-row,
    .mfg-cards-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .mfg-circle-col,
    .mfg-card-col {
        flex: 0 0 calc(50% - 10px);
    }

    .mfg-circle-img {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 575px) {
    .vertical-product-card {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .vpc-image-box {
        flex: 0 0 200px;
        height: 200px;
        padding: 16px;
    }

    .vpc-content-box {
        padding: 24px 20px;
    }

    .vpc-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .vpc-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }

    .vpc-desc {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .vpc-features li {
        font-size: 0.78rem;
        margin-bottom: 6px;
    }

    .vertical-connection-line {
        display: none;
    }

    .vertical-products-wrap {
        max-width: 100%;
    }

    .mfg-circle-col,
    .mfg-card-col {
        flex: 0 0 100%;
    }

    .mfg-circle-img {
        width: 110px;
        height: 110px;
    }
}

/* ── Home About Section ── */
.home-about-section {
    background: #fff;
    padding: 90px 0;
    overflow: hidden;
}

/* Left text column */
.ha-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

/* Feature box (like reference image) */
.ha-feat-box {
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ha-feat-box-title {
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.ha-feat-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.ha-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #333;
}

.ha-feat-item .bi {
    color: var(--st-red);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── Right image collage ── */
.ha-img-collage {
    position: relative;
    padding: 30px 10px 30px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated dot grids */
.ha-dots {
    position: absolute;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(
        circle,
        var(--st-red) 1.8px,
        transparent 1.8px
    );
    background-size: 14px 14px;
    z-index: 0;
    opacity: 0.55;
}

.ha-dots-tl {
    top: 0;
    left: 0;
    animation: dotsPulse 3s ease-in-out infinite;
}

.ha-dots-br {
    bottom: 0;
    right: 0;
    animation: dotsPulse 3s ease-in-out infinite 1.5s;
}

@keyframes dotsPulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}

/* Golden circle decoration */
.ha-golden-ring {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 110px;
    height: 110px;
    z-index: 2;
    animation: goldenSpin 12s linear infinite;
    filter: drop-shadow(0 4px 16px rgba(192, 39, 45, 0.18));
}

.ha-golden-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes goldenSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Main single image */
.ha-main-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    z-index: 1;
}

.ha-main-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ha-main-img-wrap:hover img {
    transform: scale(1.04);
}

/* Red corner accent bar */
.ha-img-corner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--st-red), transparent);
}

/* Years of Experience floating badge */
.ha-exp-badge {
    position: absolute;
    bottom: -18px;
    right: 24px;
    background: #fff;
    border-radius: 50px;
    padding: 12px 22px 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
    z-index: 3;
    animation: badgeFloat 3.5s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.ha-exp-num {
    font-family: "Poppins", sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--st-red);
    line-height: 1;
}

.ha-exp-num sup {
    font-size: 0.8rem;
    vertical-align: super;
}

.ha-exp-txt {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .home-about-section {
        padding: 60px 0;
    }
    .ha-text-col {
        padding-right: 0;
    }
    .ha-main-img-wrap img {
        height: 340px;
    }
    .ha-golden-ring {
        width: 85px;
        height: 85px;
    }
}

@media (max-width: 767px) {
    .home-about-section {
        padding: 48px 0;
    }
    .ha-img-collage {
        margin-top: 24px;
        padding: 20px 10px 30px;
    }
    .ha-main-img-wrap img {
        height: 260px;
    }
    .ha-golden-ring {
        width: 70px;
        height: 70px;
        top: -10px;
        right: -10px;
    }
    .ha-dots {
        width: 75px;
        height: 75px;
    }
    .ha-exp-badge {
        padding: 9px 16px 9px 12px;
        gap: 8px;
        bottom: -14px;
        right: 12px;
    }
    .ha-exp-num {
        font-size: 1.3rem;
    }
    .ha-exp-txt {
        font-size: 0.7rem;
    }
    .ha-feat-box-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Why Choose Us ── */
.why-us-section {
    background:
        radial-gradient(
            ellipse at 0% 0%,
            rgba(192, 39, 45, 0.1) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse at 100% 100%,
            rgba(192, 39, 45, 0.08) 0%,
            transparent 55%
        ),
        linear-gradient(160deg, #fff8f8 0%, #ffffff 50%, #fff0f0 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.why-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.why-bg-c1 {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -200px;
    background: radial-gradient(
        circle,
        rgba(192, 39, 45, 0.07) 0%,
        transparent 65%
    );
}

.why-bg-c2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(
        circle,
        rgba(192, 39, 45, 0.05) 0%,
        transparent 65%
    );
}

/* Section heading */
.why-main-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 16px;
}

.why-main-title span {
    color: var(--st-red);
}

.why-title-line {
    width: 56px;
    height: 4px;
    background: var(--st-red);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.why-main-sub {
    font-size: 0.93rem;
    color: #666;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

/* KPI cards */
.why-kpi-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 20px 22px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--st-red);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
}

.why-kpi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(192, 39, 45, 0.13);
}

.why-kpi-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(192, 39, 45, 0.08);
    color: var(--st-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 14px;
}

.why-kpi-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
}

.why-kpi-lbl {
    font-size: 0.82rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.why-kpi-sub {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.02em;
}

/* Feature cards */
.why-feat-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px 22px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0f3;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
}

.why-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.why-feat-card-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
}

.why-feat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-feat-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.why-feat-card-desc {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.65;
}

/* CTA panel */
.why-cta-panel {
    background: linear-gradient(160deg, #071425 0%, #0d2a5e 100%);
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.why-cta-panel::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(192, 39, 45, 0.15);
    pointer-events: none;
}

.why-cta-quote {
    font-size: 2.5rem;
    color: var(--st-red);
    opacity: 0.7;
    display: block;
    margin-bottom: 8px;
}

.why-cta-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    font-style: italic;
    margin: 0;
}

.why-cert-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-cert-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.why-cert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--st-red);
    flex-shrink: 0;
}

.why-cta-btns {
    margin-top: auto;
}

.why-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.why-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ── Why Choose Us — Image Column ── */
.why-img-wrap {
    position: relative;
    padding: 30px 30px 30px 20px;
}

/* Large decorative ring behind image */
.why-img-deco-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 2px dashed rgba(192, 39, 45, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: why-ring-spin 30s linear infinite;
}

@keyframes why-ring-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Dot grid pattern */
.why-img-deco-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(192,39,45,0.25) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    border-radius: 8px;
    pointer-events: none;
}

/* Red accent bar */
.why-img-deco-bar {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 6px;
    height: 160px;
    background: linear-gradient(to bottom, var(--st-red), transparent);
    border-radius: 3px;
}

/* Image frame */
.why-img-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 6px rgba(192,39,45,0.08);
    position: relative;
    z-index: 1;
}

.why-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
}

.why-img-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.why-img-frame:hover .why-img-main {
    transform: scale(1.04);
}

/* Floating years badge */
.why-img-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    background: var(--st-red);
    color: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(192,39,45,0.4);
    z-index: 2;
    min-width: 90px;
}

.why-img-badge-num {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.why-img-badge-lbl {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.3;
    margin-top: 4px;
}

/* ISO tag */
.why-img-iso {
    position: absolute;
    top: 20px;
    right: 10px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 2;
}

.why-img-iso i {
    color: var(--st-red);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .why-img-main { height: 300px; }
    .why-img-deco-ring { width: 300px; height: 300px; }
    .why-img-badge { left: 10px; }
}

@media (max-width: 767px) {
    .why-img-wrap { padding: 20px 10px; }
    .why-img-main { height: 240px; }
}

@media (max-width: 991px) {
    .why-us-section {
        padding: 60px 0;
    }

    .why-cta-panel {
        padding: 28px 22px;
    }
}

@media (max-width: 767px) {
    .why-kpi-num {
        font-size: 1.7rem;
    }

    .why-feat-card {
        padding: 18px 16px 18px 18px;
    }
}

/* ── Clients auto-scroll slider ── */
.clients-track-wrap {
    overflow: hidden;
    position: relative;
}

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

.clients-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.clients-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.clients-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.clients-slide {
    flex-shrink: 0;
}

.clients-logo {
    width: 200px;
    height: 160px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.clients-logo:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.clients-logo img {
    max-height: 100px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: filter 0.25s;
}

.clients-logo:hover img {
    filter: grayscale(0) opacity(1);
}

/* Arrow buttons */
.clients-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition:
        background 0.2s,
        color 0.2s,
        box-shadow 0.2s;
}

.clients-arrow:hover {
    background: var(--st-red);
    color: #fff;
    border-color: var(--st-red);
    box-shadow: 0 6px 20px rgba(192, 39, 45, 0.3);
}

.clients-prev {
    left: 8px;
}

.clients-next {
    right: 8px;
}

/* ── Industries Page ── */
.ind-hero {
    position: relative;
    min-height: 400px;
    background: url("/assets/images/hero2.png") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.ind-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(7, 20, 37, 0.9) 0%,
        rgba(7, 20, 37, 0.6) 60%,
        rgba(7, 20, 37, 0.3) 100%
    );
}

.ind-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.ind-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 18px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    border-top: 3px solid var(--st-red);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.ind-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.ind-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(192, 39, 45, 0.1);
    color: var(--st-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.ind-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.ind-card-desc {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.5;
}

.ind-client-logo {
    background: #fff;
    border-radius: 10px;
    padding: 16px 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.ind-client-logo:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
    transform: translateY(-2px);
}

.ind-client-logo img {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.25s;
}

.ind-client-logo:hover img {
    filter: grayscale(0);
}

.ind-why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #f8f8f8;
    border: 1px solid #eee;
    font-size: 0.9rem;
    color: #333;
    transition:
        background 0.2s,
        border-color 0.2s;
}

.ind-why-item:hover {
    background: rgba(192, 39, 45, 0.05);
    border-color: rgba(192, 39, 45, 0.2);
}

.ind-why-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--st-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.ind-why-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.ind-why-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.ind-why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.ind-why-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--st-red);
    color: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 12px 32px rgba(192, 39, 45, 0.4);
    text-align: center;
    min-width: 110px;
}

.ind-why-badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.ind-why-badge-lbl {
    font-size: 0.7rem;
    opacity: 0.85;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.ind-cta-banner {
    background: linear-gradient(135deg, #071425 0%, #0d2a5e 100%);
    padding: 80px 0;
}

/* ── Quality Page ── */
.qp-hero {
    position: relative;
    min-height: 420px;
    background: url("/assets/images/DSC03167-scaled.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.qp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(7, 20, 37, 0.88) 0%,
        rgba(7, 20, 37, 0.55) 60%,
        rgba(7, 20, 37, 0.3) 100%
    );
}

.qp-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

/* Commitment feature cards */
.qp-feat-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 14px 16px;
    height: 100%;
    border-left: 3px solid var(--st-red);
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.qp-feat-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.qp-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--st-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.qp-feat-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.qp-feat-desc {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.4;
}

/* Quality image */
.qp-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.qp-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.qp-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--st-red);
    color: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 12px 32px rgba(192, 39, 45, 0.4);
    text-align: center;
    min-width: 90px;
}

.qp-img-badge-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.qp-img-badge-lbl {
    font-size: 0.7rem;
    opacity: 0.85;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Policy box */
.qp-policy-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--st-red);
}

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

.qp-policy-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-size: 0.93rem;
    line-height: 1.7;
}

.qp-policy-list li:last-child {
    border-bottom: none;
}

.qp-policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--st-red);
}

/* QA step cards */
.qp-step-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 14px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.qp-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.qp-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(192, 39, 45, 0.1);
    color: var(--st-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 12px;
}

.qp-step-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Testing facility cards */
.qp-test-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    height: 100%;
    border-left: 4px solid var(--st-red);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.qp-test-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.qp-test-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(192, 39, 45, 0.15);
    line-height: 1;
    flex-shrink: 0;
    min-width: 42px;
}

.qp-test-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(192, 39, 45, 0.1);
    color: var(--st-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.qp-test-body {
    flex: 1;
}

.qp-test-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.qp-test-desc {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.qp-closing-line {
    margin-top: 40px;
    padding: 20px 28px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    font-size: 0.93rem;
    color: #444;
    font-style: italic;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Certification cards */
.qp-cert-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    height: 100%;
    border-top: 4px solid var(--st-red);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qp-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.qp-cert-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(192, 39, 45, 0.1);
    color: var(--st-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
}

/* Certificate thumbnail grid */
.cert-thumb-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    border: 1px solid #eee;
}

.cert-thumb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.cert-thumb-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    aspect-ratio: 3/4;
}

.cert-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 12px;
    transition: transform 0.4s ease;
}

.cert-thumb-card:hover .cert-thumb-img {
    transform: scale(1.04);
}

.cert-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    font-size: 2rem;
    color: #fff;
}

.cert-thumb-card:hover .cert-thumb-overlay {
    opacity: 1;
}

.cert-thumb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
}

.cert-thumb-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.cert-thumb-dl {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--st-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    text-decoration: none;
    transition:
        background 0.18s,
        transform 0.18s;
}

.cert-thumb-dl:hover {
    background: var(--st-red-dark);
    transform: scale(1.1);
    color: #fff;
}

/* Certificate image modal */
.cert-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.cert-modal-box {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    max-height: 92vh;
}

.cert-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.cert-modal-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cert-modal-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--st-red);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.18s;
}

.cert-modal-btn:hover {
    background: var(--st-red-dark);
    color: #fff;
}

.cert-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4f6f9;
    border: 1px solid #ddd;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s;
}

.cert-modal-close:hover {
    background: #e8eaed;
    color: #111;
}

.cert-modal-img-body {
    overflow-y: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.cert-modal-img-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Agency logos */
.qp-agency-logo {
    background: #fff;
    border-radius: 10px;
    padding: 14px 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qp-agency-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.2s;
}

.qp-agency-logo:hover img {
    filter: grayscale(0);
}

/* CTA banner */
.qp-cta-banner {
    background: linear-gradient(135deg, #071425 0%, #0d2a5e 100%);
    padding: 80px 0;
}

/* ── Contact Page ── */
.ct-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 26px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--st-red);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.ct-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ct-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(192, 39, 45, 0.1);
    color: var(--st-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.ct-info-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ct-info-text {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 14px;
}

.ct-info-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ct-info-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #444;
    text-decoration: none;
    transition: color 0.18s;
}

.ct-info-link i {
    color: var(--st-red);
    font-size: 0.85rem;
}

.ct-info-link:hover {
    color: var(--st-red);
}

.ct-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.ct-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.88rem;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.ct-input:focus {
    border-color: var(--st-red);
    box-shadow: 0 0 0 3px rgba(192, 39, 45, 0.1);
    outline: none;
}

.ct-map-wrap {
    border-radius: 14px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ct-map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.ct-quick-strip {
    display: flex;
    gap: 16px;
}

.ct-quick-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f6f6f6;
    border-radius: 12px;
    padding: 16px 18px;
    text-decoration: none;
    border: 1px solid #eee;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.ct-quick-item:hover {
    background: rgba(192, 39, 45, 0.05);
    border-color: rgba(192, 39, 45, 0.2);
}

.ct-quick-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--st-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ct-quick-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ct-quick-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2px;
}

@media (max-width: 575px) {
    .ct-quick-strip {
        flex-direction: column;
    }
}

/* ── Shared page banner (all inner pages) ── */
.page-banner {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-banner::before {
    display: none;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 48px;
    text-align: left;
}

.page-banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.page-banner-eyebrow span.line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--st-red);
    border-radius: 1px;
}

.page-banner-eyebrow span.txt {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #444;
}

.page-banner h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 10px;
}

.page-banner h1 span {
    color: var(--st-red);
}

.page-banner p.sub {
    font-size: 0.88rem;
    color: #444;
    max-width: 480px;
    line-height: 1.7;
    margin: 0;
}

/* Breadcrumb inside banner */
.page-banner-breadcrumb {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 2;
}

.page-banner-breadcrumb ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}

.page-banner-breadcrumb li {
    color: #555;
}

.page-banner-breadcrumb li a {
    color: #333;
    text-decoration: none;
}

.page-banner-breadcrumb li a:hover {
    color: var(--st-red);
}

.page-banner-breadcrumb li.sep {
    color: #aaa;
}

/* ── About Page ── */
.ab-intro-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.ab-intro-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--st-red);
    color: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 12px 32px rgba(192, 39, 45, 0.4);
    text-align: center;
    min-width: 100px;
}

.ab-intro-badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.ab-intro-badge-lbl {
    font-size: 0.7rem;
    opacity: 0.85;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ab-cert-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #444;
}

.ab-cert-pill i {
    color: var(--st-red);
}

.ab-mv-card {
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
}

.ab-mv-card.mission {
    background: linear-gradient(135deg, #071425, #0d2a5e);
}

.ab-mv-card.vision {
    background: linear-gradient(135deg, #1a0608, #6b1217);
}

.ab-mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.ab-mv-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

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

.ab-mv-list li {
    position: relative;
    padding: 8px 0 8px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.6;
}

.ab-mv-list li:last-child {
    border-bottom: none;
}

.ab-mv-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--st-red);
}

.ab-what-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    height: 100%;
    border-top: 3px solid var(--st-red);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.ab-what-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.ab-what-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(192, 39, 45, 0.1);
    color: var(--st-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

/* Dimension highlight bar */
.ab-dim-bar {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #f8f8f8;
    border-radius: 12px;
    border-left: 4px solid var(--st-red);
    margin: 20px 0;
    overflow: hidden;
}

.ab-dim-item {
    flex: 1;
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ab-dim-divider {
    width: 1px;
    background: #e8e8e8;
    flex-shrink: 0;
}

.ab-dim-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--st-red);
    line-height: 1;
}

.ab-dim-lbl {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Closing quote */
.ab-closing-quote {
    position: relative;
    padding: 18px 20px 18px 52px;
    background: rgba(192, 39, 45, 0.05);
    border-left: 4px solid var(--st-red);
    border-radius: 0 10px 10px 0;
    font-size: 0.93rem;
    color: #444;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 4px;
}

.ab-closing-quote .bi-quote {
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 1.6rem;
    color: var(--st-red);
    opacity: 0.4;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1);
    }
}

/* ══════════════════════════════════════════
           RESPONSIVE — COMPREHENSIVE
        ══════════════════════════════════════════ */

/* ── Tablet (≤991px) ── */
@media (max-width: 991px) {
    .topbar .badge-cert {
        display: none;
    }

    /* Home about section */
    .home-about-section .about-text-col {
        padding: 48px 28px;
    }

    .home-about-section .about-img-mosaic {
        min-height: 360px;
    }

    .home-about-section .mosaic-badge {
        left: 10px;
    }

    /* Why us */
    .why-us-section {
        padding: 60px 0;
    }

    /* Stats */
    .stats-dark-section .col-lg-4 {
        padding: 40px 24px 20px !important;
    }

    .stats-item {
        padding: 28px 20px;
        gap: 14px;
    }

    .stats-num {
        font-size: 1.9rem;
    }

    /* Page banner */
    .page-banner {
        min-height: 300px;
    }

    .page-banner-content {
        padding: 70px 0 50px;
    }

    /* About page */
    .ab-intro-img {
        height: 380px;
    }

    .qp-main-img,
    .ind-why-img {
        height: 360px;
    }

    /* Home about collage — handled in component CSS */

    /* Products grid — 2 col on tablet */
    .prd2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prd2-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Clients */
    .clients-logo {
        width: 180px;
        height: 130px;
    }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {
    /* Topbar */
    .topbar .topbar-contact {
        display: none !important;
    }

    /* Hero */
    .hero-content {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-h1 {
        font-size: 1.85rem;
    }

    .slider-arrow {
        display: none;
    }

    .hero-sub br {
        display: none;
    }

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

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-tags {
        gap: 6px;
    }

    .hero-video-controls {
        right: 16px;
        bottom: 16px;
    }

    .hero-video-progress {
        width: 140px;
    }

    /* Home about — stack vertically */
    .home-about-section .row.g-0 {
        flex-direction: column;
    }

    .home-about-section .about-text-col {
        padding: 36px 20px 28px;
        order: 1;
    }

    .home-about-section .col-lg-6:last-child {
        order: 2;
    }

    /* About collage on mobile — handled in component CSS */

    /* Products grid — 1 col on mobile */
    .prd2-section {
        padding: 48px 0;
    }

    .prd2-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 24px;
    }

    /* Why us — stack */
    .why-us-section .row.g-0 {
        flex-direction: column;
    }

    .why-us-section {
        padding: 48px 0;
    }

    .why-kpi-num {
        font-size: 1.6rem;
    }

    /* Stats */
    .stats-item {
        padding: 20px 14px;
        gap: 10px;
    }

    .stats-item-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .stats-num {
        font-size: 1.5rem;
    }

    .stats-dark-section .col-lg-4 {
        padding: 28px 16px 10px !important;
    }

    /* Clients */
    .clients-logo {
        width: 150px;
        height: 110px;
    }

    .clients-logo img {
        max-height: 60px;
        max-width: 110px;
    }

    /* Contact section */
    #contact .row.g-5 {
        gap: 2rem !important;
    }

    /* Page banner */
    .page-banner {
        min-height: 260px;
    }

    .page-banner-content {
        padding: 56px 0 44px;
    }

    .page-banner h1 {
        font-size: 1.75rem;
    }

    .page-banner p.sub {
        font-size: 0.88rem;
    }

    /* Footer */
    .footer-brand-col,
    .footer-col {
        padding: 32px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-circle-bg {
        width: 160px;
        height: 160px;
    }

    .fcr-1 {
        width: 160px;
        height: 160px;
    }

    .fcr-2 {
        width: 124px;
        height: 124px;
    }

    .fcr-3 {
        width: 90px;
        height: 90px;
    }

    .footer-logo-img {
        width: 120px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    /* About page */
    .ab-intro-img {
        height: 260px;
    }

    .ab-dim-bar {
        flex-direction: column;
    }

    .ab-dim-divider {
        width: 100%;
        height: 1px;
    }

    .ab-mv-card {
        padding: 24px 20px;
    }

    .ab-closing-quote {
        padding: 14px 14px 14px 44px;
        font-size: 0.88rem;
    }

    /* Contact page */
    .ct-map-wrap {
        height: 280px;
    }

    .ct-map-wrap iframe {
        width: 100% !important;
        height: 100% !important;
    }

    .ct-quick-strip {
        flex-direction: column;
    }

    /* Quality page */
    .qp-main-img {
        height: 260px;
    }

    .qp-policy-box {
        padding: 24px 20px;
    }

    /* Industries page */
    .ind-why-img {
        height: 260px;
    }
}

/* ── Small mobile (≤575px) ── */
@media (max-width: 575px) {
    /* Hero */
    .hero-h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 0.88rem;
    }

    .hero-tags {
        gap: 5px;
    }

    .hero-tag {
        font-size: 0.62rem;
        padding: 4px 9px;
    }

    .hero-video-progress {
        width: 110px;
    }

    /* About collage small mobile — handled in component CSS */

    /* Products — full card stack handled in component CSS */

    /* Stats — single column */
    .stats-dark-section .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .stats-item-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Clients logo */
    .clients-logo {
        width: 140px;
        height: 100px;
    }

    .clients-logo img {
        max-height: 55px;
        max-width: 100px;
    }

    /* Contact form */
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Page banner */
    .page-banner {
        min-height: 220px;
    }

    .page-banner-content {
        padding: 48px 0 36px;
    }

    .page-banner h1 {
        font-size: 1.4rem;
    }

    /* Why feat rows */
    .why-feat-row {
        padding: 12px 14px;
        gap: 12px;
    }

    .why-feat-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.35rem;
    }

    /* Contact page map */
    .ct-map-wrap {
        height: 240px;
    }

    /* Footer quick links — 2 col on xs */
    .footer-top .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ── Large screens (≥1400px) ── */
@media (min-width: 1400px) {
    .hero-h1 {
        font-size: 4.2rem;
    }

    .hero-sub {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .prd2-section {
        padding: 96px 0;
    }

    .prd2-card {
        min-height: 210px;
    }

    .prd2-img-wrap {
        width: 200px;
    }
}

/* ══════════════════════════════════════
           ABOUT COLLAGE
        ══════════════════════════════════════ */
.about-collage {
    position: relative;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.about-collage-top {
    flex: 1.5;
    border-radius: 14px;
    overflow: hidden;
    min-height: 0;
}

.about-collage-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-collage-top:hover img {
    transform: scale(1.04);
}

.about-collage-bottom {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    min-height: 0;
}

.about-collage-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-collage-bottom:hover img {
    transform: scale(1.05);
}

/* Badge sits centered on the gap between the two images */
.about-collage-badge {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: var(--st-red);
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(192, 39, 45, 0.4);
    z-index: 2;
    white-space: nowrap;
}

.about-collage-badge .badge-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-collage-badge .badge-txt {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-top: 3px;
}

@media (max-width: 991px) {
    .about-collage {
        min-height: 380px;
    }
}

@media (max-width: 767px) {
    .about-collage {
        min-height: 300px;
        gap: 6px;
    }

    .about-collage-badge {
        right: 12px;
        padding: 10px 12px;
    }

    .about-collage-badge .badge-num {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .about-collage {
        min-height: 240px;
    }
}

/* ══════════════════════════════════════
           ABOUT PAGE — image grid (about.blade)
        ══════════════════════════════════════ */
.ab-img-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 260px 180px;
    gap: 10px;
    margin-top: 0;
}

.ab-img-main {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
}

.ab-img-main img,
.ab-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ab-img-main:hover img {
    transform: scale(1.04);
}

.ab-img-sm {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.ab-img-sm:hover img {
    transform: scale(1.05);
}

.ab-img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--st-red);
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(192, 39, 45, 0.45);
}

.ab-badge-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.ab-badge-txt {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .ab-img-grid {
        grid-template-rows: 180px 160px;
    }
}

@media (max-width: 575px) {
    .ab-img-grid {
        grid-template-rows: 150px 130px;
        gap: 6px;
    }

    .ab-img-badge {
        bottom: 8px;
        left: 8px;
        padding: 8px 10px;
    }

    .ab-badge-num {
        font-size: 1rem;
    }
}

/* ══════════════════════════════════════
           PRODUCTS SECTION v2 — 4-card grid
        ══════════════════════════════════════ */
.prd2-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f4f4 100%);
}

.prd2-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 36px;
}

/* 2×2 grid */
.prd2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Card — image top, content bottom */
.prd2-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e8eaed;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    min-height: unset;
}

.prd2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(192, 39, 45, 0.13);
    border-color: var(--st-red);
    color: inherit;
    text-decoration: none;
}

/* Image panel — full width top */
.prd2-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    background: #dde0e6;
}

.prd2-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.prd2-card:hover .prd2-img-wrap img {
    transform: scale(1.08);
}

.prd2-img-overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.28s ease;
}

.prd2-card:hover .prd2-img-overlay {
    opacity: 0.75;
}

.prd2-num {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Content panel — below image */
.prd2-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.prd2-title {
    font-size: 0.93rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.35;
    margin: 0 0 10px;
}

.prd2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.prd2-list li {
    font-size: 0.76rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    border-bottom: 1px solid #f2f2f2;
}

.prd2-list li:last-child {
    border-bottom: none;
}

.prd2-list li i {
    color: var(--st-red);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.prd2-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.prd2-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--st-red);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: gap 0.22s ease;
}

.prd2-card:hover .prd2-cta {
    gap: 10px;
}

.prd2-cta i {
    font-size: 0.8rem;
    transition: transform 0.22s ease;
}

.prd2-card:hover .prd2-cta i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 991px) {
    .prd2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prd2-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .prd2-img-wrap {
        height: 180px;
    }
}

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

    .prd2-section {
        padding: 48px 0;
    }

    .prd2-img-wrap {
        height: 200px;
    }

    .prd2-body {
        padding: 14px 16px;
    }

    .prd2-title {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .prd2-list li {
        font-size: 0.72rem;
    }

    .prd2-footer {
        margin-top: 8px;
        padding-top: 8px;
    }
}

@media (max-width: 480px) {
    .prd2-img-wrap {
        height: 160px;
    }

    .prd2-body {
        padding: 14px 16px;
    }
}

/* home end */

/* Header start */

/* body { padding-top: 0 !important; } */

/* ── Floating pill header wrapper ── */
#siteHeader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 18px 24px;
    transition: padding 0.35s ease;
}

#siteHeader.scrolled {
    position: fixed;
    padding: 10px 24px;
}

/* ── The pill itself ── */
.gh-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 20px;
    padding: 8px 12px 8px 20px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    transition:
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

#siteHeader.scrolled .gh-pill {
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.22);
}

/* ── Logo ── */
.gh-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.gh-logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: height 0.3s;
}

#siteHeader.scrolled .gh-logo img {
    height: 64px;
}

/* ── Nav links ── */
.gh-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
}

.gh-nav .gh-link {
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.2s,
        color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.gh-nav .gh-link:hover,
.gh-nav .gh-link.active {
    background: transparent;
    color: var(--st-red, #c0272d);
}

/* Maroon underline on active */
.gh-nav .gh-link.active::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--st-red, #c0272d);
    border-radius: 1px;
}

/* Hide underline on dropdown triggers */
.gh-nav .gh-link.has-dropdown.active::after {
    display: none !important;
}

/* ── Dropdown ── */
.gh-nav .gh-dropdown-wrap {
    position: relative;
}

.gh-nav .gh-link.has-dropdown::after {
    display: none !important;
}

.gh-nav .gh-link .gh-caret {
    font-size: 0.6rem;
    transition: transform 0.25s;
    display: inline-block;
}

.gh-nav .gh-dropdown-wrap:hover .gh-caret,
.gh-nav .gh-dropdown-wrap.open .gh-caret {
    transform: rotate(180deg);
}

.gh-nav .gh-drop {
    visibility: hidden;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 270px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-top: 3px solid var(--st-red, #c0272d);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
}

/* Bridge gap so mouse can travel from link to dropdown */
.gh-nav .gh-dropdown-wrap::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}

.gh-nav .gh-dropdown-wrap:hover .gh-drop,
.gh-nav .gh-dropdown-wrap.open .gh-drop {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.gh-drop a {
    display: block;
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.76rem;
    font-weight: 500;
    color: #1a1a1a;
    padding: 10px 20px;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition:
        background 0.15s,
        color 0.15s,
        padding-left 0.15s,
        border-color 0.15s;
}

.gh-drop a:hover,
.gh-drop a.active {
    background: rgba(192, 39, 45, 0.08);
    color: var(--st-red, #c0272d);
    border-left-color: var(--st-red, #c0272d);
    padding-left: 26px;
}

/* ── CTA buttons ── */
.gh-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.gh-btn-brochure {
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 12px;
    border: 1.5px solid #ddd;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
}

.gh-btn-brochure:hover {
    border-color: var(--st-red, #c0272d);
    color: var(--st-red, #c0272d);
    background: rgba(192, 39, 45, 0.05);
}

.gh-btn-quote {
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 12px;
    background: var(--st-red, #c0272d);
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(192, 39, 45, 0.35);
    transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
}

.gh-btn-quote:hover {
    background: #a01f24;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(192, 39, 45, 0.45);
    color: #fff;
}

/* ── Mobile toggler ── */
.gh-toggler {
    display: none;
    background: none;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 6px 10px;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    transition:
        border-color 0.2s,
        color 0.2s;
}

.gh-toggler:hover {
    border-color: var(--st-red, #c0272d);
    color: var(--st-red, #c0272d);
}

/* ── Mobile menu ── */
@media (max-width: 991.98px) {
    .gh-toggler {
        display: flex;
        align-items: center;
    }

    .gh-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #fff;
        border-radius: 20px;
        border-top: 3px solid var(--st-red, #c0272d);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
        padding: 12px 16px 16px;
    }

    .gh-nav.open {
        display: flex;
    }

    .gh-nav .gh-link {
        color: #333;
        width: 100%;
        border-radius: 10px;
    }
    .gh-nav .gh-link:hover,
    .gh-nav .gh-link.active {
        background: rgba(192, 39, 45, 0.08);
        color: var(--st-red, #c0272d);
    }

    .gh-nav .gh-dropdown-wrap {
        width: 100%;
    }

    .gh-nav .gh-drop {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--st-red, #c0272d);
        border-radius: 0;
        background: #fafafa;
        animation: none;
        margin: 2px 0 4px 12px;
        transform: none;
    }

    .gh-nav .gh-dropdown-wrap.open .gh-drop {
        display: block;
    }

    .gh-btns {
        padding: 10px 0 0;
        flex-wrap: wrap;
        border-top: 1px solid #f0f0f0;
        margin-top: 6px;
    }
}

@media (max-width: 575px) {
    #siteHeader {
        padding: 12px 12px;
    }
    .gh-logo img {
        height: 62px;
    }
    #siteHeader.scrolled .gh-logo img {
        height: 52px;
    }
}

/* header end */

/* ── 4 Feature Items — accent list style ── */
.wf-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.wf-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: #f9f9f9;
    border-radius: 14px;
    border-left: 4px solid transparent;
    transition:
        border-color 0.25s,
        background 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.wf-item:hover {
    border-left-color: var(--wf-color, #c0272d);
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.wf-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    background: rgba(192, 39, 45, 0.1);
    color: var(--wf-color, #c0272d);
    transition:
        background 0.25s,
        transform 0.25s,
        color 0.25s;
}

.wf-item:hover .wf-item-icon {
    background: var(--wf-color, #c0272d);
    color: #fff;
    transform: scale(1.1) rotate(-4deg);
}

.wf-item-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-family: var(--heading-font, "Nunito", sans-serif);
}

.wf-item-desc {
    font-size: 0.74rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 767px) {
    .wf-list {
        grid-template-columns: 1fr;
    }
}

/* ── Quote Banner ── */
.wq-banner {
    background: linear-gradient(
        to right,
        #c0272d 0%,
        #ffffff 40%,
        #ffffff 60%,
        #c0272d 100%
    );
    border-radius: 20px;
    padding: 3px;
    box-shadow: 0 4px 32px rgba(192, 39, 45, 0.18);
}

.wq-content {
    background: #fff;
    border-radius: 17px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.wq-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.wq-icon {
    width: 56px;
    height: 56px;
    background: var(--st-red, #c0272d);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(192, 39, 45, 0.35);
}

.wq-text {
    font-size: 1.05rem;
    font-weight: 600;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.wq-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wq-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(192, 39, 45, 0.08);
    border: 2px solid rgba(192, 39, 45, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--st-red, #c0272d);
    font-size: 1rem;
    flex-shrink: 0;
}

.wq-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
}

.wq-role {
    font-size: 0.72rem;
    color: #999;
}

.wq-right {
    flex-shrink: 0;
}

.wq-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--st-red, #c0272d);
    color: #fff;
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(192, 39, 45, 0.4);
    transition:
        background 0.2s,
        transform 0.2s;
    white-space: nowrap;
}

.wq-cta:hover {
    background: #a01f24;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 991px) {
    .wq-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 28px;
    }
    .wq-left {
        flex-direction: column;
        align-items: flex-start;
    }
    .wq-text {
        font-size: 0.92rem;
    }
}

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #000;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.60) 30%,
        rgba(0, 0, 0, 0.25) 52%,
        rgba(0, 0, 0, 0.00) 68%
    );
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 0 40px 0 60px;
    width: 48%;
    flex-shrink: 0;
}

.hero-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.hero-eyebrow-badge i {
    color: var(--st-red, #c0272d);
    font-size: 0.9rem;
}

.hero-main-title {
    font-family: var(--heading-font, "Nunito", sans-serif);
    font-size: clamp(1.4rem, 2.8vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-main-title span {
    color: var(--st-red, #c0272d);
}

.hero-main-sub {
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    max-width: 100%;
    margin: 0 0 40px 0;
    text-shadow:
        0 1px 8px rgba(0, 0, 0, 0.7),
        0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--st-red, #c0272d);
    color: #fff;
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(192, 39, 45, 0.45);
    transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
}

.hero-btn-primary:hover {
    background: #a01f24;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(192, 39, 45, 0.55);
    color: #fff;
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s;
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.45);
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint i {
    font-size: 1.3rem;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .hero-content-wrap {
        width: 54%;
        padding: 0 32px 0 48px;
    }
}

@media (max-width: 991px) {
    .hero-content-wrap {
        width: 65%;
        padding: 0 28px 0 36px;
    }
}

@media (max-width: 767px) {
    .hero-content-wrap {
        width: 100%;
        padding: 0 20px;
        text-align: left;
    }
    .hero-main-sub {
        max-width: 100%;
    }
    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-overlay {
        background: rgba(0, 0, 0, 0.55);
    }
}

.why-header-wrap {
    position: relative;
}

.why-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(192, 39, 45, 0.08);
    border: 1.5px solid rgba(192, 39, 45, 0.2);
    color: var(--st-red, #c0272d);
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.why-header-badge i {
    font-size: 0.85rem;
}

.why-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px auto 20px;
}

.why-divider-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--st-red, #c0272d));
    border-radius: 1px;
}

.why-divider-line:last-child {
    background: linear-gradient(to left, transparent, var(--st-red, #c0272d));
}

.why-divider-icon {
    color: var(--st-red, #c0272d);
    font-size: 0.7rem;
    opacity: 0.7;
}

/* ── Floating Video Button ── */
.float-video-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--st-red, #c0272d);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 13px 22px 13px 16px;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(192, 39, 45, 0.45);
    font-family: var(--nav-font, "Poppins", sans-serif);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.2s ease;
}

.float-video-btn:hover {
    background: var(--st-red-dark, #9e1f24);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(192, 39, 45, 0.55);
}

.float-video-btn i {
    font-size: 1.25rem;
    line-height: 1;
}

.fvb-label {
    white-space: nowrap;
}

/* Pulsing ring */
.fvb-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 2px solid rgba(192, 39, 45, 0.5);
    animation: fvbPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes fvbPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.18);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

/* ── Video Modal ── */
.fvb-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fvb-modal--open {
    pointer-events: all;
    opacity: 1;
}

.fvb-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.fvb-modal-box {
    position: relative;
    z-index: 1;
    width: min(860px, 94vw);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #000;
}

.fvb-modal--open .fvb-modal-box {
    transform: scale(1);
}

.fvb-video {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    background: #000;
}

.fvb-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 0.9rem;
}

.fvb-close:hover {
    background: var(--st-red, #c0272d);
    border-color: var(--st-red, #c0272d);
}

@media (max-width: 575px) {
    .float-video-btn {
        bottom: 20px;
        left: 16px;
        padding: 11px 16px 11px 13px;
        font-size: 0.75rem;
    }
    .fvb-label {
        display: none;
    }
}
