/* ============================================================
   home-fixes.css — Protexive Security Services
   Styles for HOME PAGE only (index.html)
   Place at:  css/home-fixes.css
   Load LAST in <head>
   ============================================================ */

/* ─── 0. ROOT VARS (used inline on home page) ─────────────── */
:root {
    --pxv-navy:     #071c3c;
    --pxv-navy-2:   #0a1929;
    --pxv-red:      #dc2626;
    --red-vivid:    #dc2626;
    --pxv-blue:     #4a9eff;
    --pxv-blue-2:   #4da3ff;
    --pxv-bg-soft:  #f0f4ff;
    --pxv-bg-line:  #dce6ff;
    --pxv-text:     #4b5568;
    --pxv-muted:    #6b7280;
}

/* Force reveal animations to be visible (fixes hidden sections) */
.hero .reveal,
.highlights .reveal,
.certificates .reveal,
.pxv-services .pxv-reveal,
.extra-services .reveal,
.industries .reveal,
.why .reveal,
.faq-section .reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ─── 1.0. HERO SLIDER ─────────────────────────────────────── */
.hero {
    position: relative; width: 100%; height: 640px;
    overflow: hidden; background: var(--pxv-navy);
    box-sizing: border-box;
}
.hero *, .hero *::before, .hero *::after { box-sizing: border-box; }
.hero .slides-wrapper { position: relative; width: 100%; height: 100%; }

.hero .slide {
    position: absolute; inset: 0;
    display: none; opacity: 0;
    transition: opacity 0.6s ease;
}
.hero .slide.active { display: block; opacity: 1; }

.hero .slide-bg { position: absolute; inset: 0; z-index: 0; }
.hero .slide-1 .slide-bg {
    background: url('../images/banner4.jpg') center/cover no-repeat, linear-gradient(135deg, #071c3c 0%, #0a3d6e 100%);
}
.hero .slide-2 .slide-bg {
    background: url('../images/banner1.jpg') center/cover no-repeat, linear-gradient(135deg, #1a0f2e 0%, #3a1a5a 100%);
}
.hero .slide-3 .slide-bg {
    background: url('../images/banner3.jpg') center/cover no-repeat, linear-gradient(135deg, #2a0a0a 0%, #6a1a1a 100%);
}
.hero .slide-4 .slide-bg {
    background: url('../images/banner2.jpg') center/cover no-repeat, linear-gradient(135deg, #0a2a1a 0%, #1a4a3a 100%);
}
.hero .slide-bg::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(7,28,60,0.78) 0%, rgba(7,28,60,0.55) 60%, rgba(7,28,60,0.30) 100%),
        radial-gradient(circle at 25% 50%, rgba(220,38,38,0.18), transparent 55%);
    pointer-events: none;
}

.hero .slide-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 80px 32px; color: #fff;
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
}
.hero .slide-eyebrow {
    display: inline-flex; align-items: center; width: fit-content;
    padding: 6px 14px;
    background: rgba(220,38,38,0.18);
    border: 1px solid rgba(220,38,38,0.35);
    border-radius: 30px;
    color: #ff8888;
    font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 22px;
}
.hero .slide-headline {
    font-size: 52px; font-weight: 800;
    line-height: 1.1; color: #fff;
    margin: 0 0 22px; letter-spacing: -0.02em;
}
.hero .slide-headline .accent { color: var(--pxv-red); }
.hero .slide-headline .blue   { color: var(--pxv-blue); }

.hero .slide-desc {
    font-size: 16px; line-height: 1.7;
    color: rgba(255,255,255,0.78);
    margin: 0 0 30px; max-width: 600px;
}
.hero .slide-ctas {
    display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px;
}
.hero .btn-primary,
.hero .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 8px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none !important;
    transition: all 0.3s;
    clip-path: none !important;
    cursor: pointer;
}
.hero .btn-primary {
    background: var(--pxv-red); color: #fff !important;
    border: 2px solid var(--pxv-red);
}
.hero .btn-primary:hover { background: transparent; color: #fff !important; }
.hero .btn-outline {
    background: transparent; color: #fff !important;
    border: 2px solid rgba(255,255,255,0.55);
}
.hero .btn-outline:hover {
    background: #fff; color: var(--pxv-navy) !important; border-color: #fff;
}

.hero .slide-badges {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px;
}
.hero .badge-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 30px;
    color: #fff; font-size: 12px; font-weight: 600;
}
.hero .badge-pill i { color: var(--pxv-red); font-size: 12px; }

.hero .slide-services-grid {
    position: absolute; right: 40px; bottom: 80px; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; width: 340px;
}
.hero .svc-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px; padding: 18px;
    text-align: center; color: #fff;
    backdrop-filter: blur(10px);
}
.hero .svc-card i {
    font-size: 26px; color: var(--pxv-red);
    margin-bottom: 8px; display: block;
}
.hero .svc-card-name { font-size: 12px; font-weight: 600; color: #fff; }

.hero .hero-arrows {
    position: absolute; top: 50%; left: 0; right: 0;
    transform: translateY(-50%); z-index: 5;
    display: flex; justify-content: space-between;
    padding: 0 20px; pointer-events: none;
}
.hero .hero-arrow {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; pointer-events: auto;
    transition: background 0.3s, border-color 0.3s;
    font-size: 14px;
}
.hero .hero-arrow:hover { background: var(--pxv-red); border-color: var(--pxv-red); }

.hero .hero-nav {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 5;
    display: flex; gap: 10px;
}
.hero .hero-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none; cursor: pointer; padding: 0;
    transition: all 0.3s;
}
.hero .hero-dot.active { background: var(--pxv-red); transform: scale(1.4); }

.hero .slide-counter {
    position: absolute; bottom: 24px; right: 30px; z-index: 5;
    color: rgba(255,255,255,0.7);
    font-size: 14px; font-weight: 600;
}
.hero .slide-counter span {
    color: #fff; font-size: 24px; font-weight: 800; margin-right: 4px;
}
.hero .hero-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: rgba(255,255,255,0.1); z-index: 5;
}
.hero .hero-progress-bar { height: 100%; background: var(--pxv-red); width: 0%; }

/* ─── 1.2. ABOUT SECTION (Who We Are) ──────────────────────── */
.about-left {
    max-width: 740px;
}
.about-left .section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--pxv-red);
    margin-bottom: 14px;
}
.about-left .section-tag::before {
    content: ''; display: inline-block;
    width: 3px; height: 16px;
    background: var(--pxv-red); border-radius: 2px;
}
.about-left .section-title {
    font-size: 34px; font-weight: 800; line-height: 1.2;
    color: var(--pxv-navy); margin: 0 0 24px;
}
.about-left .section-title span { color: var(--pxv-red); }
.about-text-primary,
.about-text-secondary {
    font-size: 15px; line-height: 1.85;
    color: var(--pxv-text); margin: 0 0 16px;
}
.about-certs {
    display: flex; flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}
.cert-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 11px 20px;
    background: var(--pxv-navy);
    border: 1px solid var(--pxv-navy);
    border-radius: 8px;
    font-size: 13px; font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background .25s ease, transform .25s ease;
}
.cert-badge:hover {
    background: #0e2f5c;
    transform: translateY(-2px);
}
.cert-badge i {
    color: #fbbf24;
    font-size: 16px;
}
/* Standalone .btn-primary used outside .hero (about CTA) */
.about-left a.btn-primary,
.col_sm111 a.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--pxv-red); color: #fff !important;
    padding: 14px 26px; border-radius: 8px;
    font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid var(--pxv-red);
    margin: 8px 0;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.about-left a.btn-primary:hover,
.col_sm111 a.btn-primary:hover {
    background: transparent;
    color: var(--pxv-red) !important;
    transform: translateY(-2px);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.about-stat {
    background: var(--pxv-bg-soft);
    border: 1px solid var(--pxv-bg-line);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
}
.about-stat-num {
    font-size: 28px; font-weight: 800;
    color: var(--pxv-navy);
    line-height: 1;
    margin-bottom: 6px;
}
.about-stat-num sup {
    font-size: 16px;
    color: var(--pxv-red);
}
.about-stat-label {
    font-size: 12px; font-weight: 600;
    color: var(--pxv-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── 1.4. ABOUT IMAGE AREA + "No 1" OVERLAY BADGE ─────────── */
.col_sm11.res_wek {
    position: relative;
}
.col_sm11.res_wek > img.img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

/* The image wrapper must be position:relative so the badge anchors correctly */
.about-image-block {
    position: relative;
    display: block;
    width: 100%;
    line-height: 0;
}
.about-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.about-no1-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    transform: none;
    background: var(--pxv-red);
    color: #fff;
    padding: 16px 22px 14px;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(7,28,60,0.30);
    text-align: left;
    min-width: 200px;
    max-width: calc(100% - 40px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-no1-badge .no1-num {
    font-size: 30px; font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.about-no1-badge .no1-text {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.45;
    color: rgba(255,255,255,0.95);
    white-space: normal;
}

/* ─── 8.5. CTA STRIPE (Ready to Secure Your Business) ──────── */
.cta-stripe {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 60%, #991b1b 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.cta-stripe::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 36px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 36px);
    pointer-events: none;
}
.cta-stripe .cta-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: center;
    box-sizing: border-box;
}
.cta-stripe h2 {
    font-size: 34px; font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.cta-stripe p {
    font-size: 15px;
    color: rgba(255,255,255,0.92);
    margin: 0;
    line-height: 1.6;
}
.cta-stripe .cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cta-stripe .btn-white,
.cta-stripe .btn-outline-w {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.cta-stripe .btn-white {
    background: #fff;
    color: var(--pxv-red) !important;
}
.cta-stripe .btn-white:hover {
    background: var(--pxv-navy);
    color: #fff !important;
    transform: translateY(-2px);
}
.cta-stripe .btn-outline-w {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.85);
}
.cta-stripe .btn-outline-w:hover {
    background: #fff;
    color: var(--pxv-red) !important;
    transform: translateY(-2px);
}

/* ─── 1.3. SHARED HEADING HELPERS (home page versions) ────── */
.highlights .section-tag,
.certificates .section-tag,
.extra-services .section-tag,
.industries .section-tag,
.why .section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--pxv-red);
    margin-bottom: 14px;
}
.highlights .section-tag::before,
.certificates .section-tag::before,
.extra-services .section-tag::before,
.industries .section-tag::before,
.why .section-tag::before {
    content: ''; display: inline-block;
    width: 3px; height: 16px;
    background: var(--pxv-red); border-radius: 2px;
}

.highlights .section-title,
.certificates .section-title,
.extra-services .section-title,
.industries .section-title,
.why .section-title {
    font-size: 34px; font-weight: 800; line-height: 1.2;
    color: var(--pxv-navy); margin: 0 0 16px;
}
.certificates .section-title span,
.extra-services .section-title span,
.industries .section-title span {
    color: var(--pxv-red);
}
.certificates .section-title .red { color: var(--pxv-red); }

.highlights .section-sub,
.certificates .section-sub,
.extra-services .section-sub,
.industries .section-sub,
.why .section-sub {
    font-size: 15px; line-height: 1.8;
    color: var(--pxv-text);
    max-width: 740px;
    margin: 0;
}

/* container helper for sections that need it */
.highlights .container,
.certificates .container,
.pxv-services .pxv-container,
.extra-services .container,
.industries .container,
.why .container,
.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ─── 1.5. TRUST BAR (stats strip below hero) ──────────────── */
.trust-bar {
    background: var(--pxv-navy);
    padding: 36px 0;
}
.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    box-sizing: border-box;
}
.trust-item {
    display: flex; align-items: center; gap: 16px;
    padding: 8px 6px;
}
.trust-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: rgba(220,38,38,0.15);
    color: var(--pxv-red);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.trust-text { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
    font-size: 22px; font-weight: 800;
    color: #fff; line-height: 1;
}
.trust-num sup { font-size: 14px; color: var(--pxv-red); }
.trust-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.3;
}

/* ─── 2. HIGHLIGHTS SECTION ────────────────────────────────── */
.highlights {
    background: #f8fafc;
    padding: 80px 0;
}
.highlights-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 50px;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.highlight-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    padding: 36px 26px 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(7,28,60,0.10);
    border-color: var(--pxv-red);
}
.highlight-num {
    position: absolute;
    top: 18px; right: 22px;
    font-size: 32px; font-weight: 800;
    color: rgba(7,28,60,0.06);
    letter-spacing: -1px;
}
.highlight-icon {
    /* kept for backward compat but no longer used in HTML */
    display: none;
}
/* The proper icon container — a div wrapping the <i> */
.highlight-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(220,38,38,0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.highlight-icon-box i {
    font-size: 22px;
    color: var(--pxv-red);
    /* reset any inherited styles */
    line-height: 1;
    display: block;
}
.highlight-title {
    font-size: 17px; font-weight: 700;
    color: var(--pxv-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}
.highlight-desc {
    font-size: 14px; line-height: 1.65;
    color: var(--pxv-text);
    margin: 0;
}

/* ─── 3. CERTIFICATES SECTION ──────────────────────────────── */
.certificates {
    background: #fff;
    padding: 80px 0;
}
.certs-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.cert-card {
    background: var(--pxv-bg-soft);
    border: 1px solid var(--pxv-bg-line);
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(7,28,60,0.08);
}
.cert-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--pxv-red);
    box-shadow: 0 4px 12px rgba(7,28,60,0.06);
}
.cert-name {
    font-size: 16px; font-weight: 700;
    color: var(--pxv-navy);
    margin-bottom: 6px;
}
.cert-desc {
    font-size: 13px; color: var(--pxv-text);
    line-height: 1.5;
}

/* ─── 4. PXV SERVICES (sidebar tabs section) ───────────────── */
.pxv-services {
    background: #f8fafc;
    padding: 80px 0;
}
.pxv-services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.pxv-section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--pxv-red);
    margin-bottom: 14px;
}
.pxv-section-tag::before {
    content: ''; width: 3px; height: 16px;
    background: var(--pxv-red); border-radius: 2px;
}
.pxv-section-title {
    font-size: 34px; font-weight: 800; line-height: 1.2;
    color: var(--pxv-navy); margin: 0 0 16px;
}
.pxv-section-title span { color: var(--pxv-red); }
.pxv-section-sub {
    font-size: 15px; line-height: 1.8;
    color: var(--pxv-text);
    margin: 0;
}

.pxv-services-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}
.pxv-services-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    padding: 14px;
   
    overflow-y: auto;
}
.pxv-services-nav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px; font-weight: 600;
    color: var(--pxv-navy);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.pxv-services-nav-item i {
    width: 20px; text-align: center;
    color: var(--pxv-red);
    font-size: 15px;
}
.pxv-services-nav-item:hover {
    background: var(--pxv-bg-soft);
}
.pxv-services-nav-item.is-active {
    background: var(--pxv-navy);
    color: #fff;
}
.pxv-services-nav-item.is-active i { color: var(--pxv-red); }

.pxv-services-display {
    display: none;
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    overflow: hidden;
}
.pxv-services-display.is-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.pxv-svc-detail-img {
    min-height: 380px;
    width: 100%;
}
.pxv-svc-detail-content {
    padding: 36px 32px;
}
.pxv-svc-detail-tag {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--pxv-red);
    margin-bottom: 10px;
}
.pxv-svc-detail-title {
    font-size: 26px; font-weight: 800;
    color: var(--pxv-navy);
    margin: 0 0 14px;
    line-height: 1.25;
}
.pxv-svc-detail-desc {
    font-size: 14.5px; line-height: 1.75;
    color: var(--pxv-text);
    margin-bottom: 20px;
}
.pxv-svc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.pxv-svc-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px;
    color: var(--pxv-navy);
}
.pxv-svc-features li i {
    color: #10b981;
    font-size: 13px;
}
.pxv-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--pxv-red);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.pxv-btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* ─── 5. EXTRA SERVICES (Facility + Manpower) ──────────────── */
.extra-services {
    background: #fff;
    padding: 80px 0;
}
.extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}
.extra-card {
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.extra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(7,28,60,0.10);
}
.extra-card-top {
    padding: 28px 30px 24px;
    background: linear-gradient(135deg, var(--pxv-navy) 0%, #0e2f5c 100%);
    color: #fff;
}
.extra-card.extra-manpower .extra-card-top {
    background: linear-gradient(135deg, #1a2942 0%, #2a3f6a 100%);
}
.extra-card-icon {
    width: 54px; height: 54px;
    background: rgba(220,38,38,0.18);
    color: #ff9aa2;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}
.extra-card-title {
    font-size: 22px; font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.25;
}
.extra-card-subtitle {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
}
.extra-card-body {
    padding: 26px 30px 30px;
}
.extra-card-desc {
    font-size: 14.5px; line-height: 1.75;
    color: var(--pxv-text);
    margin: 0 0 20px;
}
.extra-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.extra-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 13.5px; font-weight: 600;
    color: var(--pxv-navy);
    padding: 10px 14px;
    background: var(--pxv-bg-soft);
    border: 1px solid var(--pxv-bg-line);
    border-radius: 10px;
}
.extra-feature i {
    color: var(--pxv-red);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* ─── 6. INDUSTRIES ────────────────────────────────────────── */
section.industries,
section.industries#industries {
    background: var(--pxv-navy) !important;
    padding: 80px 0 !important;
    color: #fff;
}
section.industries .container {
    background: transparent;
}
.industries .industries-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}
.industries .section-tag {
    color: #ff6b6b !important;
}
.industries .section-tag::before {
    background: #ff6b6b !important;
}
.industries .section-title {
    color: #fff !important;
}
.industries .section-title span {
    color: var(--pxv-blue-2) !important;
}
.industries .section-sub {
    color: rgba(255,255,255,0.70) !important;
    margin: 0 auto !important;
}
.industries .industries-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 18px !important;
}
.industries .industry-card {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 12px !important;
    padding: 28px 16px !important;
    text-align: center !important;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 130px;
}
.industries .industry-card:hover {
    transform: translateY(-4px);
    background: rgba(220,38,38,0.12) !important;
    border-color: var(--pxv-red) !important;
}
.industries .industry-icon {
    font-size: 32px !important;
    color: var(--pxv-red) !important;
    margin-bottom: 12px !important;
    display: block !important;
}
.industries .industry-name {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1.3;
}

/* ─── 7. WHY CHOOSE US ─────────────────────────────────────── */
.why {
    background: #f8fafc;
    padding: 80px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}
.why-left .section-title {
    margin-bottom: 18px;
}
.why-points {
    display: flex; flex-direction: column;
    gap: 22px;
    margin-top: 32px;
}
.why-point {
    display: flex; gap: 18px;
    align-items: flex-start;
}
.why-point-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: rgba(220,38,38,0.10);
    color: var(--pxv-red);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.why-point-title {
    font-size: 17px; font-weight: 700;
    color: var(--pxv-navy);
    margin-bottom: 6px;
}
.why-point-desc {
    font-size: 14.5px; line-height: 1.7;
    color: var(--pxv-text);
}
.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.why-fact {
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.why-fact:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(7,28,60,0.08);
}
.why-fact-num {
    font-size: 36px; font-weight: 800;
    color: var(--pxv-red);
    line-height: 1;
    margin-bottom: 10px;
}
.why-fact-num sup {
    font-size: 20px;
    color: var(--pxv-blue);
}
.why-fact-label {
    font-size: 12px; font-weight: 600;
    color: var(--pxv-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── 8. FAQ SECTION ───────────────────────────────────────── */
.faq-section {
    background: #fff;
    padding: 80px 0;
}
.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.faq-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--pxv-red);
    margin-bottom: 14px;
}
.faq-tag::before {
    content: ''; width: 3px; height: 16px;
    background: var(--pxv-red); border-radius: 2px;
}
.faq-title {
    font-size: 34px; font-weight: 800; line-height: 1.2;
    color: var(--pxv-navy); margin: 0;
}
.faq-title span { color: var(--pxv-red); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 36px;
    align-items: start;
}
.faq-contact-box {
    background: linear-gradient(135deg, var(--pxv-navy) 0%, #0e2f5c 100%);
    border-radius: 16px;
    padding: 32px 28px;
    color: #fff;
}
.faq-contact-text {
    font-size: 15px; line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin: 0 0 24px;
}
.faq-contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 22px 20px;
}
.faq-contact-card h3 {
    font-size: 14px; font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.faq-contact-card ul {
    list-style: none; padding: 0;
    margin: 0 0 20px;
    display: flex; flex-direction: column; gap: 12px;
}
.faq-contact-card li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}
.faq-contact-card li i {
    width: 18px;
    text-align: center;
    color: var(--pxv-red);
    font-size: 14px;
}
.faq-whatsapp-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366;
    color: #fff !important;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.faq-whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}
.faq-accordion {
    display: flex; flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
    border-color: var(--pxv-red);
    box-shadow: 0 6px 18px rgba(7,28,60,0.06);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-size: 15.5px; font-weight: 700;
    color: var(--pxv-navy);
    position: relative;
    padding-right: 52px;
    transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--pxv-red);
    font-size: 22px;
    font-weight: 400;
    transition: transform .2s ease;
}
.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}
.faq-item summary:hover { color: var(--pxv-red); }
.faq-item p {
    padding: 0 22px 20px;
    margin: 0;
    font-size: 14.5px; line-height: 1.75;
    color: var(--pxv-text);
}

/* ─── 9. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
    .highlights-grid { grid-template-columns: repeat(3, 1fr); }
    .industries .industries-grid { grid-template-columns: repeat(4, 1fr) !important; }
    .certs-row       { grid-template-columns: repeat(3, 1fr); }
    .pxv-services-layout { grid-template-columns: 260px 1fr; }
    .hero .slide-services-grid { width: 280px; }
    .cta-stripe h2 { font-size: 28px; }
}

@media (max-width: 992px) {
    .hero { height: auto; min-height: 580px; }
    .hero .slide-headline { font-size: 40px; }
    .hero .slide-services-grid {
        position: static; width: 100%; margin: 30px 0 0;
    }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .cta-stripe .cta-inner { grid-template-columns: 1fr; text-align: center; }
    .cta-stripe .cta-buttons { justify-content: center; }
}

@media (max-width: 900px) {
    .highlights, .certificates, .pxv-services,
    .extra-services, .industries, .why, .faq-section { padding: 60px 0; }

    .hero .slide-content { padding: 50px 20px; }
    .hero .slide-headline { font-size: 32px; }
    .hero .hero-arrow { width: 38px; height: 38px; }

    .trust-container { grid-template-columns: repeat(2, 1fr); }

    .highlights-intro { grid-template-columns: 1fr; gap: 16px; align-items: start; }
    .highlights-grid  { grid-template-columns: repeat(2, 1fr); }
    .certs-row        { grid-template-columns: repeat(2, 1fr); }
    .industries .industries-grid  { grid-template-columns: repeat(3, 1fr) !important; }
    .extra-grid       { grid-template-columns: 1fr; }
    .why-grid         { grid-template-columns: 1fr; gap: 36px; }
    .faq-grid         { grid-template-columns: 1fr; gap: 24px; }
    .cta-stripe h2    { font-size: 24px; }
    .about-no1-badge  { bottom: 16px; padding: 14px 20px 12px; min-width: 180px; }
    .about-no1-badge .no1-num { font-size: 26px; }

    .pxv-services-layout { grid-template-columns: 1fr; }
    .pxv-services-nav {
        flex-direction: row;
        flex-wrap: wrap;
        max-height: none;
        overflow-x: auto;
    }
    .pxv-services-nav-item { flex: 1 0 auto; }
    .pxv-services-display.is-active { grid-template-columns: 1fr; }
    .pxv-svc-detail-img { min-height: 240px; }

    .highlights .section-title,
    .certificates .section-title,
    .extra-services .section-title,
    .industries .section-title,
    .why .section-title,
    .pxv-section-title,
    .faq-title { font-size: 26px; }
}

@media (max-width: 560px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .certs-row       { grid-template-columns: 1fr 1fr; }
    .industries .industries-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .why-right       { grid-template-columns: 1fr 1fr; }
    .extra-features-grid { grid-template-columns: 1fr; }
    .pxv-svc-detail-content { padding: 24px 20px; }
    .trust-container { grid-template-columns: 1fr; gap: 14px; }
    .about-stats { grid-template-columns: 1fr; }
    .hero .slide-headline { font-size: 28px; }
    .cta-stripe { padding: 44px 0; }
    .cta-stripe h2 { font-size: 22px; }
    .cta-stripe .btn-white,
    .cta-stripe .btn-outline-w { width: 100%; justify-content: center; }
}