:root {
    --navy: #0A2342;
    --navy-2: #123A6B;
    --navy-deep: #061423;
    --gold: #D4AF37;
    --gold-light: #EAD68E;
    --white: #FFFFFF;
    --gray-bg: #F5F6F8;
    --gray-line: #E2E5EA;
    /*--text:#1B2430; */
    --text: #000000;
    --text-muted: #5B6472;
    --radius: 2px;
    --maxw: 1240px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 12px 20px;
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-tight {
    padding: 80px 0;
}

.bg-gray {
    background: var(--gray-bg);
}

.bg-navy {
    background: var(--navy);
    color: #fff;
}

.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
    color: #fff;
}

.bg-navy-deep {
    background: var(--navy-deep);
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    display: inline-block;
}

.section-head {
    max-width: 680px;
    margin-bottom: 60px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 700;
    line-height: 1.15;
}

.section-head p {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 17px;
}

.bg-navy .section-head p {
    color: #C7D0DE;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: .02em;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .3s var(--ease);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(212, 175, 55, .5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
}

.btn-navy:hover {
    background: var(--navy-2);
    transform: translateY(-2px);
}

.btn-ghost-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-ghost-navy:hover {
    background: var(--navy);
    color: #fff;
}

.btn-sm {
    padding: 11px 22px;
    font-size: 13px;
}

/* corner-bracket signature motif */
.brackets {
    position: relative;
}

.brackets::before,
.brackets::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid var(--gold);
    opacity: .85;
    transition: all .35s var(--ease);
    pointer-events: none;
}

.brackets::before {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
}

.brackets::after {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
}

.brackets:hover::before,
.brackets:hover::after {
    width: 30px;
    height: 30px;
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in>* {
    transition-delay: calc(var(--i, 0) * 90ms);
}

/* ============ TOP BAR ============ */
.topbar {
    background: var(--navy-deep);
    color: #B9C3D4;
    font-size: 12.5px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
}

.topbar-left {
    display: flex;
    gap: 26px;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-left a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #B9C3D4;
    transition: color .2s;
}

.topbar-left a:hover {
    color: var(--gold);
}

.topbar-right {
    display: flex;
    gap: 18px;
    align-items: center;
}

.badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .35);
    color: var(--gold-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
}

@media (max-width:860px) {
    .topbar-left a span.tb-label {
        display: none;
    }
}

@media (max-width:640px) {
    .topbar .container {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 8px 20px;
    }

    .topbar-right {
        display: none;
    }
}

/* ============ NAV ============ */
header.site-nav {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-line);
    transition: all .3s var(--ease);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    transition: padding .3s var(--ease);
}

header.site-nav.shrink .nav-wrap {
    padding: 11px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    flex: none;
}

.logo-text {
    line-height: 1.1;
}

.logo-text b {
    display: block;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 16.5px;
    color: var(--navy);
    letter-spacing: .01em;
}

.logo-text span {
    display: block;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    border-radius: 3px;
    transition: color .2s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link svg {
    width: 12px;
    height: 12px;
    transition: transform .25s;
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* mega menu */
.mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    width: min(880px, 88vw);
    background: #fff;
    border: 1px solid var(--gray-line);
    box-shadow: 0 30px 60px -20px rgba(10, 35, 66, .25);
    border-radius: 6px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s var(--ease);
    z-index: 60;
}

.nav-item:hover .mega,
.nav-item:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 22px;
}

.mega-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 10px;
    border-radius: 6px;
    transition: background .2s;
}

.mega-link:hover {
    background: var(--gray-bg);
}

.mega-ic {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 8px;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-link:hover .mega-ic {
    background: var(--navy);
}

.mega-ic svg {
    width: 17px;
    height: 17px;
    stroke: var(--navy);
}

.mega-link:hover .mega-ic svg {
    stroke: var(--gold);
}

.mega-txt b {
    display: block;
    font-size: 13.5px;
    color: var(--navy);
    font-weight: 600;
}

.mega-txt small {
    display: block;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.mega-foot {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-foot p {
    font-size: 12.5px;
    color: var(--text-muted);
}

.burger {
    display: none;
    width: 26px;
    height: 18px;
    position: relative;
    background: none;
    border: none;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--navy);
    transition: all .3s;
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 8px;
}

.burger span:nth-child(3) {
    top: 16px;
}

@media (max-width:1080px) {

    .nav-main,
    .nav-cta .btn {
        display: none;
    }

    .burger {
        display: block;
    }
}

/* mobile drawer */
.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    background: #fff;
    z-index: 900;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .2);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 20, 35, .55);
    z-index: 890;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    border-bottom: 1px solid var(--gray-line);
}

.mobile-drawer nav {
    padding: 10px 12px;
}

.mobile-drawer .mnav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 12px;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-line);
    font-size: 15px;
}

.mobile-sub {
    display: none;
    padding: 0 12px 10px 20px;
}

.mobile-sub.open {
    display: block;
}

.mobile-sub a {
    display: block;
    padding: 9px 0;
    font-size: 13.5px;
    color: var(--text-muted);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy);
    line-height: 1;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg video,
.hero-bg .hero-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 26s ease-in-out infinite alternate;
}

@keyframes kenburns {
    from {
        transform: scale(1.06) translate(0, 0);
    }

    to {
        transform: scale(1.16) translate(-1%, -1%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 20, 35, .75) 0%, rgba(6, 20, 35, .55) 40%, rgba(6, 20, 35, .92) 100%),
        linear-gradient(100deg, rgba(6, 20, 35, .9) 10%, rgba(6, 20, 35, .35) 55%, rgba(6, 20, 35, .75) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(212, 175, 55, .5) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, .5) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 30% 40%, black 0%, transparent 70%);
}

.scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .9), transparent);
    animation: scan 6s linear infinite;
    opacity: .7;
}

@keyframes scan {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    color: #fff;
    max-width: 720px;
    padding: 60px 0;
}

.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.hero-badges .badge-chip {
    background: rgba(255, 255, 255, .08);
}

.hero h1 {
    color: #fff;
    font-size: clamp(36px, 5.4vw, 64px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    margin-top: 24px;
    font-size: 18px;
    color: #D6DCE6;
    max-width: 560px;
    line-height: 1.7;
}

.hero-cta {
    margin-top: 38px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-frame {
    position: absolute;
    z-index: 5;
}

.hero-panel {
    position: relative;
    z-index: 5;
    margin-top: 56px;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 26px;
    max-width: 720px;
}

.hero-panel .stat {
    flex: 1 1 120px;
    padding-right: 26px;
}

.hero-panel .stat b {
    display: block;
    font-family: 'Poppins';
    font-size: 26px;
    color: var(--gold);
    font-weight: 700;
}

.hero-panel .stat span {
    display: block;
    font-size: 12px;
    color: #B9C3D4;
    margin-top: 4px;
    letter-spacing: .03em;
}

.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #B9C3D4;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(#D4AF37, transparent);
    animation: cueMove 2s ease-in-out infinite;
}

@keyframes cueMove {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

/* ============ MARQUEE ============ */
.marquee-wrap {
    background: var(--gray-bg);
    padding: 38px 0;
    border-bottom: 1px solid var(--gray-line);
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 600;
}

.marquee-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: marquee 32s linear infinite;
    align-items: center;
}

.marquee-wrap:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-pill {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 19px;
    color: #9AA4B2;
    white-space: nowrap;
    letter-spacing: .01em;
}

/* ============ STATS ============ */
.stats-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}

.stats-section .hero-grid {
    opacity: .08;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    overflow: hidden;
}

.stat-card {
    background: var(--navy);
    padding: 38px 26px;
    text-align: center;
}

.stat-card b {
    display: block;
    font-family: 'Poppins';
    font-size: 44px;
    font-weight: 800;
    color: #fff;
}

.stat-card b .gold {
    color: var(--gold);
}

.stat-card span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #AFB9C9;
    letter-spacing: .03em;
}

@media (max-width:820px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ ABOUT ============ */
.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 74px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    height: 520px;
}

.about-media-badge {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: #fff;
    border: 1px solid var(--gray-line);
    box-shadow: 0 20px 40px -10px rgba(10, 35, 66, .2);
    padding: 22px 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-media-badge svg {
    width: 34px;
    height: 34px;
    stroke: var(--gold);
    flex: none;
}

.about-media-badge b {
    display: block;
    font-family: 'Poppins';
    font-size: 22px;
    color: var(--navy);
    font-weight: 700;
}

.about-media-badge span {
    font-size: 12px;
    color: var(--text-muted);
}

.about-text p {
    color: var(--text-muted);
    font-size: 16.5px;
    margin-bottom: 18px;
}

.about-points {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.about-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-point svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex: none;
    margin-top: 2px;
}

.about-point b {
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
}

@media (max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-media img {
        height: 380px;
    }

    .about-media-badge {
        position: static;
        margin-top: -40px;
        margin-left: 20px;
        width: fit-content;
    }
}

/* ============ SERVICES GRID ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--gray-line);
    border-radius: 6px;
    padding: 30px 24px;
    transition: all .35s var(--ease);
}
.bg-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:52%;
    object-fit:cover;
    z-index:1;
    
}

.service-card:nth-child(1) {
    background-image: url(img/security.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(2) {
    background-image: url(img/housekeeping.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.service-card:nth-child(3){
    background-image: url(img/dog\ squad.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(4){
    background-image: url(img/catering.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(5){
    background-image: url(img/Container_Management.jpeg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(6){
    background-image: url(img/office-staff.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(7){
    background-image: url(img/factory.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(8){
    background-image: url(img/institution.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(9){
    background-image: url(img/Hotel-Staffing.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(10){
    background-image: url(img/Warehouse-Management.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(11){
    background-image: url(img/Film-Artists-Technicians.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(12){
    background-image: url(img/Bodyguards.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(13){
    background-image: url(img/Escorts.jpg);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(14){
    background-image: url(img/Bouncers.png);
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:nth-child(n)::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;

    background: linear-gradient(
        to top,
        #fff 20%,
        rgba(255,255,255,.95) 45%,
        rgba(255,255,255,.55) 75%,
        rgba(255,255,255,0) 100%
    );

    z-index: 2;
    pointer-events: none;
    
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
    box-shadow: 0 26px 50px -18px rgba(10, 35, 66, .28);
     transition: all .25s var(--ease);
}

.service-card:hover::before {
    opacity: 1;
}

.service-ic {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .25s var(--ease);
    position: relative;
    z-index: 3;
}

.service-card:hover .service-ic {
    background: var(--navy);
    transform: rotate(-6deg) scale(1.06);
}

.service-ic svg {
    width: 26px;
    height: 26px;
    stroke: var(--navy);
    transition: stroke .3s;
}

.service-card:hover .service-ic svg {
    stroke: var(--gold);
}

.service-card h3 {
    font-size: 16.5px;
    font-weight: 600;
    margin-bottom: 6px;
    text-decoration: #0A2342;
    position: relative;
    z-index: 3;
}

.service-card p {
    position: relative;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
     text-decoration: hwb(211 2% 88%);
     position: relative;
    z-index: 3;
}

.service-num {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 13px;
    color: var(--gray-line);
}

@media (max-width:1080px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:760px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ WHY CHOOSE US ============ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-line);
    border: 1px solid var(--gray-line);
}

.why-card {
    background: #fff;
    padding: 42px 34px;
    transition: background .3s;
}

.why-card:hover {
    background: var(--gray-bg);
}

.why-ic {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
}

.why-ic svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14.5px;
    color: var(--text-muted);
}

@media (max-width:860px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ INDUSTRIES ============ */
.ind-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.ind-tab {
    padding: 10px 20px;
    border: 1.5px solid var(--gray-line);
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all .25s;
    background: #fff;
}

.ind-tab.active,
.ind-tab:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.ind-card {
    aspect-ratio: 1/1.05;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: var(--navy);
}

.ind-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
    transition: all .4s var(--ease);
}

.ind-card:hover img {
    opacity: .35;
    transform: scale(1.08);
}

.ind-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 14px;
    color: #fff;
    font-weight: 600;
    font-size: 13.5px;
    background: linear-gradient(0deg, rgba(6, 20, 35, .85), transparent);
}

@media (max-width:1080px) {
    .ind-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:640px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ TIMELINE ============ */
.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 6%;
    right: 6%;
    height: 1.5px;
    background: var(--gray-line);
}

.tl-step {
    position: relative;
    padding: 0 18px;
    text-align: left;
}

.tl-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--navy);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 17px;
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
    transition: all .3s;
}

.tl-step:hover .tl-num {
    background: var(--navy);
    color: var(--gold);
}

.tl-step h3 {
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 9px;
}

.tl-step p {
    font-size: 13.5px;
    color: var(--text-muted);
}

@media (max-width:980px) {
    .timeline {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .timeline::before {
        display: none;
    }
}

/* ============ COMPLIANCE ============ */
.comp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.comp-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--gray-line);
    border-radius: 6px;
    padding: 24px;
    transition: all .3s;
}

.comp-card:hover {
    border-color: var(--navy);
    box-shadow: 0 20px 40px -18px rgba(10, 35, 66, .2);
}

.comp-ic {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.comp-ic svg {
    width: 21px;
    height: 21px;
    stroke: var(--gold);
}

.comp-card b {
    display: block;
    color: var(--navy);
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 5px;
}

.comp-card span {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width:860px) {
    .comp-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ CERTIFICATIONS ============ */
.cert-strip {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 26px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 26px;
    border: 1px solid var(--gray-line);
    border-radius: 6px;
    flex: 1 1 220px;
}

.cert-badge svg {
    width: 38px;
    height: 38px;
    stroke: var(--navy);
    flex: none;
}

.cert-badge b {
    display: block;
    font-size: 14px;
    color: var(--navy);
    font-weight: 700;
}

.cert-badge span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ TESTIMONIALS ============ */
.testi-wrap {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.testi-slide {
    display: none;
    text-align: center;
}

.testi-slide.active {
    display: block;
    animation: fadeIn .6s var(--ease);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testi-quote {
    font-family: 'Poppins';
    font-size: clamp(19px, 2.3vw, 25px);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.55;
}

.testi-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 22px;
}

.testi-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    stroke: none;
}

.testi-person {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testi-person b {
    color: var(--navy);
    font-size: 14.5px;
}

.testi-person span {
    color: var(--text-muted);
    font-size: 12.5px;
}

.testi-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 38px;
}

.testi-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gray-line);
    border: none;
    transition: all .25s;
}

.testi-dot.active {
    background: var(--gold);
    width: 26px;
    border-radius: 6px;
}

/* ============ GALLERY ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 12px;
}

.g-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.g-item:hover img {
    transform: scale(1.1);
}

.g-item::after {
    content: "⤢";
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    background: rgba(6, 20, 35, .5);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    font-size: 13px;
}

.g-item:hover::after {
    opacity: 1;
}

.g-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width:760px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .g-item.big {
        grid-column: span 2;
        grid-row: span 1;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 20, 35, .92);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    padding: 30px;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: min(900px, 90vw);
    max-height: 82vh;
    border-radius: 6px;
}

.lightbox-close {
    position: absolute;
    top: 26px;
    right: 32px;
    color: #fff;
    font-size: 30px;
    background: none;
    border: none;
}

/* ============ FAQ ============ */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-line);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 4px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.faq-q svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy);
    flex: none;
    transition: transform .3s;
}

.faq-item.open .faq-q svg {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq-item.open .faq-a {
    max-height: 220px;
}

.faq-a p {
    padding: 0 4px 24px;
    color: var(--text-muted);
    font-size: 14.5px;
    max-width: 680px;
}

/* ============ CAREERS ============ */
.career-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: start;
}

.job-card {
    background: #fff;
    border: 1px solid var(--gray-line);
    border-radius: 6px;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    transition: all .25s;
}

.job-card:hover {
    border-color: var(--navy);
    transform: translateX(4px);
}

.job-card b {
    display: block;
    font-size: 15px;
    color: var(--navy);
    font-weight: 600;
}

.job-tags {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 20px;
    background: var(--gray-bg);
    color: var(--text-muted);
    font-weight: 600;
}

.career-side {
    background: var(--navy);
    border-radius: 8px;
    padding: 38px 32px;
    color: #fff;
}

.career-side h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 14px;
}

.career-side p {
    color: #C7D0DE;
    font-size: 14px;
    margin-bottom: 24px;
}

.upload-box {
    border: 1.5px dashed rgba(255, 255, 255, .35);
    border-radius: 6px;
    padding: 26px;
    text-align: center;
    margin-bottom: 20px;
}

.upload-box svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
    margin: 0 auto 10px;
}

.upload-box span {
    display: block;
    font-size: 12.5px;
    color: #B9C3D4;
}

@media (max-width:900px) {
    .career-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 0;
    border: 1px solid var(--gray-line);
    border-radius: 8px;
    overflow: hidden;
}

.contact-info {
    background: var(--navy);
    color: #fff;
    padding: 52px 44px;
}

.contact-info h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}

.contact-info p {
    color: #C7D0DE;
    font-size: 14.5px;
    margin-bottom: 32px;
}

.cinfo-row {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.cinfo-row svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex: none;
    margin-top: 2px;
}

.cinfo-row b {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
}

.cinfo-row span {
    font-size: 13px;
    color: #B9C3D4;
}

.map-embed {
    margin-top: 30px;
    border-radius: 6px;
    overflow: hidden;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, .15);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.3) contrast(1.05);
}

.contact-form {
    padding: 52px 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--gray-line);
    border-radius: 5px;
    font-size: 14px;
    color: var(--text);
    transition: border-color .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.field.full {
    grid-column: 1/-1;
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 38px 26px;
    }
}

/* ============ DOWNLOAD BANNER ============ */
.cta-banner {
    position: relative;
    background: var(--navy-deep);
    border-radius: 10px;
    overflow: hidden;
    padding: 64px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-banner .hero-grid {
    opacity: .1;
}

.cta-banner h3 {
    color: #fff;
    font-size: clamp(22px, 2.6vw, 30px);
    max-width: 480px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: #B9C3D4;
    margin-top: 10px;
    font-size: 14.5px;
    position: relative;
    z-index: 2;
}

.cta-banner .btn {
    position: relative;
    z-index: 2;
}

/* ============ FOOTER ============ */
footer {
    background: var(--navy-deep);
    color: #B9C3D4;
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand p {
    font-size: 13.5px;
    margin: 18px 0 22px;
    color: #9AA6BA;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-social svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
}

.footer-social a:hover svg {
    stroke: var(--navy-deep);
}

.fcol h4 {
    color: #fff;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Poppins';
    font-weight: 600;
}

.fcol ul li {
    margin-bottom: 12px;
}

.fcol a {
    font-size: 13.5px;
    color: #9AA6BA;
    transition: color .2s;
}

.fcol a:hover {
    color: var(--gold);
}

.newsletter {
    display: flex;
    margin-top: 6px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    overflow: hidden;
}

.newsletter input {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 14px;
    color: #fff;
    font-size: 13px;
}

.newsletter input::placeholder {
    color: #7C8AA0;
}

.newsletter button {
    background: var(--gold);
    border: none;
    padding: 0 16px;
    color: var(--navy-deep);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: 12.5px;
    color: #7C8AA0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 20px;
}

@media (max-width:980px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* ============ FLOATING WIDGETS ============ */
.fab-stack {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 700;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 14px 30px -8px rgba(0, 0, 0, .35);
    transition: transform .25s;
}

.fab:hover {
    transform: scale(1.08);
}

.fab-wa {
    background: #25D366;
}

.fab-wa svg {
    width: 27px;
    height: 27px;
    fill: #fff;
}

.fab-chat {
    background: var(--navy);
}

.fab-chat svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.fab-top {
    background: #fff;
    border: 1px solid var(--gray-line);
    width: 44px;
    height: 44px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.fab-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy);
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* chat widget */
.chat-window {
    position: fixed;
    right: 26px;
    bottom: 98px;
    width: 340px;
    max-height: 460px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 30px 70px -20px rgba(6, 20, 35, .45);
    z-index: 750;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(.97);
    transition: all .3s var(--ease);
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-head {
    background: var(--navy);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-head .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3EDC7A;
    box-shadow: 0 0 0 3px rgba(62, 220, 122, .25);
}

.chat-head b {
    display: block;
    font-size: 14px;
}

.chat-head span {
    font-size: 11.5px;
    color: #B9C3D4;
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
}

.chat-body {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--gray-bg);
    min-height: 220px;
}

.msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.5;
}

.msg.bot {
    background: #fff;
    border: 1px solid var(--gray-line);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.msg.user {
    background: var(--navy);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-quick {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 18px 14px;
    background: var(--gray-bg);
}

.chat-quick button {
    font-size: 11.5px;
    padding: 7px 12px;
    border-radius: 20px;
    border: 1px solid var(--gray-line);
    background: #fff;
    color: var(--navy);
    font-weight: 600;
}

.chat-quick button:hover {
    background: var(--navy);
    color: #fff;
}

.chat-input {
    display: flex;
    border-top: 1px solid var(--gray-line);
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 13.5px;
}

.chat-input button {
    background: var(--gold);
    border: none;
    padding: 0 18px;
}

.chat-input button svg {
    width: 16px;
    height: 16px;
    stroke: var(--navy-deep);
}

/* Glassmorphism helper */
.glass {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .16);
}

/* generic grid col helpers on mobile */
@media (max-width:960px) {
    .services-h2-cols {
        grid-template-columns: 1fr;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}