/* =========================================
   BRAND COLORS
========================================= */

:root{
    --brand-blue: #0E73BA;
    --brand-dark: #083B66;
    --brand-light: #EAF5FC;
    --white: #ffffff;
}


/* =========================================
   HERO
========================================= */

.hero{
    position: relative;

    width: 100%;
    height: 700px;

    overflow: hidden;

    background: #061D2E;
}


/* =========================================
   SLIDES CONTAINER
========================================= */

.slides{
    position: relative;

    width: 100%;
    height: 100%;
}


/* =========================================
   INDIVIDUAL SLIDE
========================================= */

.slide{
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition: opacity .8s ease;
}

.slide.active{
    opacity: 1;
    visibility: visible;

    z-index: 2;
}


/* =========================================
   BACKGROUND IMAGE
========================================= */

.hero-bg{
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.02);
}


/* =========================================
   DARK BLUE OVERLAY
========================================= */

.hero-overlay{
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 24, 40, .94) 0%,
            rgba(4, 35, 57, .86) 35%,
            rgba(8, 59, 102, .50) 65%,
            rgba(8, 59, 102, .15) 100%
        );
}


/* =========================================
   CHAIR / AUTOMOTIVE SEAT
========================================= */

.hero-chair{
    position: absolute;

    right: 4%;
    bottom: 70px;

    width: 45%;
    height: 92%;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    z-index: 4;

    pointer-events: none;
}

.hero-chair img{
    display: block;

    width: 100%;
    max-width: 500px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 35px rgba(0,0,0,.35));

    animation: chairFloat 5s ease-in-out infinite;
}


/* =========================================
   CHAIR ANIMATION
========================================= */

@keyframes chairFloat{

    0%,
    100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-10px);
    }
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content{
    position: absolute;

    top: 50%;
    left: 10%;

    transform: translateY(-50%);

    width: 600px;
    max-width: 48%;

    color: var(--white);

    z-index: 5;
}


/* =========================================
   SMALL BLUE LABEL
========================================= */

.eyebrow{
    display: inline-flex;

    align-items: center;

    margin-bottom: 18px;

    padding: 8px 16px;

    background: rgba(14,115,186,.18);

    border-left: 4px solid var(--brand-blue);

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
   MAIN HEADING
========================================= */

.hero-content h1{
    margin: 0;

    font-size: 52px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -.5px;

    color: #fff;
}


/* Blue highlighted heading */

.hero-content h1 span{
    display: block;

    color: var(--brand-blue);
}


/* =========================================
   MAIN TAGLINE
========================================= */

.hero-tagline{
    max-width: 620px;

    margin: 25px 0 12px;

    font-size: 23px;

    line-height: 1.45;

    font-weight: 600;

    color: #fff;
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-description{
    max-width: 590px;

    margin: 0 0 32px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255,255,255,.82);
}


/* =========================================
   BUTTON CONTAINER
========================================= */

.hero-btns{
    display: flex;

    align-items: center;

    gap: 15px;
}


/* =========================================
   COMMON BUTTON
========================================= */

.btn{
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 150px;

    padding: 15px 30px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: all .3s ease;
}


/* =========================================
   PRIMARY BUTTON
========================================= */

.btn-primary{
    background: var(--brand-blue);

    color: #fff;

    border: 2px solid var(--brand-blue);
}

.btn-primary:hover{
    background: #fff;

    color: var(--brand-blue);

    border-color: #fff;
}


/* =========================================
   OUTLINE BUTTON
========================================= */

.btn-outline{
    background: transparent;

    color: #fff;

    border: 2px solid rgba(255,255,255,.8);
}

.btn-outline:hover{
    background: var(--brand-blue);

    color: #fff;

    border-color: var(--brand-blue);
}


/* =========================================
   BLUE ACCENT LINE
========================================= */

.hero-content::before{
    content: "";

    position: absolute;

    left: -30px;

    top: 5px;

    width: 5px;

    height: 105px;

    background: var(--brand-blue);

    border-radius: 5px;
}


/* =========================================
   NAVIGATION ARROWS
========================================= */

.arrow{
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;

    height: 52px;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    background: rgba(0,0,0,.18);

    color: #fff;

    font-size: 26px;

    cursor: pointer;

    z-index: 10;

    transition: all .3s ease;
}


/* Left arrow */

.left{
    left: 30px;
}


/* Right arrow */

.right{
    right: 30px;
}


/* Arrow hover */

.arrow:hover{
    background: var(--brand-blue);

    border-color: var(--brand-blue);

    transform: translateY(-50%) scale(1.05);
}


/* =========================================
   TABLET
========================================= */

@media(max-width: 1100px){

    .hero{
        height: 650px;
    }

    .hero-content{
        left: 8%;

        width: 550px;

        max-width: 50%;
    }

    .hero-content h1{
        font-size: 44px;
    }

    .hero-tagline{
        font-size: 20px;
    }

    .hero-description{
        font-size: 16px;
    }

    .hero-chair{
        right: 1%;

        width: 45%;
    }

    .arrow{
        display: none;
    }
}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 768px){

    .hero{
        height: 620px;
    }

    .hero-overlay{
        background:
            linear-gradient(
                90deg,
                rgba(4,24,40,.94),
                rgba(4,35,57,.78)
            );
    }

    /* Make chair smaller on mobile */

    .hero-chair{
        right: -15%;

        bottom: 0;

        width: 65%;

        height: 55%;

        opacity: .30;
    }

    .hero-chair img{
        max-width: 400px;
    }

    .hero-content{
        left: 7%;

        right: 7%;

        width: auto;

        max-width: 86%;
    }

    .hero-content::before{
        display: none;
    }

    .eyebrow{
        font-size: 10px;

        letter-spacing: 1.5px;

        padding: 7px 12px;
    }

    .hero-content h1{
        font-size: 34px;

        line-height: 1.2;
    }

    .hero-tagline{
        margin-top: 20px;

        font-size: 18px;

        line-height: 1.5;
    }

    .hero-description{
        font-size: 14px;

        line-height: 1.6;

        margin-bottom: 25px;
    }

    .hero-btns{
        flex-wrap: wrap;

        gap: 10px;
    }

    .btn{
        min-width: 135px;

        padding: 13px 20px;

        font-size: 14px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width: 480px){

    .hero{
        height: 600px;
    }

    .hero-chair{
        right: -25%;

        width: 75%;

        height: 50%;

        opacity: .22;
    }

    .hero-content{
        top: 48%;
    }

    .hero-content h1{
        font-size: 30px;
    }

    .hero-tagline{
        font-size: 17px;
    }

    .hero-description{
        font-size: 13px;
    }

    .btn{
        min-width: 125px;

        padding: 12px 16px;
    }
}
/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section{

    width:100%;

    padding:35px 0;

    background:#fff;

}


/* =====================================================
   CONTAINER
===================================================== */

.about-container{

    width:1200px;

    max-width:90%;

    margin:0 auto;

    display:grid;

    grid-template-columns:45% 55%;

    align-items:center;

    gap:45px;

}


/* =====================================================
   LEFT CONTENT
===================================================== */

.about-content{

    padding-right:20px;
    
    

}


/* =====================================================
   HEADING
===================================================== */

.about-content h2{

    position:relative;

    color:var(--text-dark);

    font-size:34px;

    line-height:1.25;

    letter-spacing:2px;

    font-weight:800;

    margin-bottom:28px;

    text-transform:uppercase;

}


/* Blue line above heading */

.about-content h2::before{

    content:"";

    display:block;

    width:55px;

    height:4px;

    background:var(--brand-blue);

    margin-bottom:18px;

}


/* =====================================================
   PARAGRAPH
===================================================== */

.about-content p{

    color:var(--text-gray);

    font-size:15px;

    line-height:1.9;

    margin-bottom:18px;
    text-align: justify;

}


/* =====================================================
   READ MORE BUTTON
===================================================== */

.about-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-top:12px;

    padding:14px 27px;

    background:var(--brand-blue);

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    border:2px solid var(--brand-blue);

    transition:all .3s ease;

}


.about-btn i{

    font-size:12px;

    transition:transform .3s ease;

}


.about-btn:hover{

    background:var(--brand-dark);

    border-color:var(--brand-dark);

}


.about-btn:hover i{

    transform:translateX(4px);

}


/* =====================================================
   IMAGE SLIDER
===================================================== */

.about-slider{

    width:100%;

    position:relative;

    overflow:hidden;

    background:#eee;

}


/* =====================================================
   SLIDES CONTAINER
===================================================== */

.about-slides{

    position:relative;

    width:100%;

    height:430px;

}


/* =====================================================
   INDIVIDUAL SLIDE
===================================================== */

.about-slide{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    opacity:0;

    visibility:hidden;

    transition:

        opacity .7s ease,

        visibility .7s ease;

}


.about-slide.active{

    opacity:1;

    visibility:visible;

    z-index:2;

}


/* =====================================================
   SLIDER IMAGE
===================================================== */

.about-slide img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

}


/* =====================================================
   DARK GRADIENT
===================================================== */

.about-slider::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:100px;

    background:

        linear-gradient(
            to top,
            rgba(0,0,0,.55),
            transparent
        );

    z-index:3;

    pointer-events:none;

}


/* =====================================================
   SLIDER ARROWS
===================================================== */

.about-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:42px;

    height:42px;

    border:none;

    background:rgba(255,255,255,.90);

    color:var(--brand-blue);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:5;

    transition:all .3s ease;

}


.about-arrow:hover{

    background:var(--brand-blue);

    color:#fff;

}


.about-prev{

    left:18px;

}


.about-next{

    right:18px;

}


.about-arrow i{

    font-size:15px;

}


/* =====================================================
   SLIDER DOTS
===================================================== */

.about-dots{

    position:absolute;

    left:50%;

    bottom:18px;

    transform:translateX(-50%);

    display:flex;

    align-items:center;

    gap:7px;

    z-index:6;

}


.about-dot{

    width:8px;

    height:8px;

    padding:0;

    border:none;

    border-radius:50%;

    background:#fff;

    opacity:.8;

    cursor:pointer;

    transition:all .3s ease;

}


.about-dot.active{

    width:24px;

    border-radius:10px;

    background:var(--brand-blue);

    opacity:1;

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:992px){

    .about-section{

        padding:70px 0;

    }


    .about-container{

        grid-template-columns:1fr;

        gap:50px;

    }


    .about-content{

        padding-right:0;

    }


    .about-content h2{

        font-size:31px;

    }


    .about-slider{

        width:100%;

    }


    .about-slides{

        height:420px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .about-section{

        padding:55px 0;

    }


    .about-container{

        max-width:92%;

        gap:35px;

    }


    .about-content h2{

        font-size:25px;

        line-height:1.3;

        letter-spacing:1.5px;

        margin-bottom:22px;

    }


    .about-content p{

        font-size:14px;

        line-height:1.8;

    }


    .about-slides{

        height:270px;

    }


    .about-arrow{

        width:36px;

        height:36px;

    }


    .about-prev{

        left:10px;

    }


    .about-next{

        right:10px;

    }


    .about-dots{

        bottom:12px;

    }

}
/* =========================================================
   LEADERSHIP PHILOSOPHY
========================================================= */

.leadership-philosophy{
    position:relative;
    width:100%;
    padding:30px 0;
    background:#ffffff;
    overflow:hidden;
}


/* =========================================================
   BACKGROUND ACCENTS
========================================================= */

.leadership-philosophy::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:var(--brand-light, #EAF5FC);

    opacity:.7;
}

.leadership-philosophy::after{
    content:"";
    position:absolute;
    bottom:-160px;
    left:-160px;

    width:360px;
    height:360px;

    border-radius:50%;

    border:60px solid #f5f9fc;

    opacity:.8;
}


/* =========================================================
   CONTAINER
========================================================= */

.leadership-container{
    position:relative;
    z-index:2;

    width:1100px;
    max-width:90%;

    margin:0 auto;

    text-align:center;
}


/* =========================================================
   EYEBROW
========================================================= */

.leadership-eyebrow{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    margin-bottom:25px;

    color:var(--brand-blue, #0E73BA);

    font-size:12px;
    font-weight:800;

    letter-spacing:3px;
}

.leadership-eyebrow span{
    display:block;

    width:35px;
    height:3px;

    background:var(--brand-blue, #0E73BA);
}


/* =========================================================
   TAGLINE
========================================================= */

.leadership-main{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.leadership-tagline{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:25px;

    width:100%;
}

.tagline-line{
    position:relative;

    width:75px;
    height:2px;

    background:var(--brand-blue, #0E73BA);
}

.tagline-line:first-child::after{
    content:"";

    position:absolute;

    right:-1px;
    top:50%;

    width:7px;
    height:7px;

    border-radius:50%;

    background:var(--brand-blue, #0E73BA);

    transform:translateY(-50%);
}

.tagline-line:last-child::after{
    content:"";

    position:absolute;

    left:-1px;
    top:50%;

    width:7px;
    height:7px;

    border-radius:50%;

    background:var(--brand-blue, #0E73BA);

    transform:translateY(-50%);
}


/* =========================================================
   MAIN TITLE
========================================================= */

.leadership-tagline h2{
    margin:0;

    color:var(--brand-dark, #083B66);

    font-size:64px;
    line-height:1.05;

    font-weight:700;

    letter-spacing:-2px;

    white-space:nowrap;
}

.leadership-tagline h2 strong{
    color:var(--brand-blue, #0E73BA);

    font-weight:800;
}


/* =========================================================
   TAGLINE ACCENT
========================================================= */

.tagline-accent{
    width:120px;
    height:4px;

    margin-top:18px;

    background:var(--brand-blue, #0E73BA);
}


/* =========================================================
   CONTENT
========================================================= */

.leadership-content{
    max-width:850px;

    margin:38px auto 0;
}


/* Main statement */

.leadership-intro{
    margin:0;

    color:#183b57;

    font-size:18px;
    line-height:1.8;

    font-weight:400;
}

.leadership-intro strong{
    color:var(--brand-dark, #083B66);

    font-weight:700;
}


/* Supporting statement */

.leadership-description{
    max-width:760px;

    margin:25px auto 0;

    padding-top:22px;

    border-top:1px solid #e5edf3;

    color:#687786;

    font-size:15px;
    line-height:1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .leadership-philosophy{
        padding:80px 0;
    }

    .leadership-tagline h2{
        font-size:50px;
    }

    .tagline-line{
        width:50px;
    }

    .leadership-content{
        max-width:750px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .leadership-philosophy{
        padding:65px 0;
    }

    .leadership-container{
        max-width:92%;
    }

    .leadership-eyebrow{
        font-size:10px;
        letter-spacing:2px;

        gap:8px;
    }

    .leadership-eyebrow span{
        width:25px;
        height:2px;
    }

    .leadership-tagline{
        gap:12px;
    }

    .tagline-line{
        width:25px;
    }

    .leadership-tagline h2{
        font-size:34px;
        line-height:1.15;

        letter-spacing:-1px;

        white-space:normal;
    }

    .tagline-accent{
        width:80px;
        height:3px;

        margin-top:14px;
    }

    .leadership-content{
        margin-top:30px;
    }

    .leadership-intro{
        font-size:15px;
        line-height:1.75;
    }

    .leadership-description{
        font-size:14px;
        line-height:1.75;

        margin-top:20px;
        padding-top:18px;
    }

}
/* =========================================================
   INDUSTRY SEGMENTS
========================================================= */

.segments{
    width:100%;
    padding:30px 0;
    background:#f8fafc;
}

.segments-container{
    width:1200px;
    max-width:90%;
    margin:0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.segments-heading{
    display:grid;
    grid-template-columns:60% 40%;
    align-items:end;
    gap:40px;
    margin-bottom:50px;
}


/* =========================================================
   EYEBROW
========================================================= */

.segments-eyebrow{
    display:inline-block;
    color:var(--brand-blue);
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:14px;
}

.segments-eyebrow::before{
    content:"";
    display:inline-block;
    width:35px;
    height:3px;
    background:var(--brand-blue);
    vertical-align:middle;
    margin-right:10px;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.segments-title h2{
    color:var(--brand-dark);
    font-size:34px;
    line-height:1.35;
    font-weight:700;
    margin:0;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.segments-description{
    padding-left:30px;
    border-left:3px solid var(--brand-blue);
}

.segments-description p{
    color:#555;
    font-size:15px;
    line-height:1.8;
    margin:0;
}


/* =========================================================
   GRID
========================================================= */

.segment-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}


/* =========================================================
   CARD
========================================================= */
/* =========================================================
   SEGMENT CARD
========================================================= */

.segment-card{

    position:relative;

    min-height:360px;

    padding:0;

    background:#083B66;

    border:1px solid rgba(255,255,255,.15);

    overflow:hidden;

    isolation:isolate;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.segment-card-bg{

    position:absolute;

    inset:0;

    z-index:-2;

    background-image:var(--segment-bg);

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    transform:scale(1);

    transition:transform .7s ease;
}


/* =========================================================
   DARK BLUE IMAGE OVERLAY
========================================================= */

.segment-card::after{

    content:"";

    position:absolute;

    inset:0;

    z-index:-1;

    background:
        linear-gradient(
            180deg,
            rgba(4,24,40,.42) 0%,
            rgba(4,24,40,.62) 45%,
            rgba(4,24,40,.94) 100%
        );

    transition:
        background .4s ease;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.segment-card-content{

    position:relative;

    z-index:2;

    min-height:360px;

    padding:35px 30px 30px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    color:#fff;
}


/* =========================================================
   TOP BLUE LINE
========================================================= */

.segment-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:var(--brand-blue);

    z-index:5;

    transition:width .45s ease;
}


.segment-card:hover::before{

    width:100%;

}


/* =========================================================
   HOVER
========================================================= */

.segment-card:hover{

    transform:translateY(-8px);

    border-color:var(--brand-blue);

    box-shadow:
        0 20px 45px rgba(7,27,54,.22);
}


.segment-card:hover .segment-card-bg{

    transform:scale(1.08);

}


.segment-card:hover::after{

    background:
        linear-gradient(
            180deg,
            rgba(4,24,40,.32) 0%,
            rgba(4,24,40,.58) 40%,
            rgba(8,59,102,.94) 100%
        );

}


/* =========================================================
   ICON
========================================================= */

.segment-icon{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    margin-bottom:20px;

    background:rgba(14,115,186,.92);

    color:#fff;

    font-size:22px;

    border:1px solid rgba(255,255,255,.18);

    transition:
        background .35s ease,
        transform .35s ease,
        border-color .35s ease;
}


.segment-card:hover .segment-icon{

    background:#fff;

    color:var(--brand-blue);

    border-color:#fff;

    transform:translateY(-3px);

}


/* =========================================================
   CARD TITLE
========================================================= */

.segment-card h3{

    color:#fff;

    font-size:20px;

    font-weight:700;

    line-height:1.4;

    margin:0 0 12px;

    transition:color .3s ease;
}


.segment-card:hover h3{

    color:#fff;

}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.segment-card p{

    color:rgba(255,255,255,.86);

    font-size:14px;

    line-height:1.75;

    margin:0;

}


/* =========================================================
   LEARN MORE
========================================================= */

.segment-link{

    display:inline-flex;

    align-items:center;

    align-self:flex-start;

    gap:9px;

    margin-top:20px;

    color:#fff;

    font-size:11px;

    font-weight:800;

    letter-spacing:1.2px;

    text-transform:uppercase;

    text-decoration:none;

    padding-bottom:4px;

    border-bottom:1px solid rgba(255,255,255,.5);

    transition:
        color .3s ease,
        border-color .3s ease;
}


.segment-link i{

    font-size:10px;

    transition:transform .3s ease;
}


.segment-link:hover{

    color:#72c5ee;

    border-color:#72c5ee;

}


.segment-link:hover i{

    transform:translateX(5px);

}
/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .segments{
        padding:70px 0;
    }

    .segments-heading{
        grid-template-columns:1fr;
        gap:25px;
    }

    .segments-description{
        padding-left:20px;
    }

    .segments-title h2{
        font-size:30px;
    }

    .segment-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


@media(max-width:600px){

    .segments{

        padding:55px 0;

    }


    .segments-container{

        max-width:92%;

    }


    .segments-heading{

        margin-bottom:35px;

    }


    .segments-title h2{

        font-size:25px;

        line-height:1.4;

    }


    .segments-description{

        padding-left:15px;

    }


    .segments-description p{

        font-size:14px;

    }


    .segment-grid{

        grid-template-columns:1fr;

        gap:15px;

    }


    .segment-card{

        min-height:330px;

    }


    .segment-card-content{

        min-height:330px;

        padding:30px 25px;

    }


    .segment-card h3{

        font-size:19px;

    }


    .segment-card p{

        font-size:13.5px;

        line-height:1.7;

    }

}
/* =========================================================
   EXECUTIVE MANAGEMENT
========================================================= */

.team-section{
    width:100%;
    padding:30px 0;
    background:#fff;
    overflow:hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.container-team{
    width:1200px;
    max-width:90%;
    margin:0 auto;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title{
    margin-bottom:45px;
}

.team-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:var(--brand-blue);

    font-size:13px;
    font-weight:800;

    letter-spacing:2px;

    margin-bottom:12px;
}

.team-eyebrow::before{
    content:"";

    width:38px;
    height:3px;

    background:var(--brand-blue);
}


.section-title h2{
    margin:0;

    color:var(--brand-dark);

    font-size:42px;
    line-height:1.2;

    font-weight:800;
}


.section-title h2 span{
    color:var(--brand-blue);
}


.section-title p{
    max-width:650px;

    margin-top:15px;

    color:#667685;

    font-size:15px;
    line-height:1.8;
}


/* =========================================================
   SLIDER
========================================================= */

.team-slider{
    position:relative;

    width:100%;

    overflow:hidden;
}


/* =========================================================
   TRACK
========================================================= */

.team-track{
    display:flex;

    gap:24px;

    transition:transform .55s ease;

    will-change:transform;
}


/* =========================================================
   CARD
========================================================= */

.team-card{

    flex:0 0 calc((100% - 72px) / 4);

    background:#fff;

    border:1px solid #e3eaf0;

    overflow:hidden;

    position:relative;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.team-card:hover{

    transform:translateY(-8px);

    border-color:var(--brand-blue);

    box-shadow:
        0 18px 45px rgba(8,59,102,.13);
}


/* =========================================================
   IMAGE
========================================================= */

.image-box{

    width:100%;

    height:300px;

    position:relative;

    overflow:hidden;

    background:var(--brand-light);
}


.image-box::after{

    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:80px;

    background:
        linear-gradient(
            to top,
            rgba(8,59,102,.35),
            transparent
        );

    pointer-events:none;
}


.image-box img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .5s ease;
}


.team-card:hover .image-box img{

    transform:scale(1.05);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.team-content{

    padding:24px 22px 25px;

    min-height:160px;

    background:#fff;
}


.team-content h3{

    margin:0 0 10px;

    color:var(--brand-dark);

    font-size:18px;

    font-weight:800;

    line-height:1.35;

    text-transform:uppercase;
}


.team-content p{

    margin:0;

    min-height:45px;

    color:#657482;

    font-size:13.5px;

    line-height:1.7;
}


/* =========================================================
   PROFILE LINK
========================================================= */

.team-more{

    display:inline-flex;

    align-items:center;

    gap:9px;

    margin-top:17px;

    color:var(--brand-blue);

    text-decoration:none;

    font-size:12px;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.3s;
}


.team-more i{

    font-size:11px;

    transition:.3s;
}


.team-more:hover{

    color:var(--brand-dark);
}


.team-more:hover i{

    transform:translateX(5px);
}


/* =========================================================
   ARROWS
========================================================= */

.team-arrow{

    position:absolute;

    top:42%;

    transform:translateY(-50%);

    width:46px;
    height:46px;

    border:1px solid #dce6ed;

    background:#fff;

    color:var(--brand-blue);

    display:flex;

    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:5;

    box-shadow:
        0 6px 20px rgba(8,59,102,.12);

    transition:.3s;
}


.team-arrow:hover{

    background:var(--brand-blue);

    border-color:var(--brand-blue);

    color:#fff;
}


.team-prev{
    left:-20px;
}


.team-next{
    right:-20px;
}


.team-arrow i{
    font-size:14px;
}


/* =========================================================
   DOTS
========================================================= */

.team-dots{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    margin-top:30px;
}


.team-dot{

    width:8px;
    height:8px;

    border:0;

    border-radius:50%;

    background:#cbd7df;

    padding:0;

    cursor:pointer;

    transition:.3s;
}


.team-dot.active{

    width:25px;

    border-radius:10px;

    background:var(--brand-blue);
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px){

    .team-card{

        flex:0 0 calc((100% - 24px) / 2);
    }

    .team-prev{
        left:5px;
    }

    .team-next{
        right:5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .team-section{
        padding:60px 0;
    }

    .container-team{
        max-width:92%;
    }

    .section-title{
        margin-bottom:32px;
    }

    .section-title h2{
        font-size:29px;
    }

    .section-title p{
        font-size:14px;
    }

    .team-card{

        flex:0 0 100%;
    }

    .image-box{
        height:340px;
    }

    .team-content{
        padding:22px 20px;
    }

    .team-arrow{

        width:40px;
        height:40px;
    }

}
.global-footprint{

    width:100%;

    padding:30px 0;

    background:#f7fafc;

    font-family:'Poppins', sans-serif;

}

.global-footprint *{

    font-family:'Poppins', sans-serif;

}


.global-container{

    width:1200px;

    max-width:92%;

    margin:auto;

}


/* =========================================================
   HEADER
========================================================= */

.global-header{

    max-width:850px;

    margin:0 auto 35px;

    text-align:center;

}


.global-eyebrow{ 
    display:inline-flex; 
    align-items:center; 
    gap:10px; 

    color:var(--brand-blue, #0E73BA); 

    font-size:12px; 
    font-weight:800; 
    letter-spacing:2px; 

    margin-bottom:12px; 

    text-decoration:none;
}

.global-eyebrow::before{

    content:"";

    width:35px;

    height:3px;

    background:var(--brand-blue, #0E73BA);

}
.global-eyebrow:hover{
    color:var(--brand-dark, #083B66);
    text-decoration:none;
}

.global-header h2{

    margin:0 0 14px;

    color:var(--brand-dark, #083B66);

    font-size:40px;

    line-height:1.25;

    font-weight:800;

}


.global-header h2 span{

    color:var(--brand-blue, #0E73BA);

}


.global-header p{

    margin:0;

    color:#607080;

    font-size:14px;

    line-height:1.7;

}


/* =========================================================
   REGION FILTER
========================================================= */

.region-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:8px;

    margin-bottom:25px;

}


.region-btn{ 
    border:1px solid #d6e3ec; 
    background:#fff; 
    color:var(--brand-dark, #083B66); 
    padding:9px 17px; 
    font-size:16px; 
    font-weight:600; 
    cursor:pointer; 
    transition:.3s ease;

    /* Remove underline from link */
    text-decoration:none;
    
    /* Makes button and <a> look the same */
    display:inline-block;
}

.region-btn,
.region-btn:hover,
.region-btn:focus,
.region-btn:active{
    text-decoration:none;
}

.region-btn:hover,

.region-btn.active{

    background:var(--brand-blue, #0E73BA);

    border-color:var(--brand-blue, #0E73BA);

    color:#fff;

}


/* =========================================================
   LOCATION GRID
========================================================= */

.locations-grid{
    display:grid;

    /* 3 cards in one row */
    grid-template-columns:repeat(3, 300px);

    gap:20px;

    /* Center all 3 cards */
    justify-content:center;

    width:100%;
}


/* =========================================================
   LOCATION CARD
========================================================= */

.location-card{ 
 
    display:none; 
 
    align-items:flex-start; 
 
    gap:12px; 
 
    background:#fff; 
 
    border:1px solid #e2eaf0; 
 
    padding:13px; 
 
    position:relative; 
 
    transition: 
 
        transform .3s ease, 
 
        border-color .3s ease, 
 
        box-shadow .3s ease; 
 
}


/* =========================================================
   SHOW INDIA LOCATIONS AFTER INDIA BUTTON CLICK
========================================================= */

.locations-grid.show-india .location-card[data-region="india"] {
    display:flex;
}


.location-card:hover{ 
 
    transform:translateY(-3px); 
 
    border-color:var(--brand-blue, #0E73BA); 
 
    box-shadow: 
 
        0 10px 25px rgba(8,59,102,.09); 
 
}
/* =========================================================
   HIDE LOCATION CARDS INITIALLY
========================================================= */

.location-card {
    display: none;
}

.location-card.show-location {
    display: flex;
}

/* =========================================================
   ICON
========================================================= */

.location-icon{

    flex-shrink:0;

    width:30px;

    height:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--brand-light, #EAF5FC);

    color:var(--brand-blue, #0E73BA);

    font-size:13px;

    transition:.3s ease;

}


.location-card:hover .location-icon{

    background:var(--brand-blue, #0E73BA);

    color:#fff;

}


/* =========================================================
   LOCATION INFO
========================================================= */

.location-info{

    min-width:0;

}


.location-info span{

    display:block;

    color:var(--brand-blue, #0E73BA);

    font-size:9px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:3px;

}


.location-info h3{

    color:var(--brand-dark, #083B66);

    font-size:14px;

    line-height:1.35;

    margin:0 0 2px;

    font-weight:700;

}


.location-info p{

    color:#71808d;

    font-size:11px;

    margin:0;

    line-height:1.4;

}


/* =========================================================
   VIEW DETAILS BUTTON
========================================================= */

.location-btn{

    margin-top:9px;

    padding:0;

    border:0;

    background:none;

    color:var(--brand-blue, #0E73BA);

    font-size:9px;

    font-weight:700;

    letter-spacing:.8px;

    text-transform:uppercase;

    cursor:pointer;

    display:inline-flex;

    align-items:center;

    gap:5px;

    transition:.3s ease;

}


.location-btn i{

    font-size:8px;

    transition:.3s ease;

}


.location-btn:hover{

    color:var(--brand-dark, #083B66);

}


.location-btn:hover i{

    transform:translateX(3px);

}


/* =========================================================
   MODAL
========================================================= */

.location-modal{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    z-index:99999;

}


.location-modal.show{

    display:flex;

}


.location-modal-overlay{

    position:absolute;

    inset:0;

    background:rgba(4,24,40,.72);

    backdrop-filter:blur(4px);

}


.location-modal-box{

    position:relative;

    z-index:2;

    width:300px;

    max-width:90%;

    background:#fff;

    padding:15px;

    box-shadow:

        0 25px 70px rgba(0,0,0,.25);

    animation:modalIn .3s ease;

}


@keyframes modalIn{

    from{

        opacity:0;

        transform:translateY(20px) scale(.97);

    }

    to{

        opacity:1;

        transform:translateY(0) scale(1);

    }

}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.modal-close{

    position:absolute;

    top:15px;

    right:15px;

    width:35px;

    height:35px;

    border:0;

    border-radius:50%;

    background:#f0f5f8;

    color:var(--brand-dark, #083B66);

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}


.modal-close:hover{

    background:var(--brand-blue, #0E73BA);

    color:#fff;

}


/* =========================================================
   MODAL ICON
========================================================= */

.modal-icon{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--brand-light, #EAF5FC);

    color:var(--brand-blue, #0E73BA);

    font-size:20px;

    margin-bottom:18px;

}


.location-modal-box h2{

    color:var(--brand-dark, #083B66);

    font-size:25px;

    margin:0 0 20px;

    font-weight:700;

}


/* =========================================================
   MODAL DETAILS
========================================================= */

.modal-detail{

    display:flex;

    gap:14px;

    padding:15px 0;

    border-top:1px solid #e8eef2;

}


.modal-detail > i{

    color:var(--brand-blue, #0E73BA);

    font-size:15px;

    margin-top:3px;

    width:20px;

}


.modal-detail small{

    display:block;

    color:var(--brand-blue, #0E73BA);

    font-size:9px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:4px;

}


.modal-detail p{

    margin:0;

    color:#4c5c68;

    font-size:13px;

    line-height:1.6;

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px){

    .locations-grid{

        grid-template-columns:repeat(4,1fr);

    }

}


@media(max-width:900px){

    .locations-grid{

        grid-template-columns:repeat(3,1fr);

    }

    .global-header h2{

        font-size:35px;

    }

}


/* =========================================================
   MOBILE TABLET
========================================================= */

@media(max-width:700px){

    .global-footprint{

        padding:50px 0;

    }

    .locations-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .global-header h2{

        font-size:30px;

    }

    .global-header p{

        font-size:13px;

    }

    .region-filter{

        justify-content:flex-start;

        overflow-x:auto;

        flex-wrap:nowrap;

        padding-bottom:6px;

    }

    .region-btn{

        white-space:nowrap;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:500px){

    .global-container{

        max-width:92%;

    }

    .global-header{

        margin-bottom:25px;

    }

    .global-header h2{

        font-size:27px;

    }

    .global-eyebrow{

        font-size:10px;

        letter-spacing:1.5px;

    }

    .global-header p{

        font-size:12px;

        line-height:1.7;

    }

    .locations-grid{

        grid-template-columns:1fr;

        gap:9px;

    }

    .location-card{

        padding:12px;

    }

    .location-info h3{

        font-size:14px;

    }

    .location-modal-box{

        padding:30px 22px;

    }

}
/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section{

    width:100%;

    padding:35px 0;

    background:#f7fafc;

    position:relative;

    overflow:hidden;

}


/* =========================================================
   CONTAINER
========================================================= */

.faq-container{

    width:1200px;

    max-width:90%;

    margin:0 auto;

}


/* =========================================================
   SECTION HEADER
========================================================= */

.faq-heading{

    display:grid;

    grid-template-columns:58% 42%;

    gap:50px;

    align-items:end;

    margin-bottom:55px;

}


.faq-heading-left{

    position:relative;

}


/* =========================================================
   EYEBROW
========================================================= */

.faq-eyebrow{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--brand-blue);

    font-size:13px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}


.faq-eyebrow::before{

    content:"";

    width:38px;

    height:3px;

    background:var(--brand-blue);

    display:inline-block;

}


/* =========================================================
   MAIN TITLE
========================================================= */

.faq-heading h2{

    margin:0;

    color:var(--brand-dark);

    font-size:40px;

    line-height:1.25;

    font-weight:800;

    max-width:650px;

}


.faq-heading h2 span{

    color:var(--brand-blue);

}


/* =========================================================
   DESCRIPTION
========================================================= */

.faq-heading-right{

    padding-left:30px;

    border-left:3px solid var(--brand-blue);

}


.faq-heading-right p{

    margin:0;

    color:var(--brand-gray);

    font-size:15px;

    line-height:1.85;

}


/* =========================================================
   MAIN GRID
========================================================= */

.faq-grid{

    display:grid;

    grid-template-columns:58% 42%;

    gap:55px;

    align-items:start;

}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list{

    width:100%;

}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item{

    background:#fff;

    border:1px solid #e3ebf1;

    margin-bottom:12px;

    transition:

        border-color .3s ease,

        box-shadow .3s ease;

}


.faq-item:hover{

    border-color:#c8dce9;

}


.faq-item.active{

    border-color:var(--brand-blue);

    box-shadow:

        0 12px 35px rgba(8,59,102,.08);

}


/* =========================================================
   QUESTION BUTTON
========================================================= */

.faq-question{

    width:100%;

    border:0;

    background:#fff;

    display:flex;

    align-items:center;

    text-align:left;

    cursor:pointer;

    padding:23px 24px;

    color:var(--brand-dark);

}


/* =========================================================
   NUMBER
========================================================= */

.faq-number{

    width:42px;

    height:42px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--brand-light);

    color:var(--brand-blue);

    font-size:12px;

    font-weight:800;

    margin-right:18px;

    transition:all .3s ease;

}


.faq-item.active .faq-number{

    background:var(--brand-blue);

    color:#fff;

}


/* =========================================================
   QUESTION TEXT
========================================================= */

.faq-question-text{

    flex:1;

    font-size:16px;

    font-weight:700;

    line-height:1.5;

    padding-right:15px;

    transition:color .3s ease;

}


.faq-item.active .faq-question-text{

    color:var(--brand-blue);

}


/* =========================================================
   PLUS / MINUS ICON
========================================================= */

.faq-icon{

    width:34px;

    height:34px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #d7e3eb;

    color:var(--brand-blue);

    font-size:12px;

    transition:all .3s ease;

}


.faq-item.active .faq-icon{

    background:var(--brand-blue);

    border-color:var(--brand-blue);

    color:#fff;

}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer{

    display:grid;

    grid-template-rows:0fr;

    transition:grid-template-rows .4s ease;

}


.faq-item.active .faq-answer{

    grid-template-rows:1fr;

}


.faq-answer-inner{

    overflow:hidden;

}


.faq-answer p{

    color:var(--brand-gray);

    font-size:14px;

    line-height:1.85;

    margin:0;

    padding:

        0

        70px

        24px

        84px;

}


/* =========================================================
   QUOTE CARD
========================================================= */

.faq-quote{

    position:relative;

    background:

        linear-gradient(

            145deg,

            var(--brand-dark),

            #062c4b 65%,

            var(--brand-blue)

        );

    color:#fff;

    overflow:hidden;

    box-shadow:

        0 20px 50px rgba(8,59,102,.18);

}


/* =========================================================
   DECORATIVE PATTERN
========================================================= */

.quote-pattern{

    position:absolute;

    width:330px;

    height:330px;

    right:-170px;

    top:-170px;

    border:1px solid rgba(255,255,255,.10);

    border-radius:50%;

}


.quote-pattern::before{

    content:"";

    position:absolute;

    width:230px;

    height:230px;

    left:48px;

    top:48px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:50%;

}


/* =========================================================
   QUOTE CONTENT
========================================================= */

.quote-content{

    position:relative;

    z-index:2;

    padding:22px;

}


/* =========================================================
   QUOTE ICON
========================================================= */

.quote-icon{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:20px;

    margin-bottom:22px;

}


/* =========================================================
   SMALL TITLE
========================================================= */

.quote-small{

    color:#a9d9f5;

    font-size:11px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:12px;

}


/* =========================================================
   QUOTE TITLE
========================================================= */

.quote-content h3{

    color:#fff;

    font-size:28px;

    line-height:1.3;

    font-weight:800;

    margin:0 0 14px;

}


.quote-content h3 span{

    color:#72c5ee;

}


/* =========================================================
   QUOTE DESCRIPTION
========================================================= */

.quote-content > p{

    color:#c7dce9;

    font-size:14px;

    line-height:1.75;

    margin:0 0 27px;

}


/* =========================================================
   FORM
========================================================= */

.quote-form{

    width:100%;

}


.quote-input-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

}


/* =========================================================
   INPUT GROUP
========================================================= */

.quote-input{

    margin-bottom:16px;

}


.quote-input label{

    display:block;

    color:#e8f4fa;

    font-size:11px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:7px;

}

/* =========================================================
   INPUT + SELECT + TEXTAREA
========================================================= */

.quote-input input,
.quote-input select,
.quote-input textarea{

    width:100%;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.08);

    color:#fff;

    border-radius:0;

    outline:none;

    font-family:inherit;

    font-size:14px;

    box-sizing:border-box;

    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;

}


/* =========================================================
   TEXT INPUT
========================================================= */

.quote-input input{

    height:48px;

    padding:0 14px;

}


/* =========================================================
   SELECT
========================================================= */

.quote-input select{

    height:48px;

    padding:0 42px 0 14px;

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    cursor:pointer;

    background-color:rgba(255,255,255,.08);

    background-image:

        linear-gradient(45deg, transparent 50%, #a9d9f5 50%),

        linear-gradient(135deg, #a9d9f5 50%, transparent 50%);

    background-position:

        calc(100% - 18px) 20px,

        calc(100% - 12px) 20px;

    background-size:

        6px 6px,

        6px 6px;

    background-repeat:no-repeat;

}


/* =========================================================
   SELECT OPTIONS
========================================================= */

.quote-input select option{

    background:#083B66;

    color:#fff;

    padding:10px;

}


/* =========================================================
   TEXTAREA
========================================================= */

.quote-input textarea{

    height:105px;

    padding:13px 14px;

    resize:none;

    line-height:1.5;

}


/* =========================================================
   PLACEHOLDER
========================================================= */

.quote-input input::placeholder,
.quote-input textarea::placeholder{

    color:rgba(255,255,255,.50);

}


/* =========================================================
   SELECT PLACEHOLDER
========================================================= */

.quote-input select:invalid{

    color:rgba(255,255,255,.50);

}


/* =========================================================
   FOCUS
========================================================= */

.quote-input input:focus,
.quote-input select:focus,
.quote-input textarea:focus{

    border-color:#69c2ed;

    background:rgba(255,255,255,.12);

    box-shadow:
        0 0 0 2px rgba(105,194,237,.08);

}


/* =========================================================
   HOVER
========================================================= */

.quote-input input:hover,
.quote-input select:hover,
.quote-input textarea:hover{

    border-color:rgba(105,194,237,.45);

}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.quote-submit{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:100%;

    height:52px;

    border:2px solid var(--brand-blue);

    background:var(--brand-blue);

    color:#fff;

    font-size:14px;

    font-weight:800;

    cursor:pointer;

    transition:all .3s ease;

}


.quote-submit i{

    transition:transform .3s ease;

}


.quote-submit:hover{

    background:#fff;

    color:var(--brand-blue);

    border-color:#fff;

}


.quote-submit:hover i{

    transform:translateX(5px);

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px){

    .faq-section{

        padding:75px 0;

    }


    .faq-heading{

        grid-template-columns:1fr;

        gap:25px;

        margin-bottom:40px;

    }


    .faq-heading-right{

        padding-left:20px;

    }


    .faq-heading h2{

        font-size:34px;

    }


    .faq-grid{

        grid-template-columns:1fr;

        gap:40px;

    }


    .faq-quote{

        max-width:700px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .faq-section{

        padding:55px 0;

    }


    .faq-container{

        max-width:92%;

    }


    .faq-eyebrow{

        font-size:10px;

        letter-spacing:1.5px;

    }


    .faq-heading h2{

        font-size:27px;

        line-height:1.35;

    }


    .faq-heading-right{

        padding-left:15px;

    }


    .faq-heading-right p{

        font-size:13px;

    }


    .faq-question{

        padding:17px 14px;

    }


    .faq-number{

        width:34px;

        height:34px;

        font-size:10px;

        margin-right:12px;

    }


    .faq-question-text{

        font-size:14px;

    }


    .faq-icon{

        width:30px;

        height:30px;

        font-size:10px;

    }


    .faq-answer p{

        padding:

            0

            20px

            20px

            60px;

        font-size:13px;

        line-height:1.75;

    }


    .quote-content{

        padding:30px 22px;

    }


    .quote-content h3{

        font-size:24px;

    }


    .quote-input-row{

        grid-template-columns:1fr;

        gap:0;

    }

}

/* =========================================================
   GLOBAL FOOTPRINT / STATS
========================================================= */

.stats{
    width:100%;
    background:var(--brand-blue);
    color:#fff;
    padding:15px 0;
    position:relative;
    overflow:hidden;
}

/* subtle background pattern */
.stats::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    right:-180px;
    top:-250px;
}

.stats::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:50%;
    left:-180px;
    bottom:-250px;
}

.stats .wrap{
    position:relative;
    z-index:2;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.stats-grid .stat{
    padding:5px 25px;
    border-left:1px solid rgba(255,255,255,.25);
}

.stats-grid .stat:first-child{
    border-left:none;
}

.stat .num{
    font-size:52px;
    line-height:1;
    font-weight:800;
    color:#fff;
    margin-bottom:12px;
}

.stat .lbl{
    font-size:13px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:rgba(255,255,255,.85);
}


/* Hover */
.stats-grid .stat{
    transition:transform .3s ease;
}

.stats-grid .stat:hover{
    transform:translateY(-5px);
}

.stats-grid .stat:hover .num{
    color:#EAF5FC;
}


/* =========================================================
   CTA BANNER
========================================================= */

.cta-banner{
    width:100%;
    background:
        linear-gradient(
            120deg,
            var(--brand-dark) 0%,
            #062d4e 55%,
            var(--brand-blue) 100%
        );

    color:#fff;
    padding:30px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
}


/* Decorative blue circles */

.cta-banner::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    left:-200px;
    top:-220px;
}

.cta-banner::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:50%;
    right:-250px;
    bottom:-300px;
}


/* Content */

.cta-banner .wrap{
    position:relative;
    z-index:2;
}

.cta-banner h2{
    color:#fff;
    font-size:40px;
    line-height:1.2;
    font-weight:800;
    max-width:700px;
    margin:0 auto 18px;
}

.cta-banner p{
    color:#D9EAF6;
    font-size:16px;
    line-height:1.8;
    max-width:600px;
    margin:0 auto 35px;
}


/* Buttons */

.cta-banner .hero-btns{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-top:0;
}

.cta-banner .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 30px;
    min-width:160px;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:all .3s ease;
}


/* Primary */

.cta-banner .btn-primary{
    background:var(--brand-blue);
    color:#fff;
    border:2px solid var(--brand-blue);
}

.cta-banner .btn-primary:hover{
    background:#fff;
    color:var(--brand-blue);
    border-color:#fff;
}


/* Secondary */

.cta-banner .btn-ghost{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.65);
}

.cta-banner .btn-ghost:hover{
    background:var(--brand-blue);
    border-color:var(--brand-blue);
    color:#fff;
}


/* Arrow animation */

.cta-banner .btn i{
    transition:transform .3s ease;
}

.cta-banner .btn:hover i{
    transform:translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .stats{
        padding:60px 0;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        row-gap:40px;
    }

    .stats-grid .stat{
        border-left:1px solid rgba(255,255,255,.25);
    }

    .stats-grid .stat:nth-child(3){
        border-left:none;
    }

    .stat .num{
        font-size:44px;
    }

    .cta-banner{
        padding:75px 20px;
    }

    .cta-banner h2{
        font-size:34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

    .stats{
        padding:50px 0;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        row-gap:35px;
    }

    .stats-grid .stat{
        padding:0 12px;
    }

    .stats-grid .stat:nth-child(odd){
        border-left:none;
    }

    .stat .num{
        font-size:36px;
    }

    .stat .lbl{
        font-size:10px;
        letter-spacing:1px;
        line-height:1.5;
    }


    .cta-banner{
        padding:60px 20px;
    }

    .cta-banner h2{
        font-size:28px;
        line-height:1.3;
    }

    .cta-banner p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:28px;
    }

    .cta-banner .hero-btns{
        flex-direction:column;
        width:100%;
    }

    .cta-banner .btn{
        width:100%;
        max-width:260px;
    }

}

/* =========================================================
   CLIENT LOGO SLIDER
========================================================= */

.clients-section {
    width: 100%;
    padding: 20px 0;
    background: #fff;
}

.clients-container {
    width: 1200px;
    max-width: 92%;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.clients-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 35px;
    margin-bottom: 45px;
}

.clients-header h2 {
    margin: 0;
    color: var(--brand-dark, #083B66);
    font-size: 40px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    white-space: nowrap;
}

.clients-header h2 strong {
    color: var(--brand-blue, #0E73BA);
    font-weight: 800;
}

/* =========================================================
   CATEGORY
========================================================= */

.client-category {
    margin-bottom: 55px;
}

.client-category h3 {
    color: var(--brand-dark, #083B66);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 25px;
}


/* =========================================================
   SLIDER VIEWPORT
========================================================= */

.client-logos {
    display: flex;
    align-items: center;
    gap: 20px;

    overflow: hidden;

    width: 100%;
    position: relative;

    padding: 10px 0;
}


/* =========================================================
   LOGO ITEM
========================================================= */

.client-logo {
    flex: 0 0 160px;

    height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid #e5e9ed;

    padding: 15px;

    box-sizing: border-box;

    transition: .3s ease;
}

.client-logo:hover {
    transform: translateY(-4px);

    border-color: var(--brand-blue, #0E73BA);

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.client-logo img {
    max-width: 125px;
    max-height: 60px;

    width: auto;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px) {

    .clients-section {
        padding: 20px 0;
    }

    .clients-header {
        padding: 15px 20px;
    }

    .clients-header h2 {
        font-size: 20px;
    }

    .clients-cvg img {
        width: 60px;
    }

    .client-category h3 {
        font-size: 18px;
    }

    .client-logo {
        flex: 0 0 130px;
        height: 80px;
    }

    .client-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}