﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

/* =========================================================
   Integral Secure Solutions Pvt. Ltd - Polished Stylesheet
   Cleaned, consolidated, responsive, and production-ready.
   Existing class names are preserved for compatibility.
   ========================================================= */

:root {
    --blue: #0b3a75;
    --blue-600: #2563eb;
    --blue-soft: #eaf2ff;
    --black: #0b0f16;
    --dark: #070b12;
    --navy: #0f172a;
    --slate: #1e293b;
    --red: #B71C1C;
    --green: #25d366;
    --light: #f5f7fa;
    --gray: #5f6b7a;
    --muted: #666;
    --border: #e7ebf2;
    --white: #ffffff;
    --radius: 18px;
    --radius-lg: 24px;
    --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 35px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 18px 45px rgba(10, 30, 60, 0.13);
    --container: 1180px;
    --transition: 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 0 !important; /* prevent Bootstrap fixed-top padding */
    font-family: 'Plus Jakarta Sans', Inter, Arial, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

main {
    margin: 0;
    padding: 0;
    display: block;
}

h1 {
    font-size: 50px !important;
}

section {
    padding: 3% 0;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--blue-600);
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), 92%);
    margin-inline: auto;
}


/* Header */
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 0;
    box-shadow: none;
    /* Override Bootstrap .fixed-top — sticky keeps header in flow so content starts after it */
    position: sticky !important;
    top: 0 !important;
}
#header .logo {
    /*position: absolute;*/
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    top: 11px;
    width: 100%;
    left: -10px;
    z-index: 10;
}
#header .logo a {
    color: #111;
}
#header .logo a span {
    color: #f3702f;
}
#header .logo img {
    max-height: 160px;
    max-width: 80% !important;
}
#header {
    overflow: visible !important;
}

/* Top bar */
.top_bar {
    float: left;
    width: 100%;
    background-color: #B71C1C;
    padding: 5px 0;
}
.top_bar_content {
    width: 100%;
}
.contact_no {
    float: left;
    color: #fff;
    font-size: 14px;
    line-height: 26px;
}
.payroll_comp {
    float: left;
    background: #000;
    text-align: center;
    color: #0ed50e;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    border-radius: 50px;
    padding: 1px 21px;
    width: 100%;
    height: 25px;
}

/* Header social links */
.header-social-links {
    float: right;
    padding-left: 0;
    margin-right: 0;
}
.header-social-links a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 26px;
    margin: 0;
    padding: 0 5px;
    font-size: 21px;
}
.header-social-links a:hover {
    color: #000;
}

/* Top bar CTA button */
.topbar-cta-btn {
    display: inline-block;
    background: rgb(245, 180, 0);
    color: #111 !important;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s;
}
.topbar-cta-btn:hover {
    background: rgb(220, 160, 0);
    color: #111 !important;
    text-decoration: none;
}
@media (max-width: 991px) {
    .contact_no {
        font-size: 12px;
    }
    .topbar-cta-btn {
        font-size: 11px;
        padding: 4px 10px;
    }
}
@media (max-width: 575px) {
    .contact_no {
        font-size: 11px;
    }
    .topbar-cta-btn {
        font-size: 10px;
        padding: 3px 8px;
        white-space: nowrap;
    }
}

/* Download brochure button */
.download_brochure {
    border-radius: 50px !important;
    font-size: 12px;
    background-color: #B71C1C ;
    border-color: #B71C1C ;
    color: #fff !important;
    padding: 7px 14px !important;
    white-space: nowrap;
    line-height: 1.4;
    display: inline-block;
    min-height: auto !important;
    font-weight: 600;
    text-decoration: none;
}
.download_brochure:hover {
    background-color: #9b1515;
    color: #fff;
    text-decoration: none;
}

/* Call Now button */
.call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 50px !important;
    font-size: 12px;
    background-color: #0b3a75;
    border: none;
    color: #fff !important;
    padding: 7px 14px !important;
    white-space: nowrap;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    min-height: auto !important;
    transition: background 0.3s;
}
.call-now-btn:hover {
    background-color: #082d5c;
    color: #fff !important;
    text-decoration: none;
}
.call-now-btn i {
    font-size: 13px;
}

/* Action buttons: hidden on mobile/tablet, flex on desktop (matches navbar-expand-xl) */
.mob-hide {
    display: none !important;
}
@media (min-width: 1200px) {
    .mob-hide {
        display: flex !important;
    }
}

/* Single-row header layout */
.header-single-row {
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 8px 0;
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.10);*/
}
.header-logo-wrap {
    position: relative;
    flex-shrink: 0;
    width: 25%;
    max-width: 260px;
    min-width: 180px;
    align-self: stretch;
}
.header-action-btns {
    flex-shrink: 0;
    margin-left: 12px;
}
.header-single-row .navbar {
    min-width: 0;
}
/* Tablet & mobile: reset logo to normal flow, shrink size */
@media (max-width: 1199px) {
    .header-logo-wrap {
        width: auto;
        min-width: 0;
        max-width: 200px;
        flex-shrink: 1;
        align-self: center;
    }
    #header .logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: auto;
    }
    #header .logo img {
        max-height: 80px;
    }
    .header-single-row {
        padding: 8px 15px;
        min-height: 60px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}
@media (max-width: 575px) {
    .header-logo-wrap {
        max-width: 190px;
    }
    #header .logo img {
        max-height: 80px;
    }
    .header-single-row {
        padding: 6px 10px;
        min-height: 50px;
    }
}

/* Navbar overrides */
.navbar {
    padding: 0;
}
.navbar-nav .nav-link {
    color: #111;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    padding: 22px 38px;
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #B71C1C ;
}
.navbar-nav .dropdown-menu {
    border: none;
    border-top: 2px solid #B71C1C ;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-radius: 0;
    padding: 8px 0;
    margin-top: -2px;
    left: 0 !important;
    right: auto !important;
}
/* Hover-triggered dropdown on desktop */
@media (min-width: 1200px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.8rem;
        padding-left: 0.8rem;
    }
}
.navbar-nav .dropdown-item {
    font-size: 13px;
    font-weight: 500;
    color: #111;
    padding: 9px 18px;
    transition: background 0.2s, color 0.2s;
}
.navbar-nav .dropdown-item:hover {
    background: #B71C1C ;
    color: #fff !important;
}
.navbar-toggler {
    border-color: #B71C1C ;
    background-color: #ffffff;
    padding: 6px 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(196, 18, 48, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.drawer-close-btn {
    display: none; /* shown only inside .drawer-header at mobile */
    background: none;
    border: none;
    font-size: 28px;
    color: #111;
    cursor: pointer;
    padding: 4px 10px;
    line-height: 1;
}
/* drawer-header is only rendered on mobile (via CSS visibility trick), hide on desktop */
.drawer-header {
    display: none;
}
.drawer-action-btns {
    display: none;
}
/* =============================================
   Mobile / Tablet nav drawer (< 1200px)
   ============================================= */
@media (max-width: 1199px) {
    /* Right-align hamburger */
    .navbar-toggler {
        margin-left: auto;
        padding: 6px 10px;
    }

    /* ---- Left-side sliding drawer ---- */
    .header-nav-drawer {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 290px;
        max-width: 85vw;
        height: 100vh !important;
        background: #fff;
        z-index: 998;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-right: 3px solid #B71C1C ;
        box-shadow: 4px 0 30px rgba(0,0,0,0.18);
        padding: 0;
    }
    .header-nav-drawer.open {
        transform: translateX(0);
    }

    /* Drawer top bar: close button right-aligned */
    .drawer-header {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        padding: 10px 14px;
        background: #B71C1C ;
        flex-shrink: 0;
    }
    .drawer-close-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.2);
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        font-size: 22px;
        color: #fff;
        cursor: pointer;
        line-height: 1;
        transition: background 0.2s;
        padding: 0;
    }
    .drawer-close-btn:hover {
        background: rgba(255,255,255,0.35);
    }

    /* Nav list inside drawer */
    .header-nav-drawer .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 8px 0;
        flex-grow: 1;
    }
    .navbar-nav .nav-link {
        padding: 12px 20px;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f0;
        color: #111;
    }
    .navbar-nav > .nav-item:last-child > .nav-link {
        border-bottom: none;
    }

    /* Mobile dropdown: static in-flow + indented */
    .navbar-nav .dropdown-menu {
        border-top: none;
        box-shadow: none;
        padding-left: 12px;
        margin-top: 0;
        position: static !important;
        float: none;
        background: #f8f8f8;
    }
    /* Hover shows dropdown in drawer; touch = first tap hover, second tap = click/navigate */
    .header-nav-drawer .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
    /* Bootstrap click toggle also works */
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }

    /* Download Brochure + Call Now at drawer bottom */
    .drawer-action-btns {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        padding: 16px 18px 24px;
        border-top: 1px solid #f0f0f0;
        flex-shrink: 0;
    }
    .drawer-action-btns .download_brochure,
    .drawer-action-btns .call-now-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
        padding: 10px 16px !important;
        border-radius: 6px !important;
    }
    .drawer-action-btns .call-now-btn {
        border-radius: 50px !important;
    }
}

/* Desktop (≥992px): center all top bar content */
@media (min-width: 992px) {
    .topbar-phone .contact_no,
    .topbar-email .contact_no {
        float: none;
        text-align: center;
    }
    .topbar-social .header-social-links {
        float: none;
        text-align: center;
    }
    .topbar-cta {
        text-align: center;
    }
}

/* Tablet (768-991px): row1 = Phone(left)+CTA(right), row2 = Email(left)+Social(right) */
@media (min-width: 768px) and (max-width: 991px) {
    /* reorder: Phone 0 (default), CTA 1, Email 2, Social 3 */
    .topbar-cta    { order: 1; }
    .topbar-email  { order: 2; }
    .topbar-social { order: 3; }

    /* Row gap */
    .topbar-phone,
    .topbar-cta   { padding-bottom: 4px; }
    .topbar-email,
    .topbar-social { padding-top: 4px; }

    /* Use flex inside each col to control left/right alignment */
    .topbar-phone {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .topbar-cta {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .topbar-email {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .topbar-social {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    /* Remove floats — flex handles alignment */
    .topbar-phone .contact_no,
    .topbar-email .contact_no {
        float: none;
    }
    .topbar-social .header-social-links {
        float: none;
    }
}

/* Mobile only (<768px): stacked rows, centered */
@media (max-width: 767px) {
    .topbar-row .contact_no {
        float: none;
        display: block;
        text-align: center;
    }
    .topbar-social .header-social-links {
        float: none;
        display: block;
        text-align: center;
    }
    .topbar-cta {
        text-align: center;
    }
    .topbar-phone,
    .topbar-email,
    .topbar-social,
    .topbar-cta {
        padding-top: 3px;
        padding-bottom: 3px;
    }
    .header-social-links a {
        font-size: 15px;
        padding: 0 3px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #B71C1C;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    text-decoration: none;
}
.btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(183,28,28,0.22);
    text-decoration: none;
}
.btn.secondary {
    background: #0b3a75;
}
.btn.secondary:hover {
    box-shadow: 0 12px 26px rgba(11,58,117,0.24);
}
.btn.dark {
    background: #0b0f16;
}
.btn.small {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 14px;
}
.btn.large {
    min-height: 54px;
    padding: 16px 32px;
    font-size: 18px;
}
.full-btn {
    width: 100%;
}

/* Backdrop overlay (mobile menu) — above content, below fixed header */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 990;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.menu-overlay.open {
    display: block;
    opacity: 1;
}

/* Global hero styles */
.hero,
.hero-section,
.page-hero,
.about-hero,
.services-hero,
.contact-hero,
.clients-hero,
.careers-hero,
.blog-hero {
    color: var(--white);
    background-color: var(--black);
}

.hero {
    display: flex;
    align-items: center;
    min-height: 680px;
    background: linear-gradient(110deg, rgba(11, 15, 22, 0.9), rgba(11, 58, 117, 0.5)), url('../images/security-hero.jpg') center/cover no-repeat;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg-slider,
.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-slider {
    z-index: 0;
}

.hero-bg {
    background-position: center top;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

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

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(4, 12, 35, 0.88), rgba(4, 12, 35, 0.65), rgba(4, 12, 35, 0.25));
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 850px;
}

.hero-section h1,
.hero h1,
.page-hero h1,
.about-hero h1,
.services-hero h1,
.contact-hero h1,
.clients-hero h1,
.careers-hero h1,
.blog-hero h1 {
    color: var(--white);
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.1;
    margin: 15px 0 25px;
    font-family: 'Plus Jakarta Sans', Inter, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

.hero-section p,
.hero p,
.about-hero p,
.services-hero p,
.contact-hero p,
.clients-hero p,
.careers-hero p,
.blog-hero p {
    max-width: 720px;
    color: #e6eef8;
    font-size: 20px;
    line-height: 1.8;
}

.eyebrow,
.hero-badge,
.hero-tag,
.blog-tag {
    display: inline-block;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
}

.eyebrow {
    color: #ffdadb;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    font-weight: 900;
}

.hero-badge,
.hero-tag {
    margin-bottom: 20px;
    padding: 8px 18px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(5px);
}

.hero-actions,
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.page-hero,
.about-hero,
.services-hero,
.contact-hero,
.clients-hero,
.careers-hero,
.blog-hero {
    /*padding: 60px 0 40px;*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about,
.about-hero {
    background-image: linear-gradient(110deg, rgba(11, 15, 22, 0.84), rgba(11, 58, 117, 0.35)), url('../images/about.jpg');
}

.contact,
.contact-hero {
    background-image: linear-gradient(110deg, rgba(11, 15, 22, 0.84), rgba(11, 58, 117, 0.35)), url('../images/contact.jpg');
}

.services,
.services-hero {
    background-image: linear-gradient(110deg, rgba(11, 15, 22, 0.84), rgba(11, 58, 117, 0.35)), url('../images/services.jpg');
}

.clients,
.clients-hero {
    background-position: top center;
    background-image: linear-gradient(110deg, rgba(11, 15, 22, 0.84), rgba(11, 58, 117, 0.35)), url('../images/clients.jpg');
}

.careers,
.careers-hero {
    background-position: top center;
    background-image: linear-gradient(110deg, rgba(11, 15, 22, 0.84), rgba(11, 58, 117, 0.35)), url('../images/carrers-back-im.jpg');
}

.blog,
.blog-hero {
    background-image: linear-gradient(110deg, rgba(11, 15, 22, 0.84), rgba(11, 58, 117, 0.35)), url('../images/blog.jpg');
}

/* Sections */
.section {
    padding: 3% 0;
}

.section.light {
    background: var(--light);
}

.section-title {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-title.left {
    margin-inline: 0;
    text-align: left;
}

.section-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 30px;
    color: #111;
    background: #e0ecff;
    font-size: 14px;
    font-weight: 700;
}

.section-title h2,
.about-content h2,
.cta-content h2 {
    margin: 0 0 18px;
    color: #111;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
}

.section-title p,
.about-content p,
.service-content p,
.why-card p,
.industry-card p,
.testimonial-card p,
.info-card p,
.info-card a,
.form-header p,
.apply-header p,
.benefit-card p,
.blog-content p {
    color: var(--muted);
    line-height: 1.8;
}

/* Grids */
.grid,
.about-grid,
.services-grid,
.why-grid,
.industry-grid,
.testimonial-grid,
.client-grid,
.blog-grid,
.stats-grid,
.mv-grid,
.standards-grid,
.benefits-grid,
.info-grid {
    display: grid;
    gap: 30px;
}

.grid-2,
.mv-grid {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3,
.services-grid,
.testimonial-grid,
.blog-grid,
.standards-grid,
.stats-grid {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4,
.trust-grid,
.trust-strip,
.industry-grid,
.client-grid,
.why-grid,
.benefits-grid {
    grid-template-columns: repeat(4, 1fr);
}

.about-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-block {
    align-items: center;
}

/* Cards */
.card,
.service-card,
.why-card,
.industry-card,
.testimonial-card,
.client-card,
.job-card,
.apply-card,
.contact-form-card,
.mv-card,
.standard-card,
.benefit-card,
.stat-card,
.info-card,
.logo-item,
.blog-card {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.card h3,
.service-content h3,
.why-card h3,
.industry-card h3,
.testimonial-user h3,
.client-card h3,
.job-card h3,
.benefit-card h3,
.info-card h3 {
    margin-top: 0;
    color: #111;
}

.icon,
.service-icon,
.why-icon,
.info-icon,
.benefit-icon,
.standard-icon,
.user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    background: var(--blue-600);
}

.icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: #111;
    background: var(--blue-soft);
    font-size: 26px;
}

/* Trust */
.trust-section,
.trust-strip {
    position: relative;
    z-index: 2;
}

.trust-section {
    margin-top: -40px;
}

.trust-strip {
    gap: 16px;
    margin-top: -48px;
}

.trust-card {
    padding: 24px;
    border-radius: var(--radius);
    border-top: 4px solid var(--red);
    text-align: center;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

/* About */
.about-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

.about-image img,
.service-main-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.image-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    padding: 30px;
    border-radius: 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #10264a);
}

.stats-grid {
    gap: 20px;
    margin-top: 35px;
}

.stat-card,
.mv-card,
.standard-card,
.benefit-card {
    border-radius: var(--radius);
    padding: 35px;
    text-align: center;
}

.stat-card h3 {
    margin: 0;
    color: #111;
    font-size: 36px;
}

.mv-card {
    padding: 40px;
    text-align: left;
}

.mv-icon {
    margin-bottom: 20px;
    font-size: 42px;
}

.standard-card,
.benefit-card,
.why-card,
.client-card,
.testimonial-card,
.job-card,
.service-card,
.blog-card,
.industry-card,
.logo-item {
    transition: transform var(--transition), box-shadow var(--transition);
}

.standard-card:hover,
.benefit-card:hover,
.why-card:hover,
.client-card:hover,
.testimonial-card:hover,
.job-card:hover,
.service-card:hover,
.blog-card:hover,
.industry-card:hover,
.logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.09);
}

.standard-icon,
.benefit-icon,
.why-icon,
.user-avatar {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    font-size: 24px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
}

/* Services */
.service-card,
.blog-card {
    overflow: hidden;
    border-radius: 20px;
}

.service-image img,
.service-thumb img,
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image {
    overflow: hidden;
    min-height: 380px;
    position: relative;
}
.featured-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

.service-image img,
.service-thumb,
.blog-thumb {
    height: 240px;
}

.service-card:hover .service-thumb img,
.blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}

.service-thumb {
    position: relative;
    overflow: hidden;
}

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

.service-content,
.blog-content {
    padding: 30px;
}

.service-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    border-radius: 16px;
    font-size: 28px;
}

.service-link,
.blog-link {
    color: #111;
    font-weight: 700;
    transition: letter-spacing var(--transition);
}

.service-link:hover,
.blog-link:hover {
    color: var(--red);
    letter-spacing: 0.4px;
}

.service-layout,
.contact-layout,
.careers-layout {
    display: grid;
    gap: 40px;
    align-items: start;
}

.service-layout {
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}

.contact-layout {
    grid-template-columns: 1.3fr 1fr;
}

.careers-layout {
    grid-template-columns: 2fr 1fr;
}

.service-main-image {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 10px;
}

.enquiry-card,
.contact-form-card,
.apply-card {
    position: sticky;
    top: 100px;
}

/* Why / Industry */
.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-list div {
    padding: 18px;
    border-left: 4px solid var(--red);
    border-radius: 12px;
    background: var(--white);
    font-weight: 800;
}

.why-card,
.industry-card {
    padding: 35px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
}

/* Clients / Testimonials / Logos */
.client-card {
    padding: 35px 25px;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    text-align: center;
}

.client-card img {
    width: 100%;
    max-width: 180px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter var(--transition), opacity var(--transition);
}

.client-card:hover img,
.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo {
    display: grid;
    place-items: center;
    height: 86px;
    border: 1px dashed #cfd8e5;
    border-radius: 16px;
    color: #607089;
    background: var(--white);
    font-weight: 800;
}

.testimonial-card {
    position: relative;
    padding: 35px;
    border-radius: 20px;
}

.quote-icon {
    margin-bottom: 15px;
    color: #111;
    font-size: 52px;
    line-height: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user span {
    color: #777;
    font-size: 14px;
}

.logo-slider {
    position: relative;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    min-width: 220px;
    height: 120px;
    margin-right: 25px;
    border-radius: var(--radius);
}

.logo-item img {
    max-width: 160px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter var(--transition), opacity var(--transition);
}

@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Blog */
.featured-blog-section {
    /*padding: 80px 0 20px;*/
}

.featured-blog-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.featured-badge,
.blog-tag {
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 14px;
    color: #111;
    background: #f1f5f9;
}

.featured-content h2,
.blog-content h3 {
    line-height: 1.25;
}

.blog-section {
    /*padding: 70px 0;*/
}

.blog-section .blog-content {
    max-width: 900px;
    margin: auto;
    padding: 40px;
    border-radius: 14px;
    font-size: 17px;
    line-height: 1.9;
}

.blog-section .blog-content img {
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    margin-top: 35px;
    margin-bottom: 15px;
}

.blog-content ul,
.blog-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Contact / Forms */
.form {
    display: grid;
    gap: 15px;
}

.input,
textarea,
select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #dce3ed;
    border-radius: 12px;
    background: var(--white);
    color: var(--black);
    outline: none;
    transition: border var(--transition), box-shadow var(--transition);
}

.input:focus,
textarea:focus,
select:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.info-grid {
    gap: 20px;
    margin-bottom: 35px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: var(--radius);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    font-size: 26px;
}

.map-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.map {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 20px;
}

.contact-form-card,
.apply-card {
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-header,
.apply-header {
    margin-bottom: 30px;
}

.form-header h3,
.apply-header h3 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
}

/* Careers */
.job-card {
    margin-bottom: 25px;
    padding: 35px;
    border: 1px solid #f1f1f1;
    border-radius: var(--radius);
}

.job-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    color: #166534;
    background: #dcfce7;
    font-size: 13px;
    font-weight: 700;
}

.job-card h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
}

.job-description {
    color: var(--muted);
    line-height: 1.9;
}

.upload-label {
    display: block;
    margin-bottom: 10px;
    color: #444;
    font-weight: 700;
}

/* CTA */
.cta-section {
    padding: 0 0 90px;
}

.cta-band,
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 55px 60px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--black));
}

.cta-box {
    background: linear-gradient(135deg, var(--navy), var(--slate));
}

.cta-content h2,
.cta-box h2 {
    color: var(--white);
}

.cta-small {
    display: inline-block;
    margin-bottom: 15px;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 700;
}

.cta-content p,
.cta-box p {
    max-width: 700px;
    color: #dbe4ee;
    font-size: 18px;
    line-height: 1.8;
}

/* =============================================
   Footer â€” Dark Redesign (matches GISS style)
   ============================================= */

.footer {
    background: #07101e;
    color: #dbe4f0;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 40px;
}

/* Brand column */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 200px;
    height: auto;
    border-radius: 14px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.footer-brand-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.footer-brand-tag {
    font-size: 12px;
    color: #93a8c0;
    margin-top: 3px;
}

.footer-desc {
    color: #93a8c0;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 22px;
}

/* Contact rows */
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #121e30;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a9eff;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    font-size: 13px;
    color: #93a8c0;
    line-height: 1.6;
}

.footer-contact-text strong {
    color: #dbe4f0;
    display: block;
    font-size: 13px;
    margin-bottom: 1px;
}

/* Column headings */
.footer-col-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

/* Nav links */
.footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #93a8c0;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer a::before {
    content: "→";
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    margin-right: 6px;
}

.footer a:hover {
    color: #ffffff;
}

/* Gallery grid */
.footer-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.footer-gallery-thumb {
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.footer-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.footer-gallery-thumb:hover img {
    transform: scale(1.08);
}

.footer-gallery-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(183, 28, 28, 0.18);
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 10px;
}

.footer-gallery-thumb:hover::after {
    opacity: 1;
}

/* Social icons â€” large colored squares like the image */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 0;
    transition: transform var(--transition), opacity var(--transition);
}

.footer-social a::before {
    display: none;
}

.footer-social a:hover {
    transform: translateY(-3px);
    opacity: 0.88;
    background: inherit; /* keep original color on hover */
}

/* Individual platform colors */
.footer-social a.tw  { background: #1da1f2; }
.footer-social a.fb  { background: #1877f2; }
.footer-social a.ig  { background: #e1306c; }
.footer-social a.li  { background: #0a66c2; }
.footer-social a.yt  { background: #ff0000; }

/* Bottom bar */
.copyright {
    margin-top: 50px;
    padding: 18px 0;
    border-top: 1px solid #1c2635;
    color: #607089;
    font-size: 13px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright strong {
    color: #dbe4f0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #607089;
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links a::before {
    display: none;
}

.footer-bottom-links a:hover {
    color: #fff;
}

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

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

    .copyright {
        flex-direction: column;
        text-align: center;
    }
}

/* Floating WhatsApp */
.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp:hover {
    color: var(--white);
    transform: translateY(-2px);
}
@media (max-width: 767px) {
    .whatsapp {
        bottom: 82px;
    }
}

/* Admin */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.sidebar {
    padding: 28px;
    color: var(--white);
    background: #07101e;
}

.sidebar a {
    display: block;
    margin: 6px 0;
    padding: 12px;
    border-radius: 10px;
}

.sidebar a:hover {
    color: var(--white);
    background: #12213a;
}

.admin-main {
    padding: 28px;
    background: #f3f6fb;
}

.table {
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
    border-radius: 14px;
    background: var(--white);
}

.table th,
.table td {
    padding: 14px;
    border-bottom: 1px solid #edf1f6;
    text-align: left;
}

.notice,
.error {
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 12px;
}

.notice {
    color: #176333;
    background: #eaf7ef;
}

.error {
    color: #8d1717;
    background: #ffecec;
}

.empty-message {
    grid-column: 1 / -1;
    color: var(--muted);
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .nav {
        min-height: 60px;
        padding: 6px 0;
    }

    .brand {
        transform: translateY(18px);
    }

    .brand img {
        height: 85px;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--red);
        border-radius: 0;
        padding: 0 0 0 12px;
        margin-top: 8px;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-dropdown > a {
        justify-content: space-between;
        width: 100%;
    }

    .menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 4%;
        border-bottom: 1px solid #e8edf5;
        background: var(--white);
    }

    .menu.open {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero-layout,
    .about-grid,
    .service-layout,
    .contact-layout,
    .careers-layout,
    .featured-blog-card,
    .grid-2,
    .grid-3,
    .grid-4,
    .services-grid,
    .why-grid,
    .industry-grid,
    .testimonial-grid,
    .client-grid,
    .blog-grid,
    .trust-grid,
    .trust-strip,
    .footer-grid,
    .why-list,
    .stats-grid,
    .mv-grid,
    .standards-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .hero-section {
        min-height: auto;
        padding: 100px 0;
    }

    .page-hero,
    .about-hero,
    .services-hero,
    .contact-hero,
    .clients-hero,
    .careers-hero,
    .blog-hero {
        padding: 100px 0;
    }

    .hero h1,
    .page-hero h1,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .clients-hero h1,
    .careers-hero h1,
    .blog-hero h1 {
        font-size: 40px;
    }

    .hero p,
    .about-hero p,
    .services-hero p,
    .contact-hero p,
    .clients-hero p,
    .careers-hero p,
    .blog-hero p {
        font-size: 18px;
    }

 

    .section-title,
    .section-title.left {
        margin-bottom: 40px;
        text-align: left;
    }

    .cta-band,
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 25px;
        text-align: left;
    }

    .hero-actions,
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
    #hero .hero-btn-primary,
    #hero .hero-btn-secondary {
        width: auto;
    }

    .enquiry-card,
    .contact-form-card,
    .apply-card {
        position: relative;
        top: 0;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
    }

    .logo-item {
        width: 180px;
        min-width: 180px;
        height: 100px;
    }

    .logo-item img {
        max-width: 130px;
    }
}

@media (max-width: 575px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    
    .brand img {
        height: 81px;
    }

    .menu {
        top: 70px;
    }

    .hero h1,
    .page-hero h1,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .clients-hero h1,
    .careers-hero h1,
    .blog-hero h1 {
        font-size: 34px;
    }

    .section-title h2,
    .about-content h2,
    .cta-content h2,
    .featured-content h2 {
        font-size: 30px;
    }

    .card,
    .service-content,
    .blog-content,
    .contact-form-card,
    .apply-card,
    .job-card,
    .mv-card,
    .standard-card,
    .benefit-card,
    .info-card {
        padding: 24px;
    }

    .blog-section .blog-content,
    .featured-content {
        padding: 25px;
    }

    .map {
        height: 320px;
    }
}


a.btn.small {
    color: #fff;
}

.trust-section{
    position:relative;
    margin-top:-70px;
    z-index:5;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.trust-card{
    background:#fff;
    border-radius:22px;
    padding:35px 28px;
    text-align:center;
    box-shadow:0 15px 45px rgba(15,23,42,0.08);
    border:1px solid rgba(226,232,240,0.8);
    transition:all 0.35s ease;
}

.trust-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 55px rgba(15,23,42,0.14);
}

.trust-icon{
    width:72px;
    height:72px;
    margin:0 auto 22px;
    border-radius:18px;
    background:linear-gradient(135deg,#0B3A75,#2563eb);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:700;
}

.trust-card h3{
    font-size:22px;
    margin-bottom:14px;
    color:#0f172a;
}

.trust-card p{
    color:#64748b;
    line-height:1.8;
    margin:0;
    font-size:15px;
}



@media(max-width:991px){

    .trust-section{
        margin-top:0;
        padding-top:40px;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

}

/* Top Bar */
.iss-topbar {
  background: var(--red);
  color: #ffffff;
  font-size: 14px;
  padding: 9px 0;
}

.iss-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.iss-topbar-left,
.iss-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.iss-topbar a {
  color: #ffffff;
  text-decoration: none;
}

.topbar-btn {
  background: #f5b400;
  color: #061b33 !important;
  padding: 7px 16px;
  border-radius: 30px;
  font-weight: 700;
}

.topbar-brochure-btn {
  background: #1565c0;
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.topbar-brochure-btn:hover {
  background: #0d47a1;
}

@media (max-width: 768px) {
  .topbar-brochure-btn {
    padding: 5px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .topbar-brochure-btn .brochure-label {
    display: none;
  }
  .topbar-brochure-btn {
    padding: 5px 10px;
    gap: 0;
  }
}

/* After Hero Info Bar */
.iss-hero-info-bar {
  background: #ffffff;
  margin-top: -45px;
  position: relative;
  z-index: 5;
}

.iss-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.iss-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: #ffffff;
  border-right: 1px solid #e8edf3;
}

.iss-info-card:last-child {
  border-right: none;
}

.iss-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eef5ff;
  color: #0b4f9c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.iss-info-card h4 {
  margin: 0 0 5px;
  color: #061b33;
  font-size: 18px;
}

.iss-info-card p {
  margin: 0;
  color: #667085;
  font-size: 14px;
}

@media (max-width: 768px) {
  .iss-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .iss-info-grid {
    grid-template-columns: 1fr;
  }

  .iss-info-card {
    border-right: none;
    border-bottom: 1px solid #e8edf3;
  }

  .iss-hero-info-bar {
    margin-top: 0;
  }
}

/* ============================================================
   HOMEPAGE ADVANCED REDESIGN â€” hm- prefix
   Fonts: Plus Jakarta Sans (display) + Lato (body)
   Colors: --blue #0b3a75 | --red #d71920
   ============================================================ */

/* ── Hero stats strip ── */

.hm-hero-stats-strip {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    background: rgba(4, 16, 44, 0.93);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hm-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hm-hs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.hm-hs-item:last-child { border-right: none; }

.hm-hs-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    line-height: 1;
    color: #fff;
    display: inline;
}

.hm-hs-plus {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(18px, 2.2vw, 30px);
    font-weight: 800;
    color: var(--red);
    display: inline;
}

.hm-hs-label {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 5px;
}

/* â”€â”€ Info bar â”€â”€ */
.hm-info-card {
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hm-info-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}

.hm-info-card:hover::before { transform: scaleY(1); }
.hm-info-card:hover { background: #f5f9ff; }

.hm-info-icon {
    background: var(--blue) !important;
    color: #fff !important;
    transition: transform 0.35s ease, background 0.35s ease;
}

.hm-info-card:hover .hm-info-icon {
    transform: scale(1.1) rotate(-8deg);
    background: var(--red) !important;
}

/* â”€â”€ About section â”€â”€ */
.hm-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
}

.hm-about-tags span {
    padding: 7px 16px;
    background: #eef4ff;
    border-radius: 30px;
    color: #111;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #ccdcff;
}

.hm-about-img { position: relative; }

.hm-about-img::before {
    content: '';
    position: absolute;
    top: -14px; right: -14px;
    bottom: 14px; left: 14px;
    border: 2px solid rgba(11, 58, 117, 0.22);
    border-radius: var(--radius);
    z-index: 0;
    pointer-events: none;
}

.hm-about-img img { position: relative; z-index: 1; }

/* â”€â”€ Section title accent line â”€â”€ */
.hm-section-title::after {
    content: '';
    display: block;
    width: 54px;
    height: 4px;
    border-radius: 2px;
    background: var(--red);
    margin: 16px auto 0;
}

/* â”€â”€ Service card gradient bar â”€â”€ */
.hm-service-card { position: relative; }

.hm-service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hm-service-card:hover::after { transform: scaleX(1); }

/* â”€â”€ Why Choose Us â”€â”€ */
.hm-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hm-why-card {
    padding: 36px 28px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8edf5;
    border-bottom: 4px solid var(--blue);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-bottom-color 0.35s ease;
}

.hm-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11, 58, 117, 0.1);
    border-bottom-color: var(--red);
}

.hm-why-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: rgba(11, 58, 117, 0.1);
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hm-why-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
}

.hm-why-body p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* â”€â”€ Industries â”€â”€ */
.hm-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hm-industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 26px 14px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e4ecf5;
    text-align: center;
    cursor: default;
    transition: background 0.35s ease, border-color 0.35s ease,
                transform 0.35s ease, box-shadow 0.35s ease;
}

.hm-industry-card:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(11, 58, 117, 0.18);
}

.hm-ind-icon {
    font-size: 30px;
    line-height: 1;
    display: block;
    color: #111;
    transition: color 0.35s ease, transform 0.35s ease;
}

.hm-industry-card:hover .hm-ind-icon {
    color: #fff;
    transform: scale(1.12);
}

.hm-ind-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    transition: color 0.35s ease;
}

.hm-industry-card:hover .hm-ind-name { color: #fff; }

/* â”€â”€ Testimonials â”€â”€ */
.hm-testimonial-card { border-top: 3px solid var(--red) !important; }

.hm-stars {
    font-size: 15px;
    letter-spacing: 3px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.hm-testimonial-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #f0f3f8;
}

.hm-testimonial-footer h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 3px;
}

.hm-testimonial-footer span { color: #94a3b8; font-size: 13px; }

/* â”€â”€ CTA â”€â”€ */
.hm-cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue) 0%, #060f26 100%) !important;
}

.hm-cta-box::before {
    content: 'ðŸ›¡';
    position: absolute;
    right: -10px; bottom: -45px;
    font-size: 220px;
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* â”€â”€ Scroll reveal â”€â”€ */
@media (prefers-reduced-motion: no-preference) {
    .hm-why-card,
    .hm-industry-card,
    .hm-testimonial-card {
        opacity: 0;
        transform: translateY(22px);
    }

    .hm-why-card.hm-visible,
    .hm-industry-card.hm-visible,
    .hm-testimonial-card.hm-visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.55s ease, transform 0.55s ease;
    }
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 991px) {
    .hm-hero-stats { grid-template-columns: repeat(2, 1fr); }

    .hm-hs-item:nth-child(2) { border-right: none; }

    .hm-hs-item:nth-child(3),
    .hm-hs-item:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.1); }

    .hm-why-grid { grid-template-columns: repeat(2, 1fr); }

    .hm-industries-grid { grid-template-columns: repeat(2, 1fr); }

    .hm-about-img::before { display: none; }
}

@media (max-width: 575px) {
    .hm-hs-item { padding: 14px 10px; }
    .hm-hs-num { font-size: 24px; }
    .hm-hs-plus { font-size: 18px; }
    .hm-hs-label { font-size: 10px; }

    .hm-why-grid { grid-template-columns: 1fr; }

    .hm-industries-grid { grid-template-columns: repeat(2, 1fr); }

    .hm-why-num { font-size: 44px; }

    .hm-section-title::after { margin-top: 12px; }
}

/* ============================================================
   SPLIT FEATURE SECTION â€” hm-feat- prefix
   Layout: left image panel + right dark cards (3Ã—2 grid)
   Hover: bg image slides in with red overlay per card
   ============================================================ */

.hm-feat-section {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 560px;
    overflow: hidden;
	padding:0 !important;
}

.hm-feat-img-panel {
    position: relative;
    overflow: hidden;
}

.hm-feat-img-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(4, 14, 40, 0.62) 0%,
        rgba(11, 58, 117, 0.38) 60%,
        rgba(11, 58, 117, 0.18) 100%);
}

.hm-feat-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hm-feat-dark-panel {
    background: #07101e;
    padding: 56px 44px 56px 40px;
    display: flex;
    align-items: center;
}

.hm-feat-panel-inner { width: 100%; }

.hm-feat-heading { margin-bottom: 28px; }

.hm-feat-eyebrow {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.hm-feat-heading h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1.2;
}

.hm-feat-rule {
    width: 48px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

.hm-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Card base */
.hm-feat-card {
    position: relative;
    overflow: hidden;
    background: #0d1e38;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 28px 22px;
    cursor: default;
    transition: border-color 0.4s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.hm-feat-card:hover {
    border-color: rgba(183, 28, 28, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Sliding background image */
.hm-feat-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.55s ease, transform 0.6s ease;
    display: block;
}

/* Red faded overlay */
.hm-feat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        rgba(180, 10, 15, 0.86) 0%,
        rgba(90, 4, 7, 0.93) 100%
    );
    opacity: 0;
    transition: opacity 0.55s ease;
    z-index: 1;
}

.hm-feat-card:hover .hm-feat-bg {
    opacity: 1;
    transform: scale(1);
}

.hm-feat-card:hover::after { opacity: 1; }

.hm-feat-body {
    position: relative;
    z-index: 2;
}

.hm-feat-ico {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    color: var(--red);
    transition: transform 0.35s ease, color 0.35s ease;
}

.hm-feat-card:hover .hm-feat-ico {
    transform: scale(1.18);
    color: #fff;
}

.hm-feat-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.35;
}

.hm-feat-body p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin: 0;
    transition: color 0.35s ease;
}

.hm-feat-card:hover .hm-feat-body p { color: rgba(255, 255, 255, 0.95); }

/* Responsive */
@media (max-width: 991px) {
    .hm-feat-section { grid-template-columns: 1fr; }
    .hm-feat-img-panel { height: 260px; }
    .hm-feat-dark-panel { padding: 40px 28px; align-items: flex-start; }
    .hm-feat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hm-feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .hm-feat-dark-panel { padding: 28px 18px; }
    .hm-feat-card { padding: 18px 14px; }
    .hm-feat-heading h2 { font-size: 22px; }
}

@media (max-width: 380px) {
    .hm-feat-grid { grid-template-columns: 1fr; }
}

/* â”€â”€ CONTACTS BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#contacts_row {
    width: 100%;
    background-color: #001758;
    padding: 18px 0;
}

ul.contact_list_block {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.contact_list_block li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.33%;
    padding: 5px 20px;
}

ul.contact_list_block li img {
    width: 52px;
    height: 52px;
    border: 2px solid #ff9900;
    border-radius: 50%;
    padding: 9px;
    flex-shrink: 0;
    object-fit: contain;
}

ul.contact_list_block li h4 {
    font-size: 19px;
    line-height: 23px;
    margin-left: 14px;
    margin-bottom: 0;
    color: #ff9900;
    font-weight: 700;
}

ul.contact_list_block li h4 small {
    color: #ffffff;
    display: block;
    font-size: 14px;
    font-weight: 400;
}

/* â”€â”€ MARQUEE TICKER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.iss-marquee-bar {
    background-color: #000;
    display: block;
    width: 100%;
    line-height: 28px;
}

.iss-marquee-bar marquee { color: #fff; }

.iss-marquee-bar marquee a {
    color: #fff;
    text-decoration: none;
}

.iss-marquee-bar marquee a:hover { color: yellow; }

/* â”€â”€ Responsive: contacts bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
    ul.contact_list_block { flex-direction: column; }
    ul.contact_list_block li { width: 100%; justify-content: flex-start; padding: 6px 15px; }
    ul.contact_list_block li img { width: 36px; height: 36px; padding: 6px; }
    ul.contact_list_block li h4 { font-size: 15px; line-height: 18px; }
}

/* ── Bootstrap Carousel Hero ───────────────────────────────── */
#hero {
    width: 100%;
    height: min(56.25vw, 1080px); /* 16:9 ratio — shows full 1920×1080 image on desktop */
    min-height: 580px;
    background-color: #000;
    overflow: hidden;
    position: relative;
}

#hero .hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to left, rgba(0,0,0,0.82) 40%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.20) 100%);*/
    z-index: 1;
}

#hero .hero-text-block {
    position: absolute;
    top: 32%;
    left: 12%;
    z-index: 2;
    max-width: 600px;
    color: #fff;
    background: rgba(0,0,0,0.28);
    padding: 32px 36px 28px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
}

#hero .hero-badge,
#hero .hero-tagline {
    display: inline-block;
    background: rgba(196, 18, 48, 0.85);
    border: 1px solid rgba(255,255,255,0.30);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 22px;
    border-radius: 4px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

#hero .hero-heading {
    font-size: 54px; /* uniform across all slides */
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

#hero .hero-sub {
    font-size: 18px; /* uniform across all slides */
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    margin-bottom: 32px;
    max-width: 560px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

#hero .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

#hero .hero-btn-primary {
    background: #B71C1C ;
    border: 2px solid #B71C1C ;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 34px;
    border-radius: 50px;
    transition: 0.3s;
    letter-spacing: 0.3px;
}

#hero .hero-btn-primary:hover {
    background: #9b1515;
    border-color: #9b1515;
    color: #fff;
}

#hero .hero-btn-secondary {
    background: #0b3a75;
    border: 2px solid #0b3a75;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 34px;
    border-radius: 50px;
    transition: 0.3s;
    letter-spacing: 0.3px;
}

#hero .hero-btn-secondary:hover {
    background: #092d5c;
    border-color: #092d5c;
    color: #fff;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
}

#hero .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

#hero .carousel-inner .carousel-item { transition-property: opacity; }

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right { opacity: 0; }

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
    opacity: 1;
}

#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
    background-image: none;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 10px;
    transition: 0.3s;
    font-size: 28px;
    line-height: 1;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
}

#hero .carousel-control-prev-icon:hover,
#hero .carousel-control-next-icon:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: .6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #B71C1C ;
}

@media (max-width: 1200px) {
    #hero .hero-text-block { top: 28%; left: 8%; max-width: 540px; }
    #hero .hero-heading { font-size: 44px; }
    #hero .hero-sub { font-size: 17px; }
}

@media (max-width: 992px) {
    #hero { height: 75vh; min-height: 480px; }
    /*#hero .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%); }*/
    #hero .hero-text-block { top: 20%; left: 5%; right: 5%; max-width: 100%; }
    #hero .hero-heading { font-size: 38px; letter-spacing: -0.5px; }
    #hero .hero-badge, #hero .hero-tagline { font-size: 12px; padding: 6px 16px; margin-bottom: 14px; }
    #hero .hero-sub { font-size: 15px; max-width: 100%; margin-bottom: 24px; }
    #hero .hero-btn-primary, #hero .hero-btn-secondary { font-size: 14px; padding: 11px 26px; }
}

@media (max-width: 768px) {
    #hero { height: 70vh; min-height: 420px; }
    /*#hero .hero-overlay { background: rgba(0,0,0,0.62); }*/
    #hero .hero-text-block {
        top: 50%; transform: translateY(-50%);
        left: 4%; right: 4%; max-width: 100%;
        background: none;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
    }
    #hero .hero-heading { font-size: 28px; letter-spacing: -0.3px; margin-bottom: 12px; text-shadow: none; }
    #hero .hero-badge, #hero .hero-tagline { font-size: 11px; padding: 5px 14px; margin-bottom: 12px; }
    #hero .hero-sub { font-size: 13px; line-height: 1.6; margin-bottom: 20px; max-width: 100%; text-shadow: none; }
    #hero .hero-btns { gap: 8px; flex-direction: row; flex-wrap: nowrap; }
    #hero .hero-btn-primary, #hero .hero-btn-secondary { font-size: 12px; padding: 9px 16px; white-space: nowrap; }
}

@media (max-width: 480px) {
    #hero { height: 65vh; min-height: 380px; }
    #hero .hero-text-block { top: 50%; transform: translateY(-50%); background: none; backdrop-filter: none; padding: 0; border-radius: 0; }
    #hero .hero-heading { font-size: 24px; text-shadow: none; }
    #hero .hero-sub { font-size: 12px; margin-bottom: 16px; text-shadow: none; }
    #hero .hero-btns { flex-wrap: nowrap; gap: 6px; }
    #hero .hero-btn-primary, #hero .hero-btn-secondary { font-size: 11px; padding: 8px 12px; white-space: nowrap; }
}

/* â”€â”€ COUNTS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â”€â”€ COUNTS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.iss-counts-section {
    position: relative;
    background-image: url('../images/We-serve-PAN-India.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    /*padding: 70px 0 55px;*/
    min-height: 300px;
}

.iss-counts-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 4, 0, 0.87);
    z-index: 0;
}

.iss-counts-inner {
    position: relative;
    z-index: 1;
}

.iss-counts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    margin-bottom: 0;
}

.iss-count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.iss-count-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    line-height: 1;
    margin-bottom: 12px;
}

.iss-counter {
    font-size: clamp(52px, 6.5vw, 96px);
    font-weight: 800;
    color: #ff9900;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.iss-plus {
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 700;
    color: #ff9900;
    line-height: 1;
}

.iss-count-label {
    color: #ffffff;
    font-size: 20px !important;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.iss-pan-india {
    text-align: center;
    font-size: 36px !important;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    margin-bottom: 32px;
}

/* Tablet (â‰¤992px) */
@media (max-width: 992px) {
    .iss-counts-section { padding: 55px 0 45px; }
    .iss-counts-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; margin-bottom: 32px; }
    .iss-counter { font-size: clamp(48px, 9vw, 72px); }
    .iss-plus { font-size: clamp(24px, 5vw, 36px); }
    .iss-count-label { font-size: 20px !important; }
}

/* Mobile (â‰¤576px) */
@media (max-width: 576px) {
    .iss-counts-section { padding: 40px 0 35px; }
    .iss-counts-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; margin-bottom: 26px; }
    .iss-counter { font-size: clamp(38px, 10vw, 56px); }
    .iss-plus { font-size: clamp(20px, 5vw, 28px); }
    .iss-count-label { font-size: 15px !important; }
    .iss-pan-india { font-size: 36px !important; }
}

/* ── Sticky Enquiry Widget ──────────────────────────────────── */
#mrova-feedback {
    width: 310px;
    position: fixed;
    right: -310px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #ddd;
    padding: 14px 16px 10px;
    background: #fff;
    z-index: 9999;
    box-shadow: -3px 0 18px rgba(0,0,0,0.15);
    border-radius: 6px 0 0 6px;
}

#mrova-img-control {
    cursor: pointer;
    position: absolute;
    left: -31px;
    top: 50%;
    transform: translateY(-50%);
    width: 31px;
    height: 197px;
    background: transparent url('../images/book-enquiry_slide_but.png') no-repeat center center;
    background-size: cover;
    z-index: 99;
    overflow: hidden;
}

#mrova-img-control::after {
    content: "";
    display: block;
    top: 0;
    width: 100%;
    height: 50px;
    position: absolute;
    z-index: 1;
    animation: mrova-slide 2s infinite;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0, rgba(255,255,255,.8) 50%, rgba(128,186,232,0) 99%, rgba(125,185,232,0) 100%);
}

@keyframes mrova-slide {
    0%   { transform: translateY(0); }
    100% { transform: translateY(180px); }
}

.mrova-title {
    font-size: 14px;
    font-weight: 700;
    color: #B71C1C ;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #B71C1C ;
}

#mrova-feedback .form-group {
    margin-bottom: 8px;
}

#mrova-feedback .form-control {
    font-size: 12px;
    padding: 6px 10px;
    height: auto;
    border-radius: 4px;
}

#mrova-feedback textarea.form-control {
    resize: none;
}

#mrova-feedback .btn-block {
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px;
    border-radius: 4px;
    border: none;
}

@media (max-width: 480px) {
    #mrova-feedback { width: 270px; right: -270px; }
}

/* ── Section gaps: 10px between, zero on page edges ─────────── */
main section:not(#hero):not(:last-of-type) {
    /*margin-bottom: 10px !important; */
}

main section:not(#hero) h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

/* ── h1 responsive sizes ─────────────────────────── */
@media (max-width: 991px) {
    h1 { font-size: 42px !important; }
}
@media (max-width: 768px) {
    h1 { font-size: 35px !important; }
}


/* ============================================================
   index.php — Block 1: ISS Welcome Section
   ============================================================ */
.iss-welcome {
    position: relative;
    background: #080f1c;
    overflow: hidden;
    /*padding: 90px 0 80px;*/
}
.iss-welcome::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(215,25,32,0.18) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
    pointer-events: none;
}
.iss-welcome-bar {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #d71920 0%, #a00e26 60%, transparent 100%);
}
.iss-since-stamp {
    position: absolute;
    right: -28px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.35em;
    color: rgba(215,25,32,0.22);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.iss-welcome-head {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
}
.iss-welcome-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(215,25,32,0.15);
    border: 1px solid rgba(215,25,32,0.35);
    border-radius: 50px;
    padding: 7px 20px;
    color: #f87171;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
    animation: issSlideDown 0.7s ease both;
}
.iss-welcome-tagline {
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    animation: issSlideDown 0.7s 0.1s ease both;
}
.iss-welcome-tagline em {
    font-style: normal;
    color: #d71920;
}
.iss-welcome-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    animation: issSlideDown 0.7s 0.2s ease both;
}
.iss-welcome-divider span {
    display: block;
    height: 2px;
    width: 60px;
    background: linear-gradient(to right, transparent, #d71920);
}
.iss-welcome-divider span:last-child {
    background: linear-gradient(to left, transparent, #d71920);
}
.iss-welcome-divider i { color: #d71920; font-size: 14px; }
.iss-welcome-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 52px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.iss-welcome-text p {
    color: rgba(232,237,245,0.82);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 20px;
    animation: issSlideUp 0.7s 0.3s ease both;
}
.iss-welcome-text p:nth-child(2) { animation-delay: 0.4s; }
.iss-welcome-text p:nth-child(3) { animation-delay: 0.5s; }
.iss-welcome-aside {
    animation: issSlideUp 0.7s 0.4s ease both;
}
.iss-aside-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d71920;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.iss-aside-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(215,25,32,0.3);
}
.iss-service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.iss-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 9px 14px;
    color: #e8edf5;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.iss-chip:hover {
    background: rgba(215,25,32,0.18);
    border-color: rgba(215,25,32,0.5);
    transform: translateY(-2px);
}
.iss-chip i { color: #d71920; font-size: 12px; }
.iss-cta-box {
    background: linear-gradient(135deg, rgba(215,25,32,0.15) 0%, rgba(215,25,32,0.05) 100%);
    border: 1px solid rgba(215,25,32,0.3);
    border-left: 4px solid #d71920;
    border-radius: 0 10px 10px 0;
    padding: 18px 20px;
    color: rgba(232,237,245,0.9);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}
.iss-cta-box strong {
    color: #fff;
    font-style: normal;
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f87171;
}
@keyframes issSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes issSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
    .iss-welcome-grid { grid-template-columns: 1fr; gap: 36px; }
    .iss-since-stamp  { display: none; }
}
@media (max-width: 600px) {
    .iss-welcome { /*padding: 60px 0 60px;*/ }
    .iss-welcome-tagline { font-size: 32px; }
}

/* ============================================================
   index.php — Block 2: Management Team
   ============================================================ */
.iss-mgmt {
    background: #fff;
    /*padding: 80px 0 70px;*/
}
.iss-mgmt-head {
    text-align: center;
    margin-bottom: 50px;
}
.iss-mgmt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(215,25,32,0.08);
    border: 1px solid rgba(215,25,32,0.25);
    border-radius: 50px;
    padding: 7px 22px;
    color: #d71920;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.iss-mgmt-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #111;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.iss-mgmt-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.iss-mgmt-divider span {
    display: block;
    height: 2px;
    width: 50px;
    background: linear-gradient(to right, transparent, #d71920);
}
.iss-mgmt-divider span:last-child {
    background: linear-gradient(to left, transparent, #d71920);
}
.iss-mgmt-divider i { color: #d71920; font-size: 13px; }
.iss-team-row {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.iss-team-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 28px rgba(0,0,0,0.10);
    overflow: hidden;
    width: 260px;
    flex-shrink: 0;
    transition: transform 0.28s, box-shadow 0.28s;
    border: 1px solid #f0f0f0;
}
.iss-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(215,25,32,0.15);
}
.iss-team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-bottom: 3px solid #d71920;
}
.iss-team-info {
    padding: 20px 22px 24px;
    text-align: center;
}
.iss-team-name {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
}
.iss-team-role {
    font-size: 13px;
    font-weight: 700;
    color: #d71920;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0 0 12px;
}
.iss-team-bio {
    font-size: 13.5px;
    color: #444;
    line-height: 1.65;
    margin: 0;
}
.iss-team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}
.iss-team-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.iss-team-social a:hover {
    background: #d71920;
    color: #fff;
}
.iss-mgmt-content {
    max-width: 860px;
    margin: 0 auto;
}
.iss-mgmt-content p {
    font-size: 15.5px;
    color: #222;
    line-height: 1.85;
    margin-bottom: 20px;
    text-align: justify;
}
.iss-mgmt-content p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
    .iss-team-row { gap: 24px; }
    .iss-team-card { width: calc(50% - 12px); min-width: 200px; }
    .iss-team-photo { height: 240px; }
    .iss-mgmt-content p { font-size: 14.5px; }
}
@media (max-width: 576px) {
    .iss-mgmt { padding: 48px 0 44px; }
    .iss-team-row { flex-direction: column; align-items: center; gap: 20px; }
    .iss-team-card { width: 100%; max-width: 320px; }
    .iss-team-photo { height: 280px; }
    .iss-mgmt-title { font-size: 26px; }
    .iss-mgmt-content p { font-size: 14px; text-align: left; }
}

/* ============================================================
   index.php — Block 3: Testimonials Slider
   ============================================================ */
#testimonials { background: #f6f7f9; }
.iss-tsl-wrap {
    position: relative;
    overflow: hidden;
}
.iss-tsl-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.iss-tsl-slide {
    flex: 0 0 calc(33.333% - 16px);
    margin-right: 24px;
    box-sizing: border-box;
}
.iss-tsl-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 28px 26px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 3px solid #d71920;
    transition: transform 0.28s, box-shadow 0.28s;
}
.iss-tsl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(215,25,32,0.13);
}
.iss-tsl-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.iss-tsl-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.iss-tsl-quote {
    font-size: 52px;
    line-height: 1;
    color: rgba(215,25,32,0.15);
    font-family: Georgia, serif;
    margin-top: -8px;
}
.iss-tsl-card p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.78;
    margin: 0 0 20px;
    flex: 1;
}
.iss-tsl-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}
.iss-tsl-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d71920, #8b0000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}
.iss-tsl-footer h3 {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin: 0 0 2px;
}
.iss-tsl-footer span {
    font-size: 12px;
    color: #d71920;
    font-weight: 600;
}
.iss-tsl-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.iss-tsl-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #d71920;
    background: #fff;
    color: #d71920;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.iss-tsl-btn:hover { background: #d71920; color: #fff; }
.iss-tsl-dots { display: flex; gap: 8px; }
.iss-tsl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}
.iss-tsl-dot.active { background: #d71920; transform: scale(1.3); }
.iss-tsl-empty { text-align: center; padding: 48px 0; color: #999; font-size: 15px; }
@media (max-width: 900px) {
    .iss-tsl-slide { flex: 0 0 calc(50% - 12px); margin-right: 24px; }
}
@media (max-width: 560px) {
    .iss-tsl-slide { flex: 0 0 calc(100% - 0px); margin-right: 24px; }
    .iss-tsl-card { padding: 22px 18px 20px; }
}

/* ============================================================
   index.php — Block 4: Client Logo Ticker
   ============================================================ */
#clients { background: #fff; /*padding: 60px 0;*/ }
.iss-logo-head {
    text-align: center;
    margin-bottom: 40px;
}
.iss-logo-head h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: #111;
    margin: 0 0 12px;
}
.iss-logo-ticker {
    overflow: hidden;
    position: relative;
}
.iss-logo-ticker::before,
.iss-logo-ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.iss-logo-ticker::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.iss-logo-ticker::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
.iss-logo-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: issLogoScroll 28s linear infinite;
}
.iss-logo-ticker:hover .iss-logo-track { animation-play-state: paused; }
@keyframes issLogoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.iss-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 12px 18px;
    transition: box-shadow 0.25s, border-color 0.25s;
}
.iss-logo-item:hover {
    box-shadow: 0 4px 18px rgba(215,25,32,0.12);
    border-color: rgba(215,25,32,0.3);
}
.iss-logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(60%);
    transition: filter 0.25s;
}
.iss-logo-item:hover img { filter: grayscale(0%); }
.iss-logo-name {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-align: center;
    line-height: 1.3;
}

/* ============================================================
   about.php
   ============================================================ */
.about-hero h1 {
    font-size: clamp(24px, 3.5vw, 42px);
}
.about-body-section {
    background: #fff;
    /*padding: 80px 0;*/
}
.about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-who-left .who-label {
    font-size: 13px;
    font-weight: 700;
    color: #d71920;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-who-left h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900;
    color: #000;
    line-height: 1.1;
    margin: 0 0 28px;
    letter-spacing: -0.02em;
}
.about-who-left p {
    font-size: 15px;
    color: #111;
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-who-left p:last-child { margin-bottom: 0; }
.about-who-right { display: flex; flex-direction: column; gap: 20px; }
.about-who-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: #eef2f8;
    position: relative;
}
.about-who-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.about-stat {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 22px 16px;
    border: 1px solid #eee;
    text-align: center;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.about-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(215,25,32,0.11);
    border-color: rgba(215,25,32,0.28);
}
.about-stat strong,
.about-stat strong .ab-counter {
    font-size: 58px;
}
.about-stat strong {
    display: block;
    font-size: 58px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Poppins', 'Roboto', sans-serif;
}
.about-stat span {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    font-family: 'Poppins', 'Roboto', sans-serif;
}
.vm-section {
    background: #f8f9fb;
    /*padding: 80px 0;*/
}
.vm-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.vm-section .section-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #000;
    margin: 12px 0 0;
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.vm-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
.vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #d71920;
    border-radius: 16px 16px 0 0;
}
.vm-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(215,25,32,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: #d71920;
    font-size: 22px;
}
.vm-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin: 0 0 12px;
}
.vm-card p {
    font-size: 15px;
    color: #111;
    line-height: 1.75;
    margin: 0;
}
.vm-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.vm-card ul li {
    font-size: 15px;
    color: #111;
    line-height: 1.7;
    padding: 5px 0 5px 24px;
    position: relative;
}
.vm-card ul li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: #d71920;
    font-size: 12px;
    top: 8px;
}
.why-section {
    background: #fff;
    /*padding: 80px 0;*/
}
.why-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.why-section .section-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #000;
    margin: 12px 0 8px;
}
.why-section .section-header p {
    font-size: 15.5px;
    color: #111;
}
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-card-item {
    background: #f8f9fb;
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid #eee;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    text-align: center;
}
.why-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(215,25,32,0.12);
    border-color: rgba(215,25,32,0.3);
}
.why-card-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(215,25,32,0.12), rgba(215,25,32,0.05));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: #d71920;
    font-size: 20px;
    transition: background 0.25s;
}
.why-card-item:hover .why-card-icon {
    background: linear-gradient(135deg, #d71920, #a00);
    color: #fff;
}
.why-card-item h4 {
    font-size: 14px;
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 1.4;
}
.about-cta {
    background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
    /*padding: 70px 0;*/
    text-align: center;
}
.about-cta h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 12px;
}
.about-cta p {
    font-size: 15.5px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
}
.about-cta .btn {
    background: #d71920;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    margin: 8px 8px;
}
.about-cta .btn:hover { background: #b51018; transform: translateY(-2px); color: #fff; }
.about-cta .btn.outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
}
.about-cta .btn.outline:hover { border-color: #fff; background: rgba(255,255,255,0.07); }
.about-body-section h2,
.vm-section h2,
.why-section h2,
.about-cta h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
}
@media (max-width: 900px) {
    .about-who-grid { grid-template-columns: 1fr; gap: 36px; }
    .vm-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .about-body-section, .vm-section, .why-section { padding: 56px 0; }
    .about-who-img-wrap img { height: 220px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .about-stat { padding: 12px 8px; }
    .about-stat strong,
    .about-stat strong .ab-counter { font-size: 30px !important; }
    .about-stat span { font-size: 12px; }
    .why-cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .why-card-item { padding: 20px 14px; }
}

/* ============================================================
   services.php
   ============================================================ */
.services-hero h1 { font-size: clamp(24px, 3.5vw, 42px); }
section.cta-section { margin-bottom: 0 !important; }
.iss-svc-intro-left h2,
.iss-offer-head h2,
.iss-why-head h2,
.cta-content h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
}
.iss-svc-intro {
    background: #fff;
    /*padding: 72px 0 64px;*/
    border-bottom: 1px solid #f0f0f0;
}
.iss-svc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.iss-svc-intro-left .intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d71920;
    margin-bottom: 18px;
}
.iss-svc-intro-left .intro-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px; height: 2px;
    background: #d71920;
    border-radius: 2px;
}
.iss-svc-intro-left h2 {
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 900;
    color: #000;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}
.iss-svc-intro-left h2 span { color: #d71920; }
.iss-svc-intro-right {
    position: relative;
    padding-left: 28px;
    border-left: 3px solid #d71920;
}
.iss-svc-intro-right p {
    font-size: 15.5px;
    color: #111;
    line-height: 1.85;
    margin: 0 0 18px;
    font-family: 'Roboto', sans-serif;
}
.iss-svc-intro-right p:last-of-type { margin-bottom: 0; }
@media (max-width: 860px) {
    .iss-svc-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .iss-svc-intro-right { padding-left: 20px; }
}
@media (max-width: 560px) {
    .iss-svc-intro { padding: 48px 0 44px; }
    .iss-svc-intro-left h2 { font-size: 26px; }
}
.iss-offer-section {
    background: #f7f8fa;
    /*padding: 80px 0 90px;*/
}
.iss-offer-head {
    text-align: center;
    margin-bottom: 54px;
}
.iss-offer-head h2 {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 900;
    color: #000;
    margin: 12px 0 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.iss-offer-head p {
    font-size: 15.5px;
    color: #444;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.iss-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.iss-offer-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid transparent;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
    opacity: 0;
    transform: translateY(24px);
}
.iss-offer-card.iss-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease,
                box-shadow 0.28s, border-color 0.28s;
}
.iss-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 38px rgba(215,25,32,0.13);
    border-bottom-color: #d71920;
}
.iss-offer-thumb {
    position: relative;
    height: 210px;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
    background: #e8edf5;
}
.iss-offer-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.iss-offer-card:hover .iss-offer-thumb img { transform: scale(1.06); }
.iss-offer-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(215,25,32,0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.32s;
    display: flex; align-items: flex-end; padding: 16px 18px;
}
.iss-offer-card:hover .iss-offer-thumb-overlay { opacity: 1; }
.iss-offer-thumb-overlay span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.iss-offer-thumb-blank {
    height: 210px;
    background: linear-gradient(135deg, #0d1e38 0%, #1a2f52 100%);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.iss-offer-thumb-blank i { font-size: 44px; color: rgba(215,25,32,0.6); }
.iss-offer-body {
    padding: 22px 22px 24px;
    display: flex; flex-direction: column; flex: 1;
}
.iss-offer-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d71920;
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 6px;
}
.iss-offer-tag::before {
    content: '';
    display: inline-block;
    width: 16px; height: 2px;
    background: #d71920;
    border-radius: 2px;
}
.iss-offer-body h3 {
    font-size: 16.5px;
    font-weight: 800;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.3;
    font-family: 'Poppins', 'Roboto', sans-serif;
}
.iss-offer-body p {
    font-size: 13.5px;
    color: #444;
    line-height: 1.72;
    margin: 0 0 18px;
    flex: 1;
    font-family: 'Roboto', sans-serif;
}
.iss-offer-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 700;
    color: #000; text-decoration: none;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px; margin-top: auto;
    transition: color 0.2s, gap 0.2s;
    font-family: 'Poppins', sans-serif;
}
.iss-offer-link i { color: #d71920; font-size: 12px; transition: transform 0.2s; }
.iss-offer-link:hover { color: #d71920; gap: 12px; }
.iss-offer-link:hover i { transform: translateX(3px); }
.iss-offer-empty {
    grid-column: 1/-1; text-align: center;
    /*padding: 60px 0;*/ color: #999; font-size: 15px;
}
@media (max-width: 960px) { .iss-offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
    .iss-offer-grid { grid-template-columns: 1fr; gap: 18px; }
    .iss-offer-thumb, .iss-offer-thumb-blank { height: 190px; }
    .iss-offer-section { padding: 56px 0 64px; }
}
.iss-why-section {
    background: #f7f8fa;
    /*padding: 80px 0 88px;*/
}
.iss-why-head {
    text-align: center;
    margin-bottom: 52px;
}
.iss-why-head h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    color: #000;
    margin: 12px 0 0;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}
.iss-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.iss-why-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 22px 28px;
    border: 1px solid #eee;
    border-bottom: 3px solid transparent;
    transition: transform 0.26s, box-shadow 0.26s, border-color 0.26s;
    text-align: center;
}
.iss-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(215,25,32,0.12);
    border-bottom-color: #d71920;
}
.iss-why-ico {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: rgba(215,25,32,0.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: #d71920;
    transition: background 0.26s, color 0.26s;
}
.iss-why-card:hover .iss-why-ico {
    background: #d71920;
    color: #fff;
}
.iss-why-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #000;
    margin: 0 0 10px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.35;
}
.iss-why-card p {
    font-size: 13.5px;
    color: #444;
    line-height: 1.72;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}
@media (max-width: 900px) { .iss-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .iss-why-grid { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================================
   security-guard-services.php
   ============================================================ */
.sgs-page { font-family: 'Lato', sans-serif; }
.sgs-page h1,.sgs-page h2,.sgs-page h3,.sgs-page h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}
.sgs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d71920;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 15px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 6px 28px rgba(215,25,32,.38);
}
.sgs-btn-primary:hover {
    background: #b50e14;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(215,25,32,.5);
    color: #fff;
}
.sgs-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,.8);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 15px 32px;
    border-radius: 4px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.28);
    transition: border-color .25s, color .25s, background .25s;
}
.sgs-btn-outline:hover {
    border-color: rgba(255,255,255,.65);
    color: #fff;
    background: rgba(255,255,255,.07);
}
.sgs-stats-wrap {
    background: #fff;
    padding-bottom: 70px;
    padding-top: 50px;
}
.sgs-stats-grid {
    width: min(1180px, 92%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 10;
}
.sgs-stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 26px 20px 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.sgs-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #d71920;
}
.sgs-stat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.14); }
.sgs-stat-icon { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.sgs-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.7rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
    display: block;
}
.sgs-stat-lbl {
    font-size: 0.73rem;
    font-weight: 600;
    color: #7a8494;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-top: 6px;
    display: block;
}
.sgs-sec { padding: 88px 0; }
.sgs-sec-light { background: #f5f7fa; }
.sgs-sec-dark { background: #050e1d; color: #fff; }
.sgs-wrap { width: min(1180px, 92%); margin-inline: auto; }
.sgs-overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d71920;
    margin-bottom: 14px;
}
.sgs-overline::before { content: ''; width: 26px; height: 2px; background: #d71920; border-radius: 2px; }
.sgs-h2 {
    font-size: clamp(2.1rem, 4.5vw, 3.1rem);
    font-weight: 800;
    color: #111;
    line-height: 1.05;
    text-transform: none;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.sgs-sec-dark .sgs-h2 { color: #fff; }
.sgs-lead { font-size: 1.02rem; color: #5f6b7a; line-height: 1.78; max-width: 600px; }
.sgs-sec-dark .sgs-lead { color: rgba(255,255,255,.55); }
.sgs-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sgs-feat-list { list-style: none; padding: 0; margin: 34px 0 0; }
.sgs-feat-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #eef0f5;
}
.sgs-feat-item:last-child { border-bottom: none; }
.sgs-feat-ico {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #222, #444);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
    transition: transform .2s;
}
.sgs-feat-item:hover .sgs-feat-ico { transform: scale(1.1) rotate(-4deg); }
.sgs-feat-item:nth-child(odd) .sgs-feat-ico { background: linear-gradient(135deg, #d71920, #ff3a44); }
.sgs-feat-text strong { display: block; font-size: 1rem; font-weight: 600; color: #111; margin-bottom: 3px; }
.sgs-feat-text span { font-size: 0.87rem; color: #5f6b7a; line-height: 1.62; }
.sgs-why-img-wrap { position: relative; }
.sgs-why-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.sgs-cert-badge {
    position: absolute;
    top: -18px; right: -18px;
    background: #111;
    color: #fff;
    width: 108px; height: 108px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    box-shadow: 0 8px 28px rgba(11,58,117,.35);
    z-index: 2;
}
.sgs-cert-badge b { font-family:'Plus Jakarta Sans',sans-serif; font-size:1.55rem; font-weight:900; line-height:1; }
.sgs-cert-badge small { font-size:0.55rem; text-transform:uppercase; letter-spacing:.07em; opacity:.75; margin-top:3px; line-height:1.3; }
.sgs-float-card {
    position: absolute;
    bottom: -22px; left: -22px;
    background: #d71920;
    color: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(215,25,32,.4);
    z-index: 2;
    min-width: 152px;
}
.sgs-float-card b { display: block; font-family:'Plus Jakarta Sans',sans-serif; font-size: 2.1rem; font-weight: 900; line-height: 1; }
.sgs-float-card small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .07em; opacity: .9; }
.sgs-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 54px;
}
.sgs-type-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0,0,0,0.07);
    transition: transform .3s, box-shadow .3s;
    display: flex; flex-direction: column;
}
.sgs-type-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.13); }
.sgs-type-imgw { position: relative; overflow: hidden; height: 188px; }
.sgs-type-imgw img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.sgs-type-card:hover .sgs-type-imgw img { transform: scale(1.07); }
.sgs-type-imgw::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,14,29,.72) 0%, transparent 55%);
}
.sgs-type-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: #d71920;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 1;
}
.sgs-type-body { padding: 20px 18px 22px; flex: 1; display: flex; flex-direction: column; }
.sgs-type-body h4 {
    font-size: 1.28rem;
    font-weight: 800;
    color: #111;
    text-transform: none;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}
.sgs-type-body p { font-size: 0.86rem; color: #5f6b7a; line-height: 1.6; margin: 0 0 14px; flex: 1; }
.sgs-type-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #d71920;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap .2s;
}
.sgs-type-link::after { content: '→'; }
.sgs-type-card:hover .sgs-type-link { gap: 9px; }
.sgs-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 58px;
    position: relative;
}
.sgs-process-line {
    position: absolute;
    top: 39px; left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #d71920, #111);
    z-index: 0;
}
.sgs-process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.sgs-proc-num {
    width: 78px; height: 78px;
    border-radius: 50%;
    background: #f5f7fa;
    border: 3px solid #d71920;
    margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem; font-weight: 900; color: #d71920;
    box-shadow: 0 4px 20px rgba(215,25,32,.18);
    transition: background .3s, color .3s;
}
.sgs-process-step:hover .sgs-proc-num { background: #d71920; color: #fff; }
.sgs-process-step h4 {
    font-size: 1.12rem; font-weight: 800;
    color: #111; text-transform: none;
    margin: 0 0 9px; letter-spacing: .03em;
}
.sgs-process-step p { font-size: 0.85rem; color: #5f6b7a; line-height: 1.65; margin: 0; }
.sgs-ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 50px;
}
.sgs-ind-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 28px 18px;
    text-align: center;
    transition: background .25s, border-color .25s, transform .25s;
}
.sgs-ind-item:hover { background: rgba(255,255,255,.08); border-color: rgba(215,25,32,.45); transform: translateY(-4px); }
.sgs-ind-emoji { font-size: 2.1rem; display: block; margin-bottom: 11px; color: #d71920; }
.sgs-ind-item h4 {
    font-size: 1.06rem; font-weight: 700;
    color: #fff; text-transform: none;
    margin: 0 0 5px; letter-spacing: .04em;
}
.sgs-ind-item p { font-size: 0.78rem; color: rgba(255,255,255,.42); margin: 0; line-height: 1.5; }
.sgs-equip {
    background: #111;
    padding: 44px 0;
}
.sgs-equip-inner {
    width: min(1180px, 92%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.sgs-equip-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
}
.sgs-equip-tags { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; }
.sgs-etag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.82);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 20px;
    transition: background .2s;
}
.sgs-etag:hover { background: rgba(255,255,255,.17); }
.sgs-faq-wrap { max-width: 800px; margin: 54px auto 0; }
.sgs-faq-item { border-bottom: 1px solid #e4e8f0; }
.sgs-faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
    transition: color .2s;
}
.sgs-faq-btn:hover { color: #d71920; }
.sgs-faq-ico {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700;
    flex-shrink: 0;
    transition: background .25s, transform .3s;
    line-height: 1;
}
.sgs-faq-item.open .sgs-faq-ico { background: #d71920; transform: rotate(45deg); }
.sgs-faq-ans {
    display: none;
    padding: 0 0 20px;
    font-size: 0.94rem;
    color: #5f6b7a;
    line-height: 1.78;
}
.sgs-faq-item.open .sgs-faq-ans { display: block; }
.sgs-cta {
    background: #050e1d98;
    background-image: url('../images/security-personnel.png');
    background-size: cover;
    background-position: center top;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.sgs-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5,14,29,0.86);
    z-index: 0;
    pointer-events: none;
}
.sgs-cta::after {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(215,25,32,.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.sgs-cta-inner { position: relative; z-index: 1; width: min(680px, 92%); margin-inline: auto; }
.sgs-cta-tag {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,.35);
    display: block; margin-bottom: 14px;
}
.sgs-cta-h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0 0 18px;
}
.sgs-cta-h2 span { color: #d71920; }
.sgs-cta-p { font-size: 1.02rem; color: rgba(255,255,255,.48); line-height: 1.72; margin-bottom: 38px; }
.sgs-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sgs-cta-checks {
    display: flex; gap: 32px; justify-content: center;
    margin-top: 40px; flex-wrap: wrap;
}
.sgs-cta-check {
    font-size: 0.8rem;
    color: rgba(255,255,255,.32);
    display: flex; align-items: center; gap: 6px;
}
.sgs-cta-check::before { content: '✓'; color: #d71920; font-weight: 700; }
.sgs-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.sgs-reveal.visible { opacity: 1; transform: none; }
@media (max-width: 1024px) {
    .sgs-stats-grid { grid-template-columns: repeat(2,1fr); }
    .sgs-why-grid { grid-template-columns: 1fr; gap: 50px; }
    .sgs-why-img-wrap { max-width: 480px; margin: 0 auto; }
    .sgs-types-grid { grid-template-columns: repeat(2,1fr); }
    .sgs-process-grid { grid-template-columns: repeat(2,1fr); }
    .sgs-process-line { display: none; }
    .sgs-ind-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
    .sgs-stats-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .sgs-sec { /*padding: 60px 0;*/ }
    .sgs-types-grid { grid-template-columns: 1fr; }
    .sgs-process-grid { grid-template-columns: 1fr; }
    .sgs-ind-grid { grid-template-columns: repeat(2,1fr); }
    .sgs-cert-badge { display: none; }
    .sgs-float-card { left: 0; bottom: -16px; }
    .sgs-equip-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
    .sgs-cta-btns { flex-direction: column; align-items: center; }
    .sgs-cta-checks { flex-direction: column; align-items: center; gap: 14px; }
}

/* ============================================================
   housekeeping-services.php
   ============================================================ */
.hks-page { font-family: 'Lato', sans-serif; }
.hks-page h2, .hks-page h3, .hks-page h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.hks-sec { padding: 88px 0; }
.hks-sec-light { background: #f4f8ff; }
.hks-sec-dark { background: #061528; }
.hks-sec-teal { background: #f0faf8; }
.hks-wrap { width: min(1180px, 92%); margin-inline: auto; }
.hks-overline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d71920;
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.hks-overline::before { content: ''; width: 24px; height: 2px; background: #d71920; border-radius: 2px; }
.hks-h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin: 0 0 16px;
}
.hks-sec-dark .hks-h2 { color: #fff; }
.hks-lead {
    font-size: 1.05rem;
    color: #5a6475;
    line-height: 1.8;
    font-weight: 300;
    max-width: 580px;
}
.hks-sec-dark .hks-lead { color: rgba(255,255,255,.55); }
.hks-center { text-align: center; }
.hks-center .hks-lead { margin: 0 auto; }
.hks-center .hks-overline { justify-content: center; }
.hks-center .hks-overline::before { display: none; }
.hks-stats-outer {
    background: #fff;
    /*padding: 52px 0 72px;*/
}
.hks-stats-grid {
    width: min(1180px, 92%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.hks-stat {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px 24px;
    text-align: center;
    box-shadow: 0 10px 36px rgba(0,0,0,0.09);
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.hks-stat::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d71920, #111);
}
.hks-stat:hover { transform: translateY(-5px); box-shadow: 0 18px 46px rgba(0,0,0,0.14); }
.hks-stat-icon { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.hks-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
    display: block;
}
.hks-stat-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    color: #8a95a5;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-top: 6px;
    display: block;
}
.hks-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hks-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 34px;
}
.hks-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f4f8ff;
    border-radius: 10px;
    padding: 14px 16px;
    transition: background .2s, transform .2s;
}
.hks-check-item:hover { background: #e8f0ff; transform: translateY(-2px); }
.hks-check-tick {
    width: 22px; height: 22px;
    background: #d71920;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}
.hks-check-item span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111;
    line-height: 1.45;
}
.hks-split-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    background: #d71920;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 6px 22px rgba(215,25,32,.35);
}
.hks-split-cta:hover { background: #b50e14; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(215,25,32,.45); color: #fff; }
.hks-img-side { position: relative; }
.hks-img-main {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.hks-img-badge {
    position: absolute;
    bottom: -18px; right: -18px;
    background: #111;
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,.25);
    z-index: 2;
    min-width: 140px;
}
.hks-img-badge b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.hks-img-badge small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: .07em; opacity: .8; }
.hks-img-tag {
    position: absolute;
    top: -14px; left: 24px;
    background: #d71920;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(215,25,32,.3);
    z-index: 2;
}
.hks-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 52px;
}
.hks-svc-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}
.hks-svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d71920, #111);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}
.hks-svc-card:hover { transform: translateY(-7px); box-shadow: 0 18px 46px rgba(0,0,0,0.12); border-color: #e0e0e0; }
.hks-svc-card:hover::before { transform: scaleX(1); }
.hks-svc-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: #f0faf8;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #d71920;
    margin-bottom: 18px;
    transition: background .25s, transform .25s;
}
.hks-svc-card:hover .hks-svc-icon { background: #e0f5f2; transform: scale(1.08) rotate(-4deg); }
.hks-svc-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}
.hks-svc-card p { font-size: 0.87rem; color: #5a6475; line-height: 1.65; margin: 0; }
.hks-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 58px;
    position: relative;
}
.hks-proc-line {
    position: absolute;
    top: 38px; left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #d71920, #111);
    z-index: 0;
}
.hks-proc-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.hks-proc-circle {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: #f4f8ff;
    border: 3px solid #d71920;
    margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem; font-weight: 800; color: #d71920;
    box-shadow: 0 4px 18px rgba(215,25,32,.2);
    transition: background .3s, color .3s;
}
.hks-proc-step:nth-child(even) .hks-proc-circle { border-color: #d71920; color: #d71920; box-shadow: 0 4px 18px rgba(215,25,32,.18); }
.hks-proc-step:hover .hks-proc-circle { background: #d71920; color: #fff; }
.hks-proc-step:nth-child(even):hover .hks-proc-circle { background: #d71920; color: #fff; }
.hks-proc-step h4 { font-size: 1.08rem; font-weight: 700; color: #111; margin: 0 0 8px; }
.hks-proc-step p { font-size: 0.85rem; color: #5a6475; line-height: 1.65; margin: 0; }
.hks-sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 50px;
}
.hks-sector {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 28px 18px;
    text-align: center;
    transition: background .25s, border-color .25s, transform .25s;
}
.hks-sector:hover { background: rgba(255,255,255,.09); border-color: rgba(215,25,32,.5); transform: translateY(-4px); }
.hks-sector-icon { font-size: 2.1rem; display: block; margin-bottom: 12px; color: #ff6b6b; }
.hks-sector h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 5px; }
.hks-sector p { font-size: 0.78rem; color: rgba(255,255,255,.4); margin: 0; line-height: 1.5; }
.hks-strip { background: #111; padding: 44px 0; }
.hks-strip-inner {
    width: min(1180px, 92%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hks-strip-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.hks-strip-tags { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; }
.hks-stag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.82);
    font-size: 0.8rem;
    font-weight: 400;
    padding: 7px 14px;
    border-radius: 20px;
    transition: background .2s;
}
.hks-stag:hover { background: rgba(255,255,255,.17); }
.hks-faq-wrap { max-width: 820px; margin: 52px auto 0; }
.hks-faq-item { border-bottom: 1px solid #e4e9f2; }
.hks-faq-btn {
    width: 100%;
    background: none; border: none;
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; cursor: pointer; text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    color: #111;
    transition: color .2s;
}
.hks-faq-btn:hover { color: #d71920; }
.hks-faq-ico {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700;
    flex-shrink: 0; line-height: 1;
    transition: background .25s, transform .3s;
}
.hks-faq-item.open .hks-faq-ico { background: #d71920; transform: rotate(45deg); }
.hks-faq-ans {
    display: none;
    padding: 0 0 20px;
    font-size: 0.94rem; color: #5a6475; line-height: 1.78;
}
.hks-faq-item.open .hks-faq-ans { display: block; }
.hks-cta {
    background: linear-gradient(135deg, #111 0%, #000 60%);
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hks-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(215,25,32,.12);
    pointer-events: none;
}
.hks-cta::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(215,25,32,.1);
    pointer-events: none;
}
.hks-cta-inner { position: relative; z-index: 1; width: min(680px, 92%); margin-inline: auto; }
.hks-cta-tag {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    color: rgba(255,255,255,.35);
    display: block; margin-bottom: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.hks-cta-h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 18px;
}
.hks-cta-h2 em { font-style: normal; color: #ff6b6b; }
.hks-cta-p { font-size: 1.02rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 38px; font-weight: 300; }
.hks-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hks-cta-checks {
    display: flex; gap: 30px; justify-content: center;
    margin-top: 38px; flex-wrap: wrap;
}
.hks-cta-check {
    font-size: 0.8rem;
    color: rgba(255,255,255,.32);
    display: flex; align-items: center; gap: 6px;
}
.hks-cta-check::before { content: '✓'; color: #ff6b6b; font-weight: 700; }
.hks-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #d71920; color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    padding: 15px 32px; border-radius: 6px;
    text-decoration: none;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 6px 26px rgba(215,25,32,.38);
}
.hks-btn-primary:hover { background: #b50e14; transform: translateY(-2px); box-shadow: 0 10px 34px rgba(215,25,32,.48); color: #fff; }
.hks-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.8);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    padding: 15px 32px; border-radius: 6px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.28);
    transition: border-color .25s, color .25s, background .25s;
}
.hks-btn-ghost:hover { border-color: rgba(255,255,255,.65); color: #fff; background: rgba(255,255,255,.07); }
.hks-reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.hks-reveal.visible { opacity: 1; transform: none; }
@media (max-width: 1024px) {
    .hks-stats-grid { grid-template-columns: repeat(2,1fr); }
    .hks-split { grid-template-columns: 1fr; gap: 48px; }
    .hks-img-side { max-width: 500px; margin: 0 auto; }
    .hks-services-grid { grid-template-columns: repeat(2,1fr); }
    .hks-process-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
    .hks-proc-line { display: none; }
    .hks-sectors-grid { grid-template-columns: repeat(2,1fr); }
    .hks-check-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .hks-sec { padding: 64px 0; }
    .hks-stats-outer { padding: 40px 0 56px; }
    .hks-stats-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
    .hks-stat-num { font-size: 2.2rem; }
    .hks-split { gap: 36px; }
    .hks-h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); }
    .hks-check-grid { grid-template-columns: 1fr; gap: 10px; }
    .hks-check-item { padding: 12px 14px; }
    .hks-services-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
    .hks-process-grid { grid-template-columns: repeat(2,1fr); gap: 28px 16px; }
    .hks-sectors-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .hks-img-badge { right: 0; bottom: -14px; }
    .hks-img-tag { left: 16px; }
    .hks-faq-btn { font-size: 0.96rem; }
    .hks-cta-h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
    .hks-strip-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 480px) {
    .hks-sec { padding: 48px 0; }
    .hks-stats-outer { padding: 32px 0 48px; }
    .hks-stats-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .hks-stat { padding: 20px 14px 18px; }
    .hks-stat-num { font-size: 2rem; }
    .hks-stat-icon { font-size: 1.5rem; }
    .hks-services-grid { grid-template-columns: 1fr; gap: 14px; }
    .hks-svc-card { padding: 22px 18px; }
    .hks-process-grid { grid-template-columns: 1fr; gap: 24px; }
    .hks-sectors-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .hks-sector { padding: 20px 14px; }
    .hks-img-badge { display: none; }
    .hks-img-tag { display: none; }
    .hks-img-main { aspect-ratio: 4/3; }
    .hks-split-cta { width: 100%; justify-content: center; font-size: 0.92rem; }
    .hks-cta-btns { flex-direction: column; align-items: stretch; }
    .hks-btn-primary, .hks-btn-ghost { justify-content: center; padding: 14px 20px; }
    .hks-cta-checks { flex-direction: column; align-items: center; gap: 10px; }
    .hks-faq-btn { font-size: 0.9rem; padding: 16px 0; }
    .hks-strip-tags { gap: 8px; }
    .hks-stag { font-size: 0.75rem; padding: 6px 10px; }
}

/* ============================================================
   armed-guard-service-provider.php
   ============================================================ */
:root {
    --ag-gold: #B71C1C;
    --ag-gold-light: #d42424;
    --ag-ink: #0a1628;
    --ag-muted: #5a6270;
    --ag-blue: #0b3a75;
    --ag-red: #B71C1C;
    --ag-border: rgba(183,28,28,0.22);
    --ag-border-light: rgba(0,0,0,0.08);
}
.ag-page { font-family: 'Lato', sans-serif; }
.ag-page h2,.ag-page h3,.ag-page h4,.ag-page h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.03em;
}
.ag-sec { padding: 86px 0; }
.ag-sec-dark  { background: #fff; }
.ag-sec-dark2 { background: #f5f6f8; }
.ag-sec-light { background: #f5f6f8; }
.ag-wrap { width: min(1180px, 92%); margin-inline: auto; }
.ag-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ag-gold);
    margin-bottom: 14px;
}
.ag-kicker::before { content: ''; width: 30px; height: 1px; background: var(--ag-gold); }
.ag-kicker::after  { content: ''; width: 8px; height: 8px; border: 1.5px solid var(--ag-gold); transform: rotate(45deg); }
.ag-h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--ag-ink);
    line-height: 1.08;
    margin: 0 0 18px;
    text-transform: none;
}
.ag-h2-dark { color: var(--ag-ink); }
.ag-h2 .ag-gold { color: var(--ag-gold); }
.ag-lead {
    font-size: 1.05rem;
    color: var(--ag-muted);
    line-height: 1.82;
    font-weight: 300;
    max-width: 560px;
}
.ag-lead-dark { color: var(--ag-muted); }
.ag-dotgrid {
    background-image: radial-gradient(rgba(11,58,117,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.ag-stats-bar {
    background: #fff;
    border-top: 1px solid var(--ag-border-light);
    border-bottom: 1px solid var(--ag-border-light);
    padding: 50px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.ag-stats-grid {
    width: min(1180px, 92%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.ag-stat {
    text-align: center;
    padding: 20px 28px;
    border-right: 1px solid var(--ag-border-light);
    position: relative;
}
.ag-stat:last-child { border-right: none; }
.ag-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--ag-gold);
    line-height: 1;
    display: block;
}
.ag-stat-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ag-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: block;
    margin-top: 7px;
}
.ag-stat-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.75;
}
.ag-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.ag-feat-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ag-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--ag-border-light);
}
.ag-feat-item:last-child { border-bottom: none; }
.ag-feat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ag-gold);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    width: 28px;
    padding-top: 2px;
}
.ag-feat-text strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ag-ink);
    text-transform: none;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.ag-feat-text span { font-size: 0.87rem; color: var(--ag-muted); line-height: 1.65; }
.ag-img-wrap { position: relative; }
.ag-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    filter: grayscale(10%) contrast(1.02);
}
.ag-img-wrap::before,
.ag-img-wrap::after {
    content: '';
    position: absolute;
    width: 36px; height: 36px;
    z-index: 2;
}
.ag-img-wrap::before {
    top: -4px; left: -4px;
    border-top: 2px solid var(--ag-gold);
    border-left: 2px solid var(--ag-gold);
}
.ag-img-wrap::after {
    bottom: -4px; right: -4px;
    border-bottom: 2px solid var(--ag-gold);
    border-right: 2px solid var(--ag-gold);
}
.ag-img-ribbon {
    position: absolute;
    bottom: 28px; left: -4px;
    background: var(--ag-gold);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 18px 7px 22px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
    z-index: 3;
}
.ag-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    background: transparent;
    color: var(--ag-blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: none;
    text-decoration: none;
    border: 1.5px solid var(--ag-blue);
    padding: 13px 28px;
    transition: background .25s, color .25s;
}
.ag-about-cta:hover { background: var(--ag-blue); color: #fff; }
.ag-about-cta-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    margin-left: 14px;
    background: var(--ag-red);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 28px;
    transition: background .25s;
    box-shadow: 0 6px 24px rgba(215,25,32,.28);
}
.ag-about-cta-solid:hover { background: #b50e14; color: #fff; }
.ag-deploy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 54px;
}
.ag-deploy-card {
    background: #fff;
    border: 1px solid #e8ecf2;
    padding: 32px 24px;
    position: relative;
    transition: box-shadow .3s, transform .3s, border-color .3s;
    overflow: hidden;
    border-radius: 2px;
}
.ag-deploy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--ag-gold);
    transition: height .4s;
}
.ag-deploy-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: transparent; }
.ag-deploy-card:hover::before { height: 100%; }
.ag-deploy-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 16px;
}
.ag-deploy-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ag-ink);
    text-transform: none;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
}
.ag-deploy-card p { font-size: 0.86rem; color: var(--ag-muted); line-height: 1.65; margin: 0; }
.ag-deploy-num {
    position: absolute;
    top: 14px; right: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0,0,0,.04);
    line-height: 1;
}
.ag-compliance {
    background: var(--ag-blue);
    padding: 52px 0;
}
.ag-compliance-inner {
    width: min(1180px, 92%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}
.ag-compliance h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
}
.ag-compliance p { font-size: 0.94rem; color: rgba(255,255,255,.65); line-height: 1.75; margin: 0; max-width: 680px; }
.ag-compliance-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.ag-cbadge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 10px 20px;
    text-align: center;
    white-space: nowrap;
}
.ag-process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 56px;
    max-width: 860px;
    margin-inline: auto;
}
.ag-proc-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    align-items: flex-start;
    padding: 36px 0;
    border-bottom: 1px solid var(--ag-border-light);
    position: relative;
}
.ag-proc-item:last-child { border-bottom: none; }
.ag-proc-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.ag-proc-circle {
    width: 52px; height: 52px;
    border: 2px solid var(--ag-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--ag-gold);
    flex-shrink: 0;
    transition: background .25s, color .25s;
}
.ag-proc-item:hover .ag-proc-circle { background: var(--ag-gold); color: #fff; }
.ag-proc-connector {
    width: 1px; flex: 1;
    min-height: 24px;
    background: rgba(183,28,28,.25);
    margin-top: 4px;
}
.ag-proc-item:last-child .ag-proc-connector { display: none; }
.ag-proc-body { padding-top: 12px; }
.ag-proc-body h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ag-ink);
    text-transform: none;
    letter-spacing: 0.05em;
    margin: 0 0 8px;
}
.ag-proc-body p { font-size: 0.9rem; color: var(--ag-muted); line-height: 1.72; margin: 0; }
.ag-creds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 52px;
}
.ag-cred-card {
    background: #fff;
    border-top: 3px solid var(--ag-gold);
    padding: 32px 26px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.06);
    transition: transform .25s, box-shadow .25s;
}
.ag-cred-card:hover { transform: translateY(-5px); box-shadow: 0 14px 38px rgba(0,0,0,0.1); }
.ag-cred-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--ag-ink);
    text-transform: none;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
}
.ag-cred-card p { font-size: 0.88rem; color: var(--ag-muted); line-height: 1.68; margin: 0; }
.ag-cred-ico {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 14px;
}
.ag-faq-wrap { max-width: 820px; margin: 52px auto 0; }
.ag-faq-item { border-bottom: 1px solid var(--ag-border-light); }
.ag-faq-btn {
    width: 100%; background: none; border: none;
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; cursor: pointer; text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.12rem; font-weight: 700;
    color: var(--ag-ink);
    text-transform: none;
    letter-spacing: 0;
    transition: color .2s;
}
.ag-faq-btn:hover { color: var(--ag-gold); }
.ag-faq-ico {
    width: 26px; height: 26px;
    border: 1.5px solid rgba(183,28,28,.5);
    color: var(--ag-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700;
    flex-shrink: 0; line-height: 1;
    transition: background .25s, transform .3s, border-color .25s;
}
.ag-faq-item.open .ag-faq-ico { background: var(--ag-gold); color: #fff; border-color: var(--ag-gold); transform: rotate(45deg); }
.ag-faq-ans {
    display: none;
    padding: 0 0 20px;
    font-size: 0.94rem;
    color: var(--ag-muted);
    line-height: 1.8;
}
.ag-faq-item.open .ag-faq-ans { display: block; }
.ag-cta {
    background: var(--ag-blue);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ag-cta-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.ag-cta-inner { position: relative; z-index: 1; width: min(700px, 92%); margin-inline: auto; }
.ag-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ag-gold);
    margin-bottom: 18px;
}
.ag-cta-tag::before, .ag-cta-tag::after { content: '—'; opacity: .5; }
.ag-cta-h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.03em;
    line-height: 1.05;
    margin: 0 0 18px;
}
.ag-cta-h2 .ag-gold { color: var(--ag-gold); }
.ag-cta-p { font-size: 1.02rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 38px; font-weight: 300; }
.ag-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ag-btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ag-gold); color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    letter-spacing: 0.02em; text-transform: none;
    padding: 15px 34px; text-decoration: none;
    transition: background .25s, transform .2s;
    box-shadow: 0 6px 26px rgba(183,28,28,.35);
}
.ag-btn-gold:hover { background: var(--ag-gold-light); transform: translateY(-2px); color: #fff; }
.ag-btn-outline-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.85);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    letter-spacing: 0.02em; text-transform: none;
    padding: 15px 34px; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.35);
    transition: background .25s, color .25s, border-color .25s;
}
.ag-btn-outline-gold:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.7); }
.ag-cta-checks {
    display: flex; gap: 28px; justify-content: center;
    margin-top: 36px; flex-wrap: wrap;
}
.ag-cta-check {
    font-size: 0.8rem; color: rgba(255,255,255,.45);
    display: flex; align-items: center; gap: 7px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.ag-cta-check::before { content: '◆'; color: var(--ag-gold); font-size: 0.5rem; }
.ag-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.ag-reveal.visible { opacity: 1; transform: none; }
@media (max-width: 1024px) {
    .ag-about-grid { grid-template-columns: 1fr; gap: 50px; }
    .ag-img-wrap { max-width: 480px; margin: 0 auto; }
    .ag-deploy-grid { grid-template-columns: repeat(2,1fr); }
    .ag-creds-grid { grid-template-columns: repeat(2,1fr); }
    .ag-compliance-inner { grid-template-columns: 1fr; gap: 32px; }
    .ag-compliance-badges { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .ag-sec { /*padding: 60px 0; */ }
    .ag-stats-grid { grid-template-columns: repeat(2,1fr); }
    .ag-stat { border-right: none; border-bottom: 1px solid var(--ag-border); padding: 20px 16px; }
    .ag-stat:last-child, .ag-stat:nth-child(2) { border-bottom: none; }
    .ag-stat:nth-child(2) { border-bottom: 1px solid var(--ag-border); }
    .ag-stat:nth-child(3), .ag-stat:nth-child(4) { border-bottom: none; }
    .ag-deploy-grid { grid-template-columns: repeat(2,1fr); }
    .ag-creds-grid { grid-template-columns: 1fr; gap: 14px; }
    .ag-proc-item { grid-template-columns: 52px 1fr; gap: 16px; padding: 26px 0; }
    .ag-process-list { max-width: 100%; }
    .ag-h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
    .ag-compliance p { font-size: 0.88rem; }
}
@media (max-width: 480px) {
    .ag-sec { padding: 48px 0; }
    .ag-stats-bar { padding: 36px 0; }
    .ag-stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
    .ag-stat { padding: 18px 12px; }
    .ag-stat-num { font-size: 2.2rem; }
    .ag-deploy-grid { grid-template-columns: 1fr; }
    .ag-deploy-card { padding: 26px 20px; }
    .ag-creds-grid { grid-template-columns: 1fr; }
    .ag-proc-item { grid-template-columns: 44px 1fr; gap: 12px; }
    .ag-proc-circle { width: 44px; height: 44px; font-size: 1.05rem; }
    .ag-cta-btns { flex-direction: column; align-items: stretch; }
    .ag-btn-gold, .ag-btn-outline-gold { justify-content: center; padding: 14px 20px; }
    .ag-cta-checks { flex-direction: column; align-items: center; gap: 10px; }
    .ag-about-cta, .ag-about-cta-solid { width: 100%; justify-content: center; margin-left: 0; }
    .ag-compliance-badges { flex-direction: column; }
    .ag-cbadge { font-size: 0.72rem; padding: 8px 14px; }
    .ag-img-ribbon { font-size: 0.65rem; padding: 6px 14px 6px 18px; }
}

/* ============================================================
   pso.php
   ============================================================ */
:root {
    --pso-gold: #B71C1C;
    --pso-gold-light: #d42424;
    --pso-ink: #0a1628;
    --pso-muted: #5a6270;
    --pso-blue: #0b3a75;
    --pso-red: #B71C1C;
    --pso-border: rgba(183,28,28,0.22);
    --pso-border-light: rgba(0,0,0,0.08);
}
.pso-page { font-family: 'Lato', sans-serif; }
.pso-page h2,.pso-page h3,.pso-page h4,.pso-page h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.03em;
}
.pso-sec { padding: 86px 0; }
.pso-sec-white  { background: #fff; }
.pso-sec-gray   { background: #f5f6f8; }
.pso-wrap { width: min(1180px, 92%); margin-inline: auto; }
.pso-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pso-gold);
    margin-bottom: 14px;
}
.pso-kicker::before { content: ''; width: 30px; height: 1px; background: var(--pso-gold); }
.pso-kicker::after  { content: ''; width: 8px; height: 8px; border: 1.5px solid var(--pso-gold); transform: rotate(45deg); }
.pso-h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--pso-ink);
    line-height: 1.08;
    margin: 0 0 18px;
    text-transform: none;
}
.pso-h2 .pso-accent { color: var(--pso-gold); }
.pso-lead {
    font-size: 1.05rem;
    color: var(--pso-muted);
    line-height: 1.82;
    font-weight: 300;
    max-width: 560px;
}
.pso-dotgrid {
    background-image: radial-gradient(rgba(11,58,117,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.pso-stats-bar {
    background: #fff;
    border-top: 1px solid var(--pso-border-light);
    border-bottom: 1px solid var(--pso-border-light);
    padding: 50px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.pso-stats-grid {
    width: min(1180px, 92%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.pso-stat {
    text-align: center;
    padding: 20px 28px;
    border-right: 1px solid var(--pso-border-light);
}
.pso-stat:last-child { border-right: none; }
.pso-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--pso-gold);
    line-height: 1;
    display: block;
}
.pso-stat-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pso-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: block;
    margin-top: 7px;
}
.pso-stat-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.75;
    color: var(--pso-gold);
}
.pso-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.pso-feat-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pso-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--pso-border-light);
}
.pso-feat-item:last-child { border-bottom: none; }
.pso-feat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pso-gold);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    width: 28px;
    padding-top: 2px;
}
.pso-feat-text strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--pso-ink);
    text-transform: none;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.pso-feat-text span { font-size: 0.87rem; color: var(--pso-muted); line-height: 1.65; }
.pso-img-wrap { position: relative; }
.pso-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    filter: grayscale(10%) contrast(1.02);
}
.pso-img-wrap::before,
.pso-img-wrap::after {
    content: '';
    position: absolute;
    width: 36px; height: 36px;
    z-index: 2;
}
.pso-img-wrap::before {
    top: -4px; left: -4px;
    border-top: 2px solid var(--pso-gold);
    border-left: 2px solid var(--pso-gold);
}
.pso-img-wrap::after {
    bottom: -4px; right: -4px;
    border-bottom: 2px solid var(--pso-gold);
    border-right: 2px solid var(--pso-gold);
}
.pso-img-ribbon {
    position: absolute;
    bottom: 28px; left: -4px;
    background: var(--pso-gold);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 18px 7px 22px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
    z-index: 3;
}
.pso-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    background: transparent;
    color: var(--pso-blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: none;
    text-decoration: none;
    border: 1.5px solid var(--pso-blue);
    padding: 13px 28px;
    transition: background .25s, color .25s;
}
.pso-about-cta:hover { background: var(--pso-blue); color: #fff; }
.pso-about-cta-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    margin-left: 14px;
    background: var(--pso-red);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: none;
    text-decoration: none;
    padding: 13px 28px;
    transition: background .25s;
    box-shadow: 0 6px 24px rgba(183,28,28,.28);
}
.pso-about-cta-solid:hover { background: #9b1515; color: #fff; }
.pso-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 54px;
}
.pso-cap-card {
    background: #fff;
    border: 1px solid #e8ecf2;
    padding: 32px 24px;
    position: relative;
    transition: box-shadow .3s, transform .3s, border-color .3s;
    overflow: hidden;
    border-radius: 2px;
}
.pso-cap-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--pso-gold);
    transition: height .4s;
}
.pso-cap-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: transparent; }
.pso-cap-card:hover::before { height: 100%; }
.pso-cap-num {
    position: absolute;
    top: 14px; right: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0,0,0,.04);
    line-height: 1;
}
.pso-cap-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 14px;
    color: var(--pso-gold);
}
.pso-cap-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pso-ink);
    text-transform: none;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
}
.pso-cap-card p { font-size: 0.86rem; color: var(--pso-muted); line-height: 1.65; margin: 0; }
.pso-compliance {
    background: var(--pso-blue);
    padding: 52px 0;
}
.pso-compliance-inner {
    width: min(1180px, 92%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}
.pso-compliance h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
}
.pso-compliance p { font-size: 0.94rem; color: rgba(255,255,255,.65); line-height: 1.75; margin: 0; max-width: 680px; }
.pso-compliance-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.pso-cbadge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 10px 20px;
    text-align: center;
    white-space: nowrap;
}
.pso-creds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 52px;
}
.pso-cred-card {
    background: #fff;
    border-top: 3px solid var(--pso-gold);
    padding: 32px 26px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.06);
    transition: transform .25s, box-shadow .25s;
}
.pso-cred-card:hover { transform: translateY(-5px); box-shadow: 0 14px 38px rgba(0,0,0,0.1); }
.pso-cred-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--pso-ink);
    text-transform: none;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
}
.pso-cred-card p { font-size: 0.88rem; color: var(--pso-muted); line-height: 1.68; margin: 0; }
.pso-cred-ico {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 14px;
    color: var(--pso-gold);
}
.pso-process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 56px;
    max-width: 860px;
    margin-inline: auto;
}
.pso-proc-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    align-items: flex-start;
    padding: 36px 0;
    border-bottom: 1px solid var(--pso-border-light);
}
.pso-proc-item:last-child { border-bottom: none; }
.pso-proc-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.pso-proc-circle {
    width: 52px; height: 52px;
    border: 2px solid var(--pso-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--pso-gold);
    flex-shrink: 0;
    transition: background .25s, color .25s;
}
.pso-proc-item:hover .pso-proc-circle { background: var(--pso-gold); color: #fff; }
.pso-proc-connector {
    width: 1px; flex: 1;
    min-height: 24px;
    background: rgba(183,28,28,.25);
    margin-top: 4px;
}
.pso-proc-item:last-child .pso-proc-connector { display: none; }
.pso-proc-body { padding-top: 12px; }
.pso-proc-body h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pso-ink);
    text-transform: none;
    letter-spacing: 0.05em;
    margin: 0 0 8px;
}
.pso-proc-body p { font-size: 0.9rem; color: var(--pso-muted); line-height: 1.72; margin: 0; }
.pso-faq-wrap { max-width: 820px; margin: 52px auto 0; }
.pso-faq-item { border-bottom: 1px solid var(--pso-border-light); }
.pso-faq-btn {
    width: 100%; background: none; border: none;
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; cursor: pointer; text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.12rem; font-weight: 700;
    color: var(--pso-ink);
    text-transform: none;
    letter-spacing: 0;
    transition: color .2s;
}
.pso-faq-btn:hover { color: var(--pso-gold); }
.pso-faq-ico {
    width: 26px; height: 26px;
    border: 1.5px solid rgba(183,28,28,.5);
    color: var(--pso-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700;
    flex-shrink: 0; line-height: 1;
    transition: background .25s, transform .3s, border-color .25s;
}
.pso-faq-item.open .pso-faq-ico { background: var(--pso-gold); color: #fff; border-color: var(--pso-gold); transform: rotate(45deg); }
.pso-faq-ans {
    display: none;
    padding: 0 0 20px;
    font-size: 0.94rem;
    color: var(--pso-muted);
    line-height: 1.8;
}
.pso-faq-item.open .pso-faq-ans { display: block; }
.pso-cta {
    background: var(--pso-blue);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pso-cta-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.pso-cta-inner { position: relative; z-index: 1; width: min(700px, 92%); margin-inline: auto; }
.pso-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--pso-gold);
    margin-bottom: 18px;
}
.pso-cta-tag::before, .pso-cta-tag::after { content: '—'; opacity: .5; }
.pso-cta-h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.03em;
    line-height: 1.05;
    margin: 0 0 18px;
}
.pso-cta-h2 .pso-accent { color: var(--pso-gold); }
.pso-cta-p { font-size: 1.02rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 38px; font-weight: 300; }
.pso-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pso-btn-red {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--pso-gold); color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    letter-spacing: 0.02em; text-transform: none;
    padding: 15px 34px; text-decoration: none;
    transition: background .25s, transform .2s;
    box-shadow: 0 6px 26px rgba(183,28,28,.35);
}
.pso-btn-red:hover { background: var(--pso-gold-light); transform: translateY(-2px); color: #fff; }
.pso-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.85);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; font-weight: 700;
    letter-spacing: 0.02em; text-transform: none;
    padding: 15px 34px; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.35);
    transition: background .25s, color .25s, border-color .25s;
}
.pso-btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.7); }
.pso-cta-checks {
    display: flex; gap: 28px; justify-content: center;
    margin-top: 36px; flex-wrap: wrap;
}
.pso-cta-check {
    font-size: 0.8rem; color: rgba(255,255,255,.45);
    display: flex; align-items: center; gap: 7px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.pso-cta-check::before { content: '◆'; color: var(--pso-gold); font-size: 0.5rem; }
.pso-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.pso-reveal.visible { opacity: 1; transform: none; }
@media (max-width: 1024px) {
    .pso-about-grid { grid-template-columns: 1fr; gap: 50px; }
    .pso-img-wrap { max-width: 480px; margin: 0 auto; }
    .pso-cap-grid { grid-template-columns: repeat(2,1fr); }
    .pso-creds-grid { grid-template-columns: repeat(2,1fr); }
    .pso-compliance-inner { grid-template-columns: 1fr; gap: 32px; }
    .pso-compliance-badges { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .pso-sec { /* padding: 60px 0; */ }
    .pso-stats-grid { grid-template-columns: repeat(2,1fr); }
    .pso-stat { border-right: none; border-bottom: 1px solid var(--pso-border-light); padding: 20px 16px; }
    .pso-stat:nth-child(odd) { border-right: 1px solid var(--pso-border-light); }
    .pso-stat:nth-last-child(-n+2) { border-bottom: none; }
    .pso-cap-grid { grid-template-columns: 1fr; }
    .pso-creds-grid { grid-template-columns: repeat(2,1fr); }
    .pso-proc-item { grid-template-columns: 52px 1fr; gap: 16px; padding: 26px 0; }
    .pso-process-list { max-width: 100%; }
    .pso-h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
}
@media (max-width: 480px) {
    .pso-sec { padding: 48px 0; }
    .pso-stats-bar { padding: 36px 0; }
    .pso-stats-grid { grid-template-columns: repeat(2,1fr); }
    .pso-stat { padding: 18px 12px; }
    .pso-stat-num { font-size: 2.2rem; }
    .pso-creds-grid { grid-template-columns: 1fr; }
    .pso-proc-item { grid-template-columns: 44px 1fr; gap: 12px; }
    .pso-proc-circle { width: 44px; height: 44px; font-size: 1.05rem; }
    .pso-cta-btns { flex-direction: column; align-items: stretch; }
    .pso-btn-red, .pso-btn-outline { justify-content: center; padding: 14px 20px; }
    .pso-cta-checks { flex-direction: column; align-items: center; gap: 10px; }
    .pso-about-cta, .pso-about-cta-solid { width: 100%; justify-content: center; margin-left: 0; }
    .pso-compliance-badges { flex-direction: column; }
    .pso-cbadge { font-size: 0.72rem; padding: 8px 14px; }
    .pso-img-ribbon { font-size: 0.65rem; padding: 6px 14px 6px 18px; }
}

/* ============================================================
   bouncers.php
   ============================================================ */
/* ═══════════════════════════════════════════
   Bouncer Services | Light Corporate Theme
   Prefix: bn-  |  Fonts: Plus Jakarta Sans + Lato
   Palette: ISS Navy #0b3a75 · Red #d71920
═══════════════════════════════════════════ */
:root {
    --bn-primary: #0b3a75;
    --bn-red:     #d71920;
    --bn-ink:     #111827;
    --bn-muted:   #5a6270;
    --bn-bg:      #f8fafc;
    --bn-bg2:     #f1f5f9;
    --bn-white:   #ffffff;
    --bn-border:  rgba(0,0,0,0.08);
    --bn-shadow:  0 4px 24px rgba(0,0,0,0.07);
}
.bn-page { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--bn-ink); }
.bn-page h1,.bn-page h2,.bn-page h3,.bn-page h4 { font-family: 'Plus Jakarta Sans', sans-serif; }

/* STATS */
.bn-stats { background: var(--bn-white); border-bottom: 1px solid var(--bn-border); }
.bn-stats-grid { width: min(1140px,92%); margin-inline: auto; display: grid; grid-template-columns: repeat(4,1fr); }
.bn-stat { padding: 36px 20px; text-align: center; border-right: 1px solid var(--bn-border); transition: background .2s; }
.bn-stat:last-child { border-right: none; }
.bn-stat:hover { background: var(--bn-bg); }
.bn-stat-n { font-size: 2.8rem; font-weight: 800; color: var(--bn-primary); line-height: 1; display: block; }
.bn-stat-n span { color: var(--bn-red); }
.bn-stat-l { font-family: 'Lato',sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--bn-muted); text-transform: uppercase; letter-spacing: .12em; display: block; margin-top: 6px; }

/* SHARED */
.bn-sec { padding: 84px 0; }
.bn-sec-white { background: var(--bn-white); }
.bn-sec-bg    { background: var(--bn-bg); }
.bn-sec-dark  { background: var(--bn-primary); }
.bn-wrap { width: min(1140px,92%); margin-inline: auto; }
.bn-center { text-align: center; }
.bn-center .bn-lead { margin-inline: auto; }
.bn-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--bn-red); margin-bottom: 12px; }
.bn-tag::before { content: ''; width: 20px; height: 2px; background: var(--bn-red); }
.bn-tag-light { color: rgba(255,255,255,.65); }
.bn-tag-light::before { background: rgba(255,255,255,.4); }
.bn-h2 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 800; color: var(--bn-ink); line-height: 1.1; margin: 0 0 16px; }
.bn-h2 em { font-style: normal; color: var(--bn-red); }
.bn-h2-light { color: #fff; }
.bn-h2-light em { color: #ffd942; }
.bn-lead { font-family: 'Lato',sans-serif; font-size: 1.04rem; color: var(--bn-muted); line-height: 1.82; font-weight: 300; max-width: 580px; }
.bn-lead-light { color: rgba(255,255,255,.58); }

/* SPLIT */
.bn-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.bn-split-img { position: relative; }
.bn-split-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.bn-split-img::after { content: ''; position: absolute; top: -12px; right: -12px; width: 100%; height: 100%; border: 2px solid var(--bn-red); z-index: -1; }
.bn-check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.bn-check-item { display: flex; align-items: center; gap: 10px; font-family: 'Lato',sans-serif; font-size: .9rem; font-weight: 400; color: var(--bn-ink); }
.bn-check-item::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--bn-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; flex-shrink: 0; }

/* DEPLOY GRID */
.bn-deploy-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 50px; }
.bn-deploy-card { background: var(--bn-white); border: 1px solid var(--bn-border); padding: 28px 22px; transition: box-shadow .25s,transform .25s,border-color .25s; position: relative; overflow: hidden; }
.bn-deploy-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--bn-red); transition: height .3s; }
.bn-deploy-card:hover { box-shadow: var(--bn-shadow); transform: translateY(-3px); border-color: rgba(11,58,117,.25); }
.bn-deploy-card:hover::before { height: 100%; }
.bn-deploy-ico { font-size: 1.9rem; display: block; margin-bottom: 12px; color: var(--bn-red); }
.bn-deploy-card h4 { font-size: 1rem; font-weight: 700; color: var(--bn-ink); margin: 0 0 7px; }
.bn-deploy-card p { font-family: 'Lato',sans-serif; font-size: .86rem; color: var(--bn-muted); line-height: 1.65; margin: 0; }

/* FEATURES DARK */
.bn-feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.1); margin-top: 50px; }
.bn-feat { background: rgba(255,255,255,.04); padding: 34px 28px; transition: background .25s; }
.bn-feat:hover { background: rgba(255,255,255,.09); }
.bn-feat-num { font-size: 2.6rem; font-weight: 800; color: rgba(255,255,255,.07); line-height: 1; display: block; margin-bottom: 14px; }
.bn-feat h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 10px; }
.bn-feat p { font-family: 'Lato',sans-serif; font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.68; margin: 0; }

/* PROCESS */
.bn-process-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 54px; position: relative; }
.bn-process-row::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 1px; background: var(--bn-border); z-index: 0; }
.bn-proc { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.bn-proc-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--bn-white); border: 2px solid var(--bn-border); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; color: var(--bn-muted); box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: background .25s,color .25s,border-color .25s; }
.bn-proc:hover .bn-proc-dot { background: var(--bn-primary); color: #fff; border-color: var(--bn-primary); }
.bn-proc h4 { font-size: .94rem; font-weight: 700; color: var(--bn-ink); margin: 0 0 6px; }
.bn-proc p { font-family: 'Lato',sans-serif; font-size: .8rem; color: var(--bn-muted); line-height: 1.6; margin: 0; }

/* FAQ */
.bn-faq-wrap { max-width: 760px; margin: 48px auto 0; }
.bn-faq-item { border-bottom: 1px solid var(--bn-border); }
.bn-faq-btn { width: 100%; background: none; border: none; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1rem; font-weight: 700; color: var(--bn-ink); transition: color .2s; }
.bn-faq-btn:hover { color: var(--bn-primary); }
.bn-faq-ico { width: 26px; height: 26px; flex-shrink: 0; border: 1.5px solid var(--bn-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--bn-muted); transition: background .2s,transform .3s,border-color .2s,color .2s; }
.bn-faq-item.open .bn-faq-ico { background: var(--bn-red); color: #fff; border-color: var(--bn-red); transform: rotate(45deg); }
.bn-faq-ans { display: none; padding: 0 0 18px; font-family: 'Lato',sans-serif; font-size: .94rem; color: var(--bn-muted); line-height: 1.8; }
.bn-faq-item.open .bn-faq-ans { display: block; }

/* CTA */
.bn-cta { background: var(--bn-primary); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.bn-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.bn-cta-inner { position: relative; z-index: 1; width: min(680px,92%); margin-inline: auto; }
.bn-cta-tag { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-bottom: 16px; }
.bn-cta-h2 { font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 800; color: #fff; line-height: 1.1; margin: 0 0 16px; }
.bn-cta-h2 em { font-style: normal; color: #ffd942; }
.bn-cta-p { font-family: 'Lato',sans-serif; font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 36px; }
.bn-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bn-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--bn-red); color: #fff; font-size: .92rem; font-weight: 700; padding: 14px 32px; border-radius: 4px; text-decoration: none; transition: background .2s,transform .2s; box-shadow: 0 6px 20px rgba(215,25,32,.4); }
.bn-btn-primary:hover { background: #b8151b; transform: translateY(-2px); color: #fff; }
.bn-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,.75); font-size: .92rem; font-weight: 600; padding: 14px 32px; border-radius: 4px; text-decoration: none; border: 1.5px solid rgba(255,255,255,.25); transition: border-color .2s,color .2s,background .2s; }
.bn-btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.07); }

/* REVEAL */
.bn-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease,transform .6s ease; }
.bn-reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width:1024px) {
    .bn-split { grid-template-columns: 1fr; gap: 44px; }
    .bn-split-img { max-width: 520px; margin: 0 auto; }
    .bn-split-img::after { display: none; }
    .bn-deploy-grid { grid-template-columns: repeat(2,1fr); }
    .bn-feat-grid { grid-template-columns: repeat(2,1fr); }
    .bn-process-row { grid-template-columns: repeat(3,1fr); gap: 24px; }
    .bn-process-row::before { display: none; }
    .bn-h2 { font-size: clamp(1.8rem,4vw,2.6rem); }
}
@media (max-width:768px) {
    .bn-sec { padding: 56px 0; }
    .bn-stats-grid { grid-template-columns: repeat(2,1fr); }
    .bn-stat { border-right: none; border-bottom: 1px solid var(--bn-border); }
    .bn-stat:nth-child(odd) { border-right: 1px solid var(--bn-border); }
    .bn-stat:nth-last-child(-n+2) { border-bottom: none; }
    .bn-check-list { grid-template-columns: 1fr; }
    .bn-feat-grid { grid-template-columns: 1fr; }
    .bn-deploy-grid { grid-template-columns: repeat(2,1fr); }
    .bn-process-row { grid-template-columns: repeat(2,1fr); gap: 20px; }
    .bn-lead { max-width: 100%; }
    .bn-h2 { font-size: clamp(1.65rem,5vw,2.1rem); }
    .bn-cta { padding: 64px 0; }
    .bn-faq-btn { font-size: .95rem; }
}
@media (max-width:480px) {
    .bn-sec { padding: 44px 0; }
    .bn-stat-n { font-size: 2.2rem; }
    .bn-h2 { font-size: clamp(1.5rem,6vw,1.9rem); }
    .bn-deploy-grid,.bn-feat-grid,.bn-process-row { grid-template-columns: 1fr; }
    .bn-cta { padding: 52px 0; }
    .bn-cta-btns { flex-direction: column; align-items: stretch; }
    .bn-btn-primary,.bn-btn-ghost { justify-content: center; width: 100%; }
}

/* ============================================================
   manpower-service-provider.php
   ============================================================ */
/* ═══════════════════════════════════════════
   Manpower Service Provider | Light Corporate
   Prefix: mp-  |  Fonts: Plus Jakarta Sans + Lato
   Palette: ISS Navy #0b3a75 · Red #d71920
═══════════════════════════════════════════ */
:root {
    --mp-primary: #0b3a75;
    --mp-red:     #d71920;
    --mp-ink:     #111827;
    --mp-muted:   #5a6270;
    --mp-bg:      #f8fafc;
    --mp-bg2:     #f1f5f9;
    --mp-white:   #ffffff;
    --mp-border:  rgba(0,0,0,0.08);
    --mp-shadow:  0 4px 24px rgba(0,0,0,0.07);
}
.mp-page { font-family: 'Plus Jakarta Sans',sans-serif; color: var(--mp-ink); }
.mp-page h1,.mp-page h2,.mp-page h3,.mp-page h4 { font-family: 'Plus Jakarta Sans',sans-serif; }
.mp-stats { background: var(--mp-white); border-bottom: 1px solid var(--mp-border); }
.mp-stats-grid { width: min(1140px,92%); margin-inline: auto; display: grid; grid-template-columns: repeat(4,1fr); }
.mp-stat { padding: 36px 20px; text-align: center; border-right: 1px solid var(--mp-border); transition: background .2s; }
.mp-stat:last-child { border-right: none; }
.mp-stat:hover { background: var(--mp-bg); }
.mp-stat-n { font-size: 2.8rem; font-weight: 800; color: var(--mp-primary); line-height: 1; display: block; }
.mp-stat-n span { color: var(--mp-red); }
.mp-stat-l { font-family: 'Lato',sans-serif; font-size: .72rem; font-weight: 700; color: var(--mp-muted); text-transform: uppercase; letter-spacing: .12em; display: block; margin-top: 6px; }
.mp-sec { padding: 84px 0; }
.mp-sec-white { background: var(--mp-white); }
.mp-sec-bg    { background: var(--mp-bg); }
.mp-sec-dark  { background: var(--mp-primary); }
.mp-wrap { width: min(1140px,92%); margin-inline: auto; }
.mp-center { text-align: center; }
.mp-center .mp-lead { margin-inline: auto; }
.mp-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mp-red); margin-bottom: 12px; }
.mp-tag::before { content: ''; width: 20px; height: 2px; background: var(--mp-red); }
.mp-tag-light { color: rgba(255,255,255,.65); }
.mp-tag-light::before { background: rgba(255,255,255,.4); }
.mp-h2 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 800; color: var(--mp-ink); line-height: 1.1; margin: 0 0 16px; }
.mp-h2 em { font-style: normal; color: var(--mp-red); }
.mp-h2-light { color: #fff; }
.mp-h2-light em { color: #ffd942; }
.mp-lead { font-family: 'Lato',sans-serif; font-size: 1.04rem; color: var(--mp-muted); line-height: 1.82; font-weight: 300; max-width: 580px; }
.mp-lead-light { color: rgba(255,255,255,.58); }
.mp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.mp-split-img { position: relative; }
.mp-split-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.mp-split-img::after { content: ''; position: absolute; top: -12px; right: -12px; width: 100%; height: 100%; border: 2px solid var(--mp-red); z-index: -1; }
.mp-check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.mp-check-item { display: flex; align-items: center; gap: 10px; font-family: 'Lato',sans-serif; font-size: .9rem; color: var(--mp-ink); }
.mp-check-item::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--mp-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; flex-shrink: 0; }
.mp-type-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.mp-type-card { background: var(--mp-white); border: 1px solid var(--mp-border); padding: 36px 28px; transition: box-shadow .25s,transform .25s; position: relative; overflow: hidden; }
.mp-type-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--mp-primary),var(--mp-red)); }
.mp-type-card:hover { box-shadow: 0 12px 40px rgba(11,58,117,.12); transform: translateY(-4px); }
.mp-type-num { font-size: 3.5rem; font-weight: 800; color: rgba(11,58,117,.07); line-height: 1; display: block; margin-bottom: 16px; }
.mp-type-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--mp-ink); margin: 0 0 12px; }
.mp-type-card p { font-family: 'Lato',sans-serif; font-size: .9rem; color: var(--mp-muted); line-height: 1.7; margin: 0 0 16px; }
.mp-type-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mp-type-tag { background: var(--mp-bg2); border: 1px solid var(--mp-border); padding: 4px 10px; font-size: .78rem; font-weight: 600; color: var(--mp-ink); }
.mp-ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: rgba(255,255,255,.1); margin-top: 50px; }
.mp-ind-item { background: rgba(255,255,255,.04); padding: 28px 22px; transition: background .25s; }
.mp-ind-item:hover { background: rgba(255,255,255,.09); }
.mp-ind-ico { font-size: 1.8rem; display: block; margin-bottom: 12px; color: var(--mp-red); }
.mp-ind-item h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 6px; }
.mp-ind-item p { font-family: 'Lato',sans-serif; font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; }
.mp-compliance { background: var(--mp-bg2); border-top: 1px solid var(--mp-border); border-bottom: 1px solid var(--mp-border); padding: 44px 0; }
.mp-compliance-inner { width: min(1140px,92%); margin-inline: auto; }
.mp-compliance-label { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mp-muted); display: block; margin-bottom: 20px; text-align: center; }
.mp-compliance-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.mp-comp-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--mp-white); border: 1px solid var(--mp-border); padding: 12px 20px; font-size: .9rem; font-weight: 700; color: var(--mp-ink); box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.mp-comp-tag::before { content: '✓'; color: var(--mp-primary); font-weight: 800; font-size: .85rem; }
.mp-process-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 54px; position: relative; }
.mp-process-row::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 1px; background: var(--mp-border); z-index: 0; }
.mp-proc { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.mp-proc-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--mp-white); border: 2px solid var(--mp-border); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; color: var(--mp-muted); box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: background .25s,color .25s,border-color .25s; }
.mp-proc:hover .mp-proc-dot { background: var(--mp-primary); color: #fff; border-color: var(--mp-primary); }
.mp-proc h4 { font-size: .94rem; font-weight: 700; color: var(--mp-ink); margin: 0 0 6px; }
.mp-proc p { font-family: 'Lato',sans-serif; font-size: .8rem; color: var(--mp-muted); line-height: 1.6; margin: 0; }
.mp-faq-wrap { max-width: 760px; margin: 48px auto 0; }
.mp-faq-item { border-bottom: 1px solid var(--mp-border); }
.mp-faq-btn { width: 100%; background: none; border: none; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1rem; font-weight: 700; color: var(--mp-ink); transition: color .2s; }
.mp-faq-btn:hover { color: var(--mp-primary); }
.mp-faq-ico { width: 26px; height: 26px; flex-shrink: 0; border: 1.5px solid var(--mp-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--mp-muted); transition: background .2s,transform .3s,border-color .2s,color .2s; }
.mp-faq-item.open .mp-faq-ico { background: var(--mp-red); color: #fff; border-color: var(--mp-red); transform: rotate(45deg); }
.mp-faq-ans { display: none; padding: 0 0 18px; font-family: 'Lato',sans-serif; font-size: .94rem; color: var(--mp-muted); line-height: 1.8; }
.mp-faq-item.open .mp-faq-ans { display: block; }
.mp-cta { background: var(--mp-primary); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.mp-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.mp-cta-inner { position: relative; z-index: 1; width: min(680px,92%); margin-inline: auto; }
.mp-cta-tag { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-bottom: 16px; }
.mp-cta-h2 { font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 800; color: #fff; line-height: 1.1; margin: 0 0 16px; }
.mp-cta-h2 em { font-style: normal; color: #ffd942; }
.mp-cta-p { font-family: 'Lato',sans-serif; font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 36px; }
.mp-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.mp-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--mp-red); color: #fff; font-size: .92rem; font-weight: 700; padding: 14px 32px; border-radius: 4px; text-decoration: none; transition: background .2s,transform .2s; box-shadow: 0 6px 20px rgba(215,25,32,.4); }
.mp-btn-primary:hover { background: #b8151b; transform: translateY(-2px); color: #fff; }
.mp-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,.75); font-size: .92rem; font-weight: 600; padding: 14px 32px; border-radius: 4px; text-decoration: none; border: 1.5px solid rgba(255,255,255,.25); transition: border-color .2s,color .2s,background .2s; }
.mp-btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.07); }
.mp-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease,transform .6s ease; }
.mp-reveal.visible { opacity: 1; transform: none; }
@media (max-width:1024px) {
    .mp-split { grid-template-columns: 1fr; gap: 44px; }
    .mp-split-img { max-width: 520px; margin: 0 auto; }
    .mp-split-img::after { display: none; }
    .mp-type-grid { grid-template-columns: repeat(2,1fr); }
    .mp-ind-grid { grid-template-columns: repeat(2,1fr); }
    .mp-process-row { grid-template-columns: repeat(3,1fr); gap: 24px; }
    .mp-process-row::before { display: none; }
    .mp-h2 { font-size: clamp(1.8rem,4vw,2.6rem); }
}
@media (max-width:768px) {
    .mp-sec { padding: 56px 0; }
    .mp-stats-grid { grid-template-columns: repeat(2,1fr); }
    .mp-stat { border-right: none; border-bottom: 1px solid var(--mp-border); }
    .mp-stat:nth-child(odd) { border-right: 1px solid var(--mp-border); }
    .mp-stat:nth-last-child(-n+2) { border-bottom: none; }
    .mp-check-list { grid-template-columns: 1fr; }
    .mp-type-grid { grid-template-columns: 1fr; }
    .mp-ind-grid { grid-template-columns: repeat(2,1fr); }
    .mp-process-row { grid-template-columns: repeat(2,1fr); gap: 20px; }
    .mp-lead { max-width: 100%; }
    .mp-h2 { font-size: clamp(1.65rem,5vw,2.1rem); }
    .mp-cta { padding: 64px 0; }
    .mp-faq-btn { font-size: .95rem; }
    .mp-compliance { padding: 32px 0; }
    .mp-compliance-tags { gap: 8px; }
    .mp-comp-tag { font-size: .84rem; padding: 10px 14px; }
}
@media (max-width:480px) {
    .mp-sec { padding: 44px 0; }
    .mp-stat-n { font-size: 2.2rem; }
    .mp-h2 { font-size: clamp(1.5rem,6vw,1.9rem); }
    .mp-type-grid,.mp-ind-grid,.mp-process-row { grid-template-columns: 1fr; }
    .mp-type-card { padding: 28px 20px; }
    .mp-cta { padding: 52px 0; }
    .mp-cta-btns { flex-direction: column; align-items: stretch; }
    .mp-btn-primary,.mp-btn-ghost { justify-content: center; width: 100%; }
    .mp-comp-tag { font-size: .8rem; }
}

/* ============================================================
   Mobile Bottom Navigation
   ============================================================ */
.mobile-bottom-nav {
    background: #fff;
    border-top: 1px solid #e7ebf2;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
    height: 64px;
    align-items: stretch;
    justify-content: space-around;
    padding: 0;
    width: 100%;
	position: fixed;
    bottom: 0;
}
.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 3px;
    color: #8a9bb0;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    padding: 8px 4px;
}
.mob-nav-item i {
    font-size: 20px;
    line-height: 1;
    color: #8a9bb0;
    transition: color 0.2s, transform 0.2s;
}
.mob-nav-item span {
    line-height: 1;
}
.mob-nav-item.active,
.mob-nav-item.active i {
    color: var(--red);
}
.mob-nav-item:active i,
.mob-nav-item:hover i {
    color: var(--red);
    transform: translateY(-2px);
}
.mob-nav-item:active,
.mob-nav-item:hover {
    color: var(--red);
    text-decoration: none;
}

/* ============================================================
   event-management.php
   ============================================================ */
/* ═══════════════════════════════════════════
   Event Management | Light Corporate Theme
   Prefix: evm-  |  Fonts: Plus Jakarta Sans + Lato
   Palette: ISS Navy #0b3a75 · Red #d71920
═══════════════════════════════════════════ */
:root {
    --evm-primary: #0b3a75;
    --evm-red:     #d71920;
    --evm-ink:     #111827;
    --evm-muted:   #5a6270;
    --evm-bg:      #f8fafc;
    --evm-bg2:     #f1f5f9;
    --evm-white:   #ffffff;
    --evm-border:  rgba(0,0,0,0.08);
    --evm-shadow:  0 4px 24px rgba(0,0,0,0.07);
}
.evm-page { font-family: 'Plus Jakarta Sans',sans-serif; color: var(--evm-ink); }
.evm-page h1,.evm-page h2,.evm-page h3,.evm-page h4 { font-family: 'Plus Jakarta Sans',sans-serif; }
.evm-stats { background: var(--evm-white); border-bottom: 1px solid var(--evm-border); }
.evm-stats-grid { width: min(1140px,92%); margin-inline: auto; display: grid; grid-template-columns: repeat(4,1fr); }
.evm-stat { padding: 36px 20px; text-align: center; border-right: 1px solid var(--evm-border); transition: background .2s; }
.evm-stat:last-child { border-right: none; }
.evm-stat:hover { background: var(--evm-bg); }
.evm-stat-n { font-size: 2.8rem; font-weight: 800; color: var(--evm-primary); line-height: 1; display: block; }
.evm-stat-n span { color: var(--evm-red); }
.evm-stat-l { font-family: 'Lato',sans-serif; font-size: .72rem; font-weight: 700; color: var(--evm-muted); text-transform: uppercase; letter-spacing: .12em; display: block; margin-top: 6px; }
.evm-sec { padding: 84px 0; }
.evm-sec-white { background: var(--evm-white); }
.evm-sec-bg    { background: var(--evm-bg); }
.evm-sec-dark  { background: var(--evm-primary); }
.evm-wrap { width: min(1140px,92%); margin-inline: auto; }
.evm-center { text-align: center; }
.evm-center .evm-lead { margin-inline: auto; }
.evm-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--evm-red); margin-bottom: 12px; }
.evm-tag::before { content: ''; width: 20px; height: 2px; background: var(--evm-red); }
.evm-tag-light { color: rgba(255,255,255,.65); }
.evm-tag-light::before { background: rgba(255,255,255,.4); }
.evm-h2 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 800; color: var(--evm-ink); line-height: 1.1; margin: 0 0 16px; }
.evm-h2 em { font-style: normal; color: var(--evm-red); }
.evm-h2-light { color: #fff; }
.evm-h2-light em { color: #ffd942; }
.evm-lead { font-family: 'Lato',sans-serif; font-size: 1.04rem; color: var(--evm-muted); line-height: 1.82; font-weight: 300; max-width: 580px; }
.evm-lead-light { color: rgba(255,255,255,.58); }
.evm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.evm-split-img { position: relative; }
.evm-split-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.evm-split-img::after { content: ''; position: absolute; bottom: -12px; left: -12px; width: 100%; height: 100%; border: 2px solid var(--evm-primary); z-index: -1; }
.evm-check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.evm-check-item { display: flex; align-items: center; gap: 10px; font-family: 'Lato',sans-serif; font-size: .9rem; color: var(--evm-ink); }
.evm-check-item::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--evm-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; flex-shrink: 0; }
.evm-event-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 50px; }
.evm-event-card { background: var(--evm-white); border: 1px solid var(--evm-border); padding: 28px 22px; transition: box-shadow .25s,transform .25s,border-color .25s; position: relative; overflow: hidden; }
.evm-event-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--evm-primary); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.evm-event-card:hover { box-shadow: var(--evm-shadow); transform: translateY(-3px); }
.evm-event-card:hover::before { transform: scaleX(1); }
.evm-event-ico { font-size: 2rem; display: block; margin-bottom: 12px; color: var(--evm-red); }
.evm-event-card h4 { font-size: 1rem; font-weight: 700; color: var(--evm-ink); margin: 0 0 7px; }
.evm-event-card p { font-family: 'Lato',sans-serif; font-size: .86rem; color: var(--evm-muted); line-height: 1.65; margin: 0; }
.evm-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: rgba(255,255,255,.1); margin-top: 50px; }
.evm-svc { background: rgba(255,255,255,.04); padding: 34px 28px; transition: background .25s; }
.evm-svc:hover { background: rgba(255,255,255,.09); }
.evm-svc-num { font-size: 2.6rem; font-weight: 800; color: rgba(255,255,255,.07); line-height: 1; display: block; margin-bottom: 14px; }
.evm-svc h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 10px; }
.evm-svc p { font-family: 'Lato',sans-serif; font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.68; margin: 0; }
.evm-process-row { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; margin-top: 54px; position: relative; }
.evm-process-row::before { content: ''; position: absolute; top: 27px; left: 8%; right: 8%; height: 1px; background: var(--evm-border); z-index: 0; }
.evm-proc { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.evm-proc-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--evm-white); border: 2px solid var(--evm-border); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: .95rem; font-weight: 800; color: var(--evm-muted); box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: background .25s,color .25s,border-color .25s; }
.evm-proc:hover .evm-proc-dot { background: var(--evm-primary); color: #fff; border-color: var(--evm-primary); }
.evm-proc h4 { font-size: .9rem; font-weight: 700; color: var(--evm-ink); margin: 0 0 6px; }
.evm-proc p { font-family: 'Lato',sans-serif; font-size: .78rem; color: var(--evm-muted); line-height: 1.6; margin: 0; }
.evm-faq-wrap { max-width: 760px; margin: 48px auto 0; }
.evm-faq-item { border-bottom: 1px solid var(--evm-border); }
.evm-faq-btn { width: 100%; background: none; border: none; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1rem; font-weight: 700; color: var(--evm-ink); transition: color .2s; }
.evm-faq-btn:hover { color: var(--evm-primary); }
.evm-faq-ico { width: 26px; height: 26px; flex-shrink: 0; border: 1.5px solid var(--evm-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--evm-muted); transition: background .2s,transform .3s,border-color .2s,color .2s; }
.evm-faq-item.open .evm-faq-ico { background: var(--evm-red); color: #fff; border-color: var(--evm-red); transform: rotate(45deg); }
.evm-faq-ans { display: none; padding: 0 0 18px; font-family: 'Lato',sans-serif; font-size: .94rem; color: var(--evm-muted); line-height: 1.8; }
.evm-faq-item.open .evm-faq-ans { display: block; }
.evm-cta { background: var(--evm-primary); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.evm-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.evm-cta-inner { position: relative; z-index: 1; width: min(680px,92%); margin-inline: auto; }
.evm-cta-tag { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-bottom: 16px; }
.evm-cta-h2 { font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 800; color: #fff; line-height: 1.1; margin: 0 0 16px; }
.evm-cta-h2 em { font-style: normal; color: #ffd942; }
.evm-cta-p { font-family: 'Lato',sans-serif; font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 36px; }
.evm-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.evm-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--evm-red); color: #fff; font-size: .92rem; font-weight: 700; padding: 14px 32px; border-radius: 4px; text-decoration: none; transition: background .2s,transform .2s; box-shadow: 0 6px 20px rgba(215,25,32,.4); }
.evm-btn-primary:hover { background: #b8151b; transform: translateY(-2px); color: #fff; }
.evm-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,.75); font-size: .92rem; font-weight: 600; padding: 14px 32px; border-radius: 4px; text-decoration: none; border: 1.5px solid rgba(255,255,255,.25); transition: border-color .2s,color .2s,background .2s; }
.evm-btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.07); }
.evm-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease,transform .6s ease; }
.evm-reveal.visible { opacity: 1; transform: none; }
@media (max-width:1024px) {
    .evm-split { grid-template-columns: 1fr; gap: 44px; }
    .evm-split-img { max-width: 520px; margin: 0 auto; }
    .evm-split-img::after { display: none; }
    .evm-event-grid { grid-template-columns: repeat(2,1fr); }
    .evm-svc-grid { grid-template-columns: repeat(2,1fr); }
    .evm-process-row { grid-template-columns: repeat(3,1fr); gap: 24px; }
    .evm-process-row::before { display: none; }
    .evm-h2 { font-size: clamp(1.8rem,4vw,2.6rem); }
}
@media (max-width:768px) {
    .evm-sec { padding: 56px 0; }
    .evm-stats-grid { grid-template-columns: repeat(2,1fr); }
    .evm-stat { border-right: none; border-bottom: 1px solid var(--evm-border); }
    .evm-stat:nth-child(odd) { border-right: 1px solid var(--evm-border); }
    .evm-stat:nth-last-child(-n+2) { border-bottom: none; }
    .evm-check-list { grid-template-columns: 1fr; }
    .evm-svc-grid { grid-template-columns: 1fr; }
    .evm-event-grid { grid-template-columns: repeat(2,1fr); }
    .evm-process-row { grid-template-columns: repeat(2,1fr); gap: 20px; }
    .evm-lead { max-width: 100%; }
    .evm-h2 { font-size: clamp(1.65rem,5vw,2.1rem); }
    .evm-cta { padding: 64px 0; }
    .evm-faq-btn { font-size: .95rem; }
    .evm-proc h4 { font-size: .86rem; }
}
@media (max-width:480px) {
    .evm-sec { padding: 44px 0; }
    .evm-stat-n { font-size: 2.2rem; }
    .evm-h2 { font-size: clamp(1.5rem,6vw,1.9rem); }
    .evm-event-grid,.evm-svc-grid,.evm-process-row { grid-template-columns: 1fr; }
    .evm-cta { padding: 52px 0; }
    .evm-cta-btns { flex-direction: column; align-items: stretch; }
    .evm-btn-primary,.evm-btn-ghost { justify-content: center; width: 100%; }
}

/* ============================================================
   hr-payroll-service-provider.php
   ============================================================ */
/* ═══════════════════════════════════════════
   HR & Payroll Service Provider | Light Corporate
   Prefix: hrp-  |  Fonts: Plus Jakarta Sans + Lato
   Palette: ISS Navy #0b3a75 · Red #d71920
═══════════════════════════════════════════ */
:root {
    --hrp-primary: #0b3a75;
    --hrp-red:     #d71920;
    --hrp-ink:     #111827;
    --hrp-muted:   #5a6270;
    --hrp-bg:      #f8fafc;
    --hrp-bg2:     #f1f5f9;
    --hrp-white:   #ffffff;
    --hrp-border:  rgba(0,0,0,0.08);
    --hrp-shadow:  0 4px 24px rgba(0,0,0,0.07);
}
.hrp-page { font-family: 'Plus Jakarta Sans',sans-serif; color: var(--hrp-ink); }
.hrp-page h1,.hrp-page h2,.hrp-page h3,.hrp-page h4 { font-family: 'Plus Jakarta Sans',sans-serif; }
.hrp-stats { background: var(--hrp-white); border-bottom: 1px solid var(--hrp-border); }
.hrp-stats-grid { width: min(1140px,92%); margin-inline: auto; display: grid; grid-template-columns: repeat(4,1fr); }
.hrp-stat { padding: 36px 20px; text-align: center; border-right: 1px solid var(--hrp-border); transition: background .2s; }
.hrp-stat:last-child { border-right: none; }
.hrp-stat:hover { background: var(--hrp-bg); }
.hrp-stat-n { font-size: 2.8rem; font-weight: 800; color: var(--hrp-primary); line-height: 1; display: block; }
.hrp-stat-n span { color: var(--hrp-red); }
.hrp-stat-l { font-family: 'Lato',sans-serif; font-size: .72rem; font-weight: 700; color: var(--hrp-muted); text-transform: uppercase; letter-spacing: .12em; display: block; margin-top: 6px; }
.hrp-sec { padding: 84px 0; }
.hrp-sec-white { background: var(--hrp-white); }
.hrp-sec-bg    { background: var(--hrp-bg); }
.hrp-sec-dark  { background: var(--hrp-primary); }
.hrp-wrap { width: min(1140px,92%); margin-inline: auto; }
.hrp-center { text-align: center; }
.hrp-center .hrp-lead { margin-inline: auto; }
.hrp-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--hrp-red); margin-bottom: 12px; }
.hrp-tag::before { content: ''; width: 20px; height: 2px; background: var(--hrp-red); }
.hrp-tag-light { color: rgba(255,255,255,.65); }
.hrp-tag-light::before { background: rgba(255,255,255,.4); }
.hrp-h2 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 800; color: var(--hrp-ink); line-height: 1.1; margin: 0 0 16px; }
.hrp-h2 em { font-style: normal; color: var(--hrp-red); }
.hrp-h2-light { color: #fff; }
.hrp-h2-light em { color: #ffd942; }
.hrp-lead { font-family: 'Lato',sans-serif; font-size: 1.04rem; color: var(--hrp-muted); line-height: 1.82; font-weight: 300; max-width: 580px; }
.hrp-lead-light { color: rgba(255,255,255,.58); }
.hrp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hrp-split-img { position: relative; }
.hrp-split-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.hrp-split-img::before { content: ''; position: absolute; bottom: -12px; left: -12px; width: 100%; height: 100%; border: 2px solid var(--hrp-primary); z-index: -1; }
.hrp-check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.hrp-check-item { display: flex; align-items: center; gap: 10px; font-family: 'Lato',sans-serif; font-size: .9rem; color: var(--hrp-ink); }
.hrp-check-item::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--hrp-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; flex-shrink: 0; }
.hrp-svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 50px; }
.hrp-svc-card { background: var(--hrp-white); border: 1px solid var(--hrp-border); padding: 28px 22px; transition: box-shadow .25s,transform .25s,border-color .25s; position: relative; overflow: hidden; }
.hrp-svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--hrp-primary); transition: width .35s; }
.hrp-svc-card:hover { box-shadow: var(--hrp-shadow); transform: translateY(-3px); }
.hrp-svc-card:hover::after { width: 100%; }
.hrp-svc-ico { font-size: 2rem; display: block; margin-bottom: 12px; color: var(--hrp-red); }
.hrp-svc-card h4 { font-size: 1rem; font-weight: 700; color: var(--hrp-ink); margin: 0 0 7px; }
.hrp-svc-card p { font-family: 'Lato',sans-serif; font-size: .86rem; color: var(--hrp-muted); line-height: 1.65; margin: 0; }
.hrp-comp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: rgba(255,255,255,.1); margin-top: 50px; }
.hrp-comp-item { background: rgba(255,255,255,.04); padding: 30px 28px; display: flex; align-items: flex-start; gap: 18px; transition: background .25s; }
.hrp-comp-item:hover { background: rgba(255,255,255,.09); }
.hrp-comp-check { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.hrp-comp-item h4 { font-size: 1.02rem; font-weight: 700; color: #fff; margin: 0 0 6px; }
.hrp-comp-item p { font-family: 'Lato',sans-serif; font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.65; margin: 0; }
.hrp-ind-band { background: var(--hrp-bg2); border-top: 1px solid var(--hrp-border); border-bottom: 1px solid var(--hrp-border); padding: 44px 0; }
.hrp-ind-inner { width: min(1140px,92%); margin-inline: auto; }
.hrp-ind-label { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--hrp-muted); display: block; margin-bottom: 20px; text-align: center; }
.hrp-ind-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hrp-ind-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--hrp-white); border: 1px solid var(--hrp-border); padding: 10px 18px; font-size: .88rem; font-weight: 600; color: var(--hrp-ink); }
.hrp-process-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 54px; position: relative; }
.hrp-process-row::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 1px; background: var(--hrp-border); z-index: 0; }
.hrp-proc { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.hrp-proc-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--hrp-white); border: 2px solid var(--hrp-border); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; color: var(--hrp-muted); box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: background .25s,color .25s,border-color .25s; }
.hrp-proc:hover .hrp-proc-dot { background: var(--hrp-primary); color: #fff; border-color: var(--hrp-primary); }
.hrp-proc h4 { font-size: .94rem; font-weight: 700; color: var(--hrp-ink); margin: 0 0 6px; }
.hrp-proc p { font-family: 'Lato',sans-serif; font-size: .8rem; color: var(--hrp-muted); line-height: 1.6; margin: 0; }
.hrp-faq-wrap { max-width: 760px; margin: 48px auto 0; }
.hrp-faq-item { border-bottom: 1px solid var(--hrp-border); }
.hrp-faq-btn { width: 100%; background: none; border: none; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1rem; font-weight: 700; color: var(--hrp-ink); transition: color .2s; }
.hrp-faq-btn:hover { color: var(--hrp-primary); }
.hrp-faq-ico { width: 26px; height: 26px; flex-shrink: 0; border: 1.5px solid var(--hrp-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--hrp-muted); transition: background .2s,transform .3s,border-color .2s,color .2s; }
.hrp-faq-item.open .hrp-faq-ico { background: var(--hrp-red); color: #fff; border-color: var(--hrp-red); transform: rotate(45deg); }
.hrp-faq-ans { display: none; padding: 0 0 18px; font-family: 'Lato',sans-serif; font-size: .94rem; color: var(--hrp-muted); line-height: 1.8; }
.hrp-faq-item.open .hrp-faq-ans { display: block; }
.hrp-cta { background: var(--hrp-primary); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.hrp-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.hrp-cta-inner { position: relative; z-index: 1; width: min(680px,92%); margin-inline: auto; }
.hrp-cta-tag { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-bottom: 16px; }
.hrp-cta-h2 { font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 800; color: #fff; line-height: 1.1; margin: 0 0 16px; }
.hrp-cta-h2 em { font-style: normal; color: #ffd942; }
.hrp-cta-p { font-family: 'Lato',sans-serif; font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 36px; }
.hrp-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hrp-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--hrp-red); color: #fff; font-size: .92rem; font-weight: 700; padding: 14px 32px; border-radius: 4px; text-decoration: none; transition: background .2s,transform .2s; box-shadow: 0 6px 20px rgba(215,25,32,.4); }
.hrp-btn-primary:hover { background: #b8151b; transform: translateY(-2px); color: #fff; }
.hrp-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,.75); font-size: .92rem; font-weight: 600; padding: 14px 32px; border-radius: 4px; text-decoration: none; border: 1.5px solid rgba(255,255,255,.25); transition: border-color .2s,color .2s,background .2s; }
.hrp-btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.07); }
.hrp-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease,transform .6s ease; }
.hrp-reveal.visible { opacity: 1; transform: none; }
@media (max-width:1024px) {
    .hrp-split { grid-template-columns: 1fr; gap: 44px; }
    .hrp-split-img { max-width: 520px; margin: 0 auto; }
    .hrp-split-img::before { display: none; }
    .hrp-svc-grid { grid-template-columns: repeat(2,1fr); }
    .hrp-comp-grid { grid-template-columns: 1fr; }
    .hrp-process-row { grid-template-columns: repeat(3,1fr); gap: 24px; }
    .hrp-process-row::before { display: none; }
    .hrp-h2 { font-size: clamp(1.8rem,4vw,2.6rem); }
}
@media (max-width:768px) {
    .hrp-sec { padding: 56px 0; }
    .hrp-stats-grid { grid-template-columns: repeat(2,1fr); }
    .hrp-stat { border-right: none; border-bottom: 1px solid var(--hrp-border); }
    .hrp-stat:nth-child(odd) { border-right: 1px solid var(--hrp-border); }
    .hrp-stat:nth-last-child(-n+2) { border-bottom: none; }
    .hrp-check-list { grid-template-columns: 1fr; }
    .hrp-svc-grid { grid-template-columns: repeat(2,1fr); }
    .hrp-process-row { grid-template-columns: repeat(2,1fr); gap: 20px; }
    .hrp-lead { max-width: 100%; }
    .hrp-h2 { font-size: clamp(1.65rem,5vw,2.1rem); }
    .hrp-cta { padding: 64px 0; }
    .hrp-faq-btn { font-size: .95rem; }
    .hrp-comp-item { gap: 14px; padding: 24px 20px; }
    .hrp-ind-band { padding: 32px 0; }
    .hrp-ind-tags { gap: 8px; }
    .hrp-ind-tag { font-size: .84rem; padding: 8px 14px; }
}
@media (max-width:480px) {
    .hrp-sec { padding: 44px 0; }
    .hrp-stat-n { font-size: 2.2rem; }
    .hrp-h2 { font-size: clamp(1.5rem,6vw,1.9rem); }
    .hrp-svc-grid,.hrp-process-row { grid-template-columns: 1fr; }
    .hrp-comp-item { flex-direction: column; gap: 10px; }
    .hrp-cta { padding: 52px 0; }
    .hrp-cta-btns { flex-direction: column; align-items: stretch; }
    .hrp-btn-primary,.hrp-btn-ghost { justify-content: center; width: 100%; }
    .hrp-ind-tag { font-size: .8rem; }
}

/* ============================================================
   clients.php
   ============================================================ */
/* Banner h1 same size as services page */
.clients-hero h1 { font-size: clamp(24px, 3.5vw, 42px); }
.iss-clients-section { background: #f7f8fa; /*padding: 80px 0 88px;*/ }
.iss-clients-head { text-align: center; margin-bottom: 52px; }
.iss-clients-head h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 900; color: #000; margin: 12px 0 10px; letter-spacing: -0.02em; font-family: 'Poppins', sans-serif; }
.iss-clients-head p { font-size: 15.5px; color: #111; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.iss-clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.iss-client-card { background: #fff; border-radius: 14px; padding: 28px 20px 22px; border: 1px solid #eee; text-align: center; transition: transform 0.26s, box-shadow 0.26s, border-color 0.26s; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.iss-client-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(215,25,32,0.11); border-color: rgba(215,25,32,0.25); }
.iss-client-logo { width: 100%; height: 80px; display: flex; align-items: center; justify-content: center; }
.iss-client-logo img { max-width: 100%; max-height: 70px; object-fit: contain; filter: grayscale(40%); transition: filter 0.25s; }
.iss-client-card:hover .iss-client-logo img { filter: grayscale(0%); }
.iss-client-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #d71920, #8b0000); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; font-weight: 900; font-family: 'Poppins', sans-serif; }
.iss-client-card h3 { font-size: 14px; font-weight: 700; color: #000; margin: 0; line-height: 1.4; font-family: 'Poppins', sans-serif; }
.iss-clients-empty { grid-column: 1/-1; text-align: center; padding: 56px 0; color: #999; font-size: 15px; }
.iss-tsl-section { background: #f6f7f9; /*padding: 80px 0; */}
.iss-tsl-head { text-align: center; margin-bottom: 48px; }
.iss-tsl-head h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: #000; margin: 12px 0 8px; font-family: 'Poppins', sans-serif; }
.iss-tsl-head p { font-size: 15px; color: #111; }
.iss-tsl-wrap { position: relative; overflow: hidden; }
.iss-tsl-track { display: flex; transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.iss-tsl-slide { flex: 0 0 calc(33.333% - 16px); margin-right: 24px; box-sizing: border-box; }
.iss-tsl-card { background: #fff; border-radius: 14px; padding: 30px 28px 26px; box-shadow: 0 2px 18px rgba(0,0,0,0.07); height: 100%; display: flex; flex-direction: column; border-top: 3px solid #d71920; transition: transform 0.28s, box-shadow 0.28s; }
.iss-tsl-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(215,25,32,0.13); }
.iss-tsl-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.iss-tsl-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.iss-tsl-quote { font-size: 52px; line-height: 1; color: rgba(215,25,32,0.15); font-family: Georgia, serif; margin-top: -8px; }
.iss-tsl-card p { font-size: 14.5px; color: #444; line-height: 1.78; margin: 0 0 20px; flex: 1; }
.iss-tsl-footer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid #f0f0f0; margin-top: auto; }
.iss-tsl-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #d71920, #8b0000); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: 800; flex-shrink: 0; }
.iss-tsl-footer h3 { font-size: 14px; font-weight: 800; color: #111; margin: 0 0 2px; }
.iss-tsl-footer span { font-size: 12px; color: #d71920; font-weight: 600; }
.iss-tsl-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.iss-tsl-btn { width: 42px; height: 42px; border-radius: 50%; border: 2px solid #d71920; background: #fff; color: #d71920; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.iss-tsl-btn:hover { background: #d71920; color: #fff; }
.iss-tsl-dots { display: flex; gap: 8px; }
.iss-tsl-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; cursor: pointer; transition: background 0.25s, transform 0.25s; }
.iss-tsl-dot.active { background: #d71920; transform: scale(1.3); }
@media (max-width: 960px) { .iss-clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .iss-tsl-slide { flex: 0 0 calc(50% - 12px); margin-right: 24px; } }
@media (max-width: 700px) { .iss-clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .iss-tsl-slide { flex: 0 0 calc(100% - 0px); margin-right: 24px; } .iss-tsl-card { padding: 22px 18px 20px; } }
@media (max-width: 420px) { .iss-clients-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ============================================================
   careers.php
   ============================================================ */
.careers-hero h1 { font-size: clamp(24px, 3.5vw, 42px); }
.iss-jobs-section { background: #f7f8fa; }
.iss-jobs-head { text-align: center; margin-bottom: 52px; }
.iss-jobs-head h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 900; color: #000; margin: 12px 0 10px; letter-spacing: -0.02em; font-family: 'Poppins', sans-serif; }
.iss-jobs-head p { font-size: 15.5px; color: #111; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.iss-careers-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.iss-jobs-grid { display: flex; flex-direction: column; gap: 16px; }
.iss-job-card { background: #fff; border-radius: 14px; padding: 22px 24px; border: 1px solid #eee; border-left: 4px solid #d71920; display: flex; align-items: center; gap: 20px; transition: transform 0.22s, box-shadow 0.22s; }
.iss-job-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(215,25,32,0.11); }
.iss-job-card-body { flex: 1; min-width: 0; }
.iss-job-tag { display: inline-flex; align-items: center; gap: 5px; background: rgba(215,25,32,0.08); color: #d71920; font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 3px 9px; border-radius: 50px; margin-bottom: 6px; }
.iss-job-card h3 { font-size: 16px; font-weight: 900; color: #000; margin: 0 0 6px; line-height: 1.3; font-family: 'Poppins', sans-serif; }
.iss-job-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 6px; }
.iss-job-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: #555; font-weight: 500; }
.iss-job-meta i { color: #d71920; font-size: 11px; }
.iss-job-desc { font-size: 13px; color: #555; line-height: 1.65; margin: 0; font-family: 'Roboto', sans-serif; }
.iss-job-apply { display: inline-flex; align-items: center; gap: 7px; background: #d71920; color: #fff; font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background 0.2s, transform 0.2s; flex-shrink: 0; }
.iss-job-apply:hover { background: #b51018; transform: translateY(-1px); color: #fff; }
.iss-jobs-empty { text-align: center; /*padding: 60px 0;*/ color: #999; }
.iss-apply-sticky { position: sticky; top: 90px; }
.iss-apply-card { background: #fff; border-radius: 16px; padding: 32px 28px; border: 1px solid #eee; border-top: 4px solid #d71920; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.iss-apply-card .section-badge { display: inline-block; margin-bottom: 10px; }
.iss-apply-card h3 { font-size: 22px; font-weight: 900; color: #000; margin: 0 0 8px; font-family: 'Poppins', sans-serif; }
.iss-apply-card > p { font-size: 13.5px; color: #555; line-height: 1.65; margin: 0 0 22px; }
.iss-apply-card .form { display: flex; flex-direction: column; gap: 12px; }
.iss-apply-card .input, .iss-apply-card textarea { width: 100%; box-sizing: border-box; border: 1px solid #e0e0e0; border-radius: 8px; padding: 11px 14px; font-size: 13.5px; color: #222; font-family: 'Roboto', sans-serif; background: #fafafa; transition: border-color 0.2s; outline: none; }
.iss-apply-card .input:focus, .iss-apply-card textarea:focus { border-color: #d71920; background: #fff; }
.iss-apply-card textarea { min-height: 80px; resize: vertical; }
.iss-apply-card .upload-label { font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: -4px; }
.iss-apply-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.iss-benefits-section { background: #111; padding: 88px 0 96px; }
.iss-benefits-head { text-align: center; margin-bottom: 56px; }
.iss-benefits-head .section-badge { background: rgba(215,25,32,0.18); color: #ff6b6b; border: 1px solid rgba(215,25,32,0.3); }
.iss-benefits-head h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 900; color: #fff; margin: 12px 0 10px; letter-spacing: -0.02em; font-family: 'Poppins', sans-serif; }
.iss-benefits-head p { font-size: 15.5px; color: #aaa; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.iss-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.iss-benefit-card { background: #1a1a1a; border-radius: 16px; padding: 32px 24px 28px; border: 1px solid #2a2a2a; border-bottom: 3px solid #d71920; text-align: center; transition: transform 0.26s, box-shadow 0.26s, border-color 0.26s; }
.iss-benefit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(215,25,32,0.18); border-color: #d71920; border-bottom-color: #d71920; }
.iss-benefit-ico { width: 64px; height: 64px; border-radius: 50%; background: rgba(215,25,32,0.12); border: 2px solid rgba(215,25,32,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; color: #d71920; transition: background 0.26s, border-color 0.26s; }
.iss-benefit-card:hover .iss-benefit-ico { background: #d71920; border-color: #d71920; color: #fff; }
.iss-benefit-card h3 { font-size: 15px; font-weight: 800; color: #fff; margin: 0 0 10px; font-family: 'Poppins', sans-serif; }
.iss-benefit-card p { font-size: 13.5px; color: #888; line-height: 1.7; margin: 0; font-family: 'Roboto', sans-serif; }
@media (max-width: 1060px) { .iss-careers-layout { grid-template-columns: 1fr 340px; gap: 28px; } }
@media (max-width: 900px) { .iss-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .iss-careers-layout { grid-template-columns: 1fr; } .iss-apply-sticky { position: static; } }
@media (max-width: 560px) { .iss-job-card { flex-direction: column; align-items: flex-start; gap: 14px; } .iss-job-apply { align-self: flex-start; } .iss-jobs-section { padding: 56px 0 64px; } .iss-apply-card { padding: 24px 20px; } }
@media (max-width: 480px) { .iss-benefits-grid { grid-template-columns: 1fr; gap: 16px; } .iss-benefits-section { /*padding: 60px 0 68px; */ } }

/* ============================================================
   contact.php
   ============================================================ */
/* ── Contact Hero ── */
.contact-hero h1 { font-size: clamp(26px, 4vw, 48px); }
.iss-contact-wrap { background: #f4f6f9; /*padding: 70px 0 60px;*/ }
.iss-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: start; }
.iss-contact-info { background: #0b0f1e; border-radius: 18px; padding: 44px 36px; color: #fff; position: sticky; top: 100px; }
.iss-contact-info-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(183,28,28,0.2); border: 1px solid rgba(183,28,28,0.4); border-radius: 50px; padding: 5px 16px; color: #f87171; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.iss-contact-info h2 { font-size: 26px !important; font-weight: 800; color: #fff; margin: 0 0 10px !important; line-height: 1.25; }
.iss-contact-info > p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.iss-contact-rule { height: 1px; background: rgba(255,255,255,0.1); margin: 28px 0; }
.iss-contact-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.iss-contact-row:last-of-type { margin-bottom: 0; }
.iss-contact-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(183,28,28,0.18); color: #f87171; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.iss-contact-detail strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.iss-contact-detail span, .iss-contact-detail a { font-size: 14.5px; color: #fff; line-height: 1.6; text-decoration: none; display: block; }
.iss-contact-detail a:hover { color: #f87171; }
.iss-contact-hours { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 18px 20px; margin-top: 28px; }
.iss-contact-hours h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0 0 12px; }
.iss-hours-row { display: flex; justify-content: space-between; font-size: 13.5px; color: rgba(255,255,255,0.8); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.iss-hours-row:last-child { border-bottom: none; }
.iss-hours-row .open { color: #4ade80; font-weight: 700; }
.iss-contact-social { display: flex; gap: 10px; margin-top: 28px; }
.iss-contact-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 16px; text-decoration: none; transition: background 0.25s, color 0.25s, border-color 0.25s; }
.iss-contact-social a:hover { background: #B71C1C; border-color: #B71C1C; color: #fff; }
.iss-contact-form-card { background: #fff; border-radius: 18px; padding: 44px 40px; box-shadow: 0 4px 30px rgba(0,0,0,0.07); }
.iss-form-header { margin-bottom: 30px; }
.iss-form-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #fff0f0; border: 1px solid rgba(183,28,28,0.2); border-radius: 50px; padding: 5px 16px; color: #B71C1C; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.iss-form-header h3 { font-size: 26px; font-weight: 800; color: #0b0f1e; margin: 0 0 8px; line-height: 1.25; }
.iss-form-header p { font-size: 14px; color: #667085; line-height: 1.65; margin: 0; }
.iss-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.iss-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.iss-field label { font-size: 13px; font-weight: 700; color: #374151; letter-spacing: 0.02em; }
.iss-field input, .iss-field textarea, .iss-field select { width: 100%; padding: 13px 16px; border: 1.5px solid #e5e7eb; border-radius: 10px; font-size: 14px; color: #111; background: #fafafa; outline: none; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; }
.iss-field input:focus, .iss-field textarea:focus, .iss-field select:focus { border-color: #B71C1C; background: #fff; box-shadow: 0 0 0 3px rgba(183,28,28,0.1); }
.iss-field textarea { min-height: 120px; resize: vertical; }
.iss-submit-btn { width: 100%; padding: 15px; background: #B71C1C; color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.25s, transform 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; }
.iss-submit-btn:hover { background: #9b1515; transform: translateY(-2px); }
.iss-form-note { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 14px; }
.iss-form-note i { color: #4ade80; margin-right: 4px; }
.iss-map-section { padding: 0; background: #f4f6f9; padding-bottom: 60px; }
.iss-map-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.iss-map-wrap iframe { width: 100%; height: 420px; display: block; border: 0; }
.iss-contact-cta { background: linear-gradient(135deg, #0b0f1e 0%, #1a2035 100%); /*padding: 60px 0; */ }
.iss-contact-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.iss-contact-cta h2 { font-size: 28px !important; font-weight: 800; color: #fff; margin: 0 0 8px !important; }
.iss-contact-cta p { font-size: 15px; color: rgba(255,255,255,0.65); margin: 0; max-width: 520px; }
.iss-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }
.iss-cta-btns a { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: 0.25s; }
.iss-cta-btn-primary { background: #B71C1C; color: #fff; border: 2px solid #B71C1C; }
.iss-cta-btn-primary:hover { background: #9b1515; border-color: #9b1515; color: #fff; }
.iss-cta-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.iss-cta-btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.07); }
@media (max-width: 960px) { .iss-contact-grid { grid-template-columns: 1fr; gap: 24px; } .iss-contact-info { position: static; } .iss-contact-cta-inner { flex-direction: column; align-items: flex-start; } .iss-cta-btns { flex-wrap: wrap; } }
@media (max-width: 640px) { .iss-contact-wrap { padding: 40px 0 36px; } .iss-contact-info { padding: 30px 22px; } .iss-contact-form-card { padding: 28px 20px; } .iss-form-row { grid-template-columns: 1fr; gap: 0; } .iss-map-wrap iframe { height: 300px; } .iss-contact-cta { padding: 44px 0; } .iss-cta-btns a { padding: 12px 20px; font-size: 13px; } .iss-map-section { padding-bottom: 36px; } }
@media (max-width: 400px) { .iss-cta-btns { flex-direction: column; width: 100%; } .iss-cta-btns a { justify-content: center; } }
