
:root{
    --primary:#002b5b;
    --primary-light:#004b99;
    --accent:#f4a300;
    --dark:#111827;
    --text:#475467;
    --light:#f5f8fc;
    --white:#ffffff;
}

*{ box-sizing:border-box; scroll-behavior:smooth; }

body{
    font-family:"Segoe UI",Arial,sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.7;
}

a{ color:var(--primary); text-decoration:none; }
a:hover{ color:var(--primary-light); }

.section-padding{ padding:80px 0; }

.section-title{
    color:var(--primary);
    font-weight:800;
    margin-bottom:15px;
}

.section-subtitle{
    max-width:720px;
    margin:0 auto 45px;
    color:#667085;
}

.btn-primary-custom,
.wp-block-button__link{
    background:var(--primary);
    color:#fff!important;
    border:none;
    padding:12px 26px;
    border-radius:30px;
    font-weight:700;
    transition:.3s ease;
}

.btn-primary-custom:hover,
.wp-block-button__link:hover{
    background:var(--primary-light);
    color:#fff!important;
    transform:translateY(-3px);
}

.btn-outline-custom{
    border:2px solid var(--primary);
    color:var(--primary);
    padding:10px 24px;
    border-radius:30px;
    font-weight:700;
    display:inline-block;
}

.btn-outline-custom:hover{
    background:var(--primary);
    color:#fff;
}

.navbar{
    background:#fff!important;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    padding:14px 0;
}

.navbar-brand{
    color:var(--primary)!important;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-mark{
    width:45px;
    height:45px;
    background:var(--primary);
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
}

.navbar .nav-link,
.navbar .menu-item > a{
    color:var(--primary)!important;
    font-weight:700;
    margin-left:10px;
    border-radius:24px;
    padding:9px 14px!important;
    transition:.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .menu-item > a:hover,
.navbar .current-menu-item > a{
    background:rgba(0,43,91,.08);
}

.navbar-toggler{ border:none; }
.navbar-toggler:focus{ box-shadow:none; }

.simple-slider .carousel-item{
    min-height:620px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.simple-slider .carousel-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,43,91,.85),rgba(0,43,91,.35));
}

.simple-slider .carousel-caption{
    bottom:28%;
    text-align:left;
    max-width:760px;
}

.simple-slider h1{
    font-size:clamp(2.4rem,5vw,4.6rem);
    font-weight:900;
}

.simple-slider p{ font-size:1.18rem; }

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

.card-custom{
    background:#fff;
    border:1px solid rgba(0,43,91,.08);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    height:100%;
    transition:.3s ease;
}

.card-custom:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,43,91,.15);
}

.card-custom img{
    height:230px;
    width:100%;
    object-fit:cover;
}

.card-custom h3{
    color:var(--primary);
    font-weight:800;
}

.icon-box{
    width:68px;
    height:68px;
    border-radius:18px;
    background:var(--primary);
    color:#fff;
    font-size:2rem;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.logo-marquee{
    overflow:hidden;
    white-space:nowrap;
}

.logo-track{
    display:inline-flex;
    gap:30px;
    animation:marquee 24s linear infinite;
}

.client-logo{
    width:170px;
    height:90px;
    border-radius:18px;
    background:#fff;
    color:var(--primary);
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    padding:15px;
}

.client-logo img{
    max-width:100%;
    max-height:60px;
    object-fit:contain;
}

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

.page-hero{
    padding:120px 0 80px;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    color:#fff;
}

.page-hero h1{
    font-weight:900;
    font-size:clamp(2.2rem,4vw,4rem);
}

.video-box{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,43,91,.18);
    background:#000;
}

.video-box iframe,
.video-box video{
    width:100%;
    min-height:380px;
    display:block;
}

.form-control{
    padding:13px 16px;
    border-radius:14px;
}

.form-control:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(0,43,91,.15);
}

.map-placeholder{
    min-height:420px;
    background:linear-gradient(135deg,rgba(0,43,91,.86),rgba(0,75,153,.7));
    border-radius:24px;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.footer{
    background:var(--primary);
    color:#fff;
    padding:65px 0 20px;
}

.footer a{ color:#fff; opacity:.9; }
.footer a:hover{ color:var(--accent); }

.social-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.13);
    color:#fff;
    margin-right:8px;
}

.social-icon:hover{
    background:#fff;
    color:var(--primary);
}

.reveal{
    opacity:0;
    transform:translateY(28px);
    transition:.7s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.entry-content img{ max-width:100%; height:auto; }
.wp-caption{ max-width:100%; }

@media(max-width:991px){
    .simple-slider .carousel-caption{
        bottom:18%;
        left:7%;
        right:7%;
    }

    .navbar .nav-link,
    .navbar .menu-item > a{
        margin-left:0;
    }
}

@media(max-width:575px){
    .section-padding{ padding:60px 0; }
    .simple-slider .carousel-item{ min-height:540px; }
    .video-box iframe,
    .video-box video{ min-height:250px; }
}


/* Client Logo CPT slider fix */
.logo-marquee{
    overflow:hidden;
    white-space:nowrap;
    width:100%;
    padding:15px 0;
}

.logo-track{
    display:flex;
    align-items:center;
    gap:30px;
    width:max-content;
    min-width:100%;
    animation:marquee 24s linear infinite;
}

.client-logo{
    flex:0 0 auto;
    width:170px;
    height:90px;
    border-radius:18px;
    background:#fff;
    color:var(--primary);
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    padding:15px;
    border:1px solid rgba(0,43,91,.08);
}

.client-logo img{
    display:block;
    max-width:100%;
    max-height:65px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.client-logo span{
    display:block;
    color:var(--primary);
}
