/* =========================================================
   GLOBAL / BASE
========================================================= */

:root{
    --navy:#061b3a;
    --navy2:#082348;
    --orange:#ef7723;
    --orange2:#f7943d;
    --light:#f7f9fc;
    --text:#10172f;
    --muted:#637083;
    --border:#e3e9f2;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-orange{
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
    border:0;
    font-weight:800;
    border-radius:8px;
    padding:10px 20px;
    font-size:14px;
    box-shadow:0 8px 22px rgba(239,119,35,.28);
    transition:.25s ease;
}

.btn-orange:hover{
    color:#fff;
    transform:translateY(-2px);
}

.btn-navy{
    background:var(--navy);
    color:#fff;
    border-radius:8px;
    padding:12px 32px;
    font-weight:800;
    transition:.25s ease;
}

.btn-navy:hover{
    background:#0b2b59;
    color:#fff;
}

.btn-white{
    background:#fff;
    color:var(--navy);
    border-radius:8px;
    padding:12px 28px;
    font-weight:900;
    transition:.25s ease;
}

.btn-white:hover{
    background:#f3f6fa;
    color:var(--navy);
}

.btn-outline-navy{
    border:1px solid var(--navy);
    color:var(--navy);
    border-radius:8px;
    padding:12px 26px;
    font-weight:800;
}

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

/* =========================================================
   HERO
========================================================= */



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

.tag{
    display:inline-block;
    background:var(--orange);
    color:#fff;
    padding:7px 20px;
    border-radius:5px;
    font-size:13px;
    font-weight:900;
    letter-spacing:2px;
    margin-bottom:18px;
}

.hero h1{
    font-size:66px;
    line-height:1.05;
    font-weight:900;
    color:var(--navy);
    letter-spacing:-2px;
    margin-bottom:22px;
}

.hero p{
    font-size:20px;
    color:#24304a;
    font-weight:700;
    max-width:760px;
    margin-bottom:26px;
}

.hero-points{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.hero-point{
    display:flex;
    align-items:center;
    gap:12px;
    padding-right:28px;
    border-right:1px solid #d7dce5;
}

.hero-point:last-child{
    border-right:0;
}

.hero-point i{
    width:42px;
    height:42px;
    background:var(--navy);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-point span{
    font-weight:800;
    color:var(--navy);
    font-size:14px;
    line-height:1.2;
}

/* =========================================================
   COMMON SECTIONS
========================================================= */

.section{
    padding:90px 0;
}

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

.section-dark{
    background:var(--navy);
    color:#fff;
}

.section-kicker{
    color:var(--orange);
    font-size:12px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.section-title{
    color:var(--navy);
    font-size:36px;
    font-weight:900;
    margin-bottom:16px;
    letter-spacing:-.8px;
}

.section-dark .section-title{
    color:#fff;
}

.section-subtitle{
    color:#5b6679;
    max-width:760px;
    margin:0 auto;
    line-height:1.7;
    font-weight:500;
}

.section-dark .section-subtitle{
    color:#c5d0df;
}

.image-card{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(12,31,63,.16);
    position:relative;
}

.image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay-badge{
    position:absolute;
    left:24px;
    bottom:24px;
    background:#fff;
    color:var(--navy);
    padding:16px 18px;
    border-radius:14px;
    box-shadow:0 12px 32px rgba(0,0,0,.18);
    max-width:260px;
}

.overlay-badge strong{
    display:block;
    font-size:24px;
    font-weight:900;
    color:var(--orange);
}

.overlay-badge span{
    font-size:13px;
    font-weight:800;
}

/* =========================================================
   ABOUT
========================================================= */

.about-img{
    height:360px;
}

.about p{
    color:#445064;
    font-weight:500;
    line-height:1.75;
}

.mini-features{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:26px;
}

.mini-feature{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    color:var(--navy);
    font-size:14px;
    padding:10px 14px;
    border:1px solid var(--border);
    border-radius:50px;
    background:#fff;
}

.mini-feature i{
    width:32px;
    height:32px;
    background:#fff5ee;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--orange);
}

/* =========================================================
   STATS
========================================================= */

.stats-strip{
    margin-top:-46px;
    position:relative;
    z-index:10;
}

.stats-box{
    background:#fff;
    border-radius:18px;
    box-shadow:0 18px 48px rgba(12,31,63,.13);
    border:1px solid #eef2f7;
    overflow:hidden;
}

.stat-item{
    padding:28px 22px;
    border-right:1px solid #e6ebf2;
    height:100%;
}

.stat-item:last-child{
    border-right:0;
}

.stat-item h3{
    color:var(--navy);
    font-size:34px;
    font-weight:900;
    margin-bottom:4px;
}

.stat-item p{
    margin:0;
    color:#5d687a;
    font-size:13px;
    font-weight:700;
}

/* =========================================================
   SERVICES
========================================================= */

.service-card{
    border:1px solid #eef2f7;
    border-radius:18px;
    background:#fff;
    padding:30px;
    height:100%;
    box-shadow:0 8px 28px rgba(12,31,63,.07);
    transition:.3s;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s;
}

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

.service-card:hover{
    transform:translateY(-7px);
    box-shadow:0 16px 40px rgba(12,31,63,.13);
}

.service-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#f2f6fb;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.service-icon i{
    font-size:30px;
    color:var(--navy);
}

.service-card h5{
    font-size:17px;
    font-weight:900;
    color:var(--navy);
    line-height:1.35;
    margin-bottom:10px;
}

.service-card p{
    font-size:14px;
    color:#566274;
    margin:0;
    line-height:1.65;
}

/* =========================================================
   CAPABILITIES
========================================================= */

.capability-wrap{
    background:#fff;
    border-radius:26px;
    box-shadow:0 18px 55px rgba(12,31,63,.1);
    overflow:hidden;
    border:1px solid #edf1f6;
}

.capability-wrap .row{
    align-items:stretch;
}

.capability-img-col{
    display:flex;
}

.capability-img{
    width:100%;
    height:100%;
    min-height:620px;
    display:flex;
}

.capability-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.capability-list{
    min-height:620px;
    padding:52px 56px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.capability-item{
    display:flex;
    gap:18px;
    padding:22px 0;
    border-bottom:1px solid #edf1f6;
}

.capability-item:last-child{
    border-bottom:0;
}

.capability-item i{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:14px;
    background:#fff2e8;
    color:var(--orange);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.capability-item h5{
    font-size:17px;
    color:var(--navy);
    font-weight:900;
    margin-bottom:5px;
}

.capability-item p{
    margin:0;
    color:#5d687a;
    line-height:1.55;
    font-size:14px;
}

/* =========================================================
   PROCESS
========================================================= */

.process-card{
    background:#fff;
    border:1px solid #e9eef5;
    border-radius:18px;
    padding:30px;
    height:100%;
    box-shadow:0 10px 30px rgba(12,31,63,.06);
    position:relative;
}

.process-number{
    width:46px;
    height:46px;
    border-radius:50%;
    background:var(--navy);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    margin-bottom:20px;
}

.process-card h5{
    color:var(--navy);
    font-weight:900;
    margin-bottom:10px;
}

.process-card p{
    color:#5d687a;
    font-size:14px;
    line-height:1.65;
    margin:0;
}

/* =========================================================
   INDUSTRIES
========================================================= */

.industry-card{
    height:220px;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    color:#fff;
    box-shadow:0 14px 34px rgba(12,31,63,.16);
}

.industry-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.industry-card:hover img{
    transform:scale(1.08);
}

.industry-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(6,27,58,.92),rgba(6,27,58,.18));
    z-index:1;
}

.industry-content{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    gap:12px;
    padding:26px;
}

.industry-content i{
    width:54px;
    height:54px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    backdrop-filter:blur(6px);
}

.industry-content h5{
    margin:0;
    font-weight:900;
    font-size:21px;
}

.industry-content p{
    margin:0;
    color:#d7e0ec;
    font-size:13px;
    line-height:1.5;
}

.industry-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    padding:34px 0 0;
    flex-wrap:wrap;
}

.industry-tab{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--navy);
    font-weight:800;
    font-size:14px;
    padding:12px 18px;
    border:1px solid #e3e8f0;
    border-radius:50px;
    background:#fff;
}

.industry-tab i{
    color:var(--orange);
    font-size:22px;
}

/* =========================================================
   WHY CHOOSE
========================================================= */

.why-card{
    text-align:center;
    padding:34px 18px;
    border-right:1px solid rgba(255,255,255,.12);
    height:100%;
}

.why-card:last-child{
    border-right:0;
}

.why-card i{
    width:62px;
    height:62px;
    margin:0 auto 18px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:var(--orange);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:27px;
}

.why-card h6{
    font-weight:900;
    color:#fff;
    font-size:15px;
    line-height:1.35;
}

.why-card p{
    color:#c5d0df;
    font-size:13px;
    line-height:1.55;
    margin:0;
}

/* =========================================================
   STANDARDS
========================================================= */

.standard-card{
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:18px;
    padding:26px;
    height:100%;
    box-shadow:0 10px 28px rgba(12,31,63,.06);
}

.standard-card i{
    width:50px;
    height:50px;
    border-radius:14px;
    background:#fff3ea;
    color:var(--orange);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:16px;
}

.standard-card h5{
    font-weight:900;
    color:var(--navy);
    font-size:17px;
    margin-bottom:8px;
}

.standard-card p{
    color:#5d687a;
    line-height:1.6;
    font-size:14px;
    margin:0;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-card{
    background:#fff;
    border-radius:22px;
    box-shadow:0 18px 50px rgba(12,31,63,.12);
    border:1px solid #edf1f6;
    padding:34px;
    height:100%;
}

.contact-item{
    display:flex;
    gap:16px;
    padding:18px 0;
    border-bottom:1px solid #edf1f6;
}

.contact-item:last-child{
    border-bottom:0;
}

.contact-item i{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:14px;
    background:#fff3ea;
    color:var(--orange);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-item h6{
    font-weight:900;
    color:var(--navy);
    margin-bottom:4px;
}

.contact-item p,
.contact-item a{
    margin:0;
    color:#5d687a;
    font-size:14px;
    font-weight:600;
}

.form-control,
.form-select{
    height:52px;
    border-radius:10px;
    border:1px solid #dfe6ef;
    font-size:14px;
    font-weight:600;
}

textarea.form-control{
    height:130px;
    resize:none;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1199px){
    .hero h1{
        font-size:56px;
    }

    .capability-list{
        padding:42px;
    }

    .capability-img,
    .capability-list{
        min-height:600px;
    }
}

@media(max-width:991px){
    html{
        scroll-padding-top:82px;
    }

    .hero{
        min-height:auto;
        padding:76px 0;
    }

    .hero h1{
        font-size:44px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-point{
        border-right:0;
    }

    .section{
        padding:66px 0;
    }

    .section-title{
        font-size:30px;
    }

    .stats-strip{
        margin-top:0;
        padding-top:40px;
    }

    .stat-item{
        border-right:0;
        border-bottom:1px solid #e6ebf2;
    }

    .capability-img-col{
        display:block;
    }

    .capability-img{
        height:420px;
        min-height:420px;
    }

    .capability-list{
        min-height:auto;
        padding:34px 30px;
        display:block;
    }

    .why-card{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.12);
    }
}

@media(max-width:575px){
    html{
        scroll-padding-top:76px;
    }

    .container-fluid{
        padding-left:20px;
        padding-right:20px;
    }

    .hero{
        padding:62px 0;
        background:
            linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.9) 100%),
            url("../banner.png");
        background-size:cover;
        background-position:center;
    }

    .hero h1{
        font-size:35px;
        letter-spacing:-1px;
    }

    .hero p{
        font-size:15px;
    }

    .btn-navy,
    .btn-orange,
    .btn-outline-navy,
    .btn-white{
        width:100%;
        text-align:center;
    }

    .hero-points{
        gap:16px;
    }

    .hero-point{
        width:100%;
        padding-right:0;
    }

    .section-title{
        font-size:27px;
    }

    .about-img{
        height:250px;
    }

    .capability-img{
        height:340px;
        min-height:340px;
    }

    .capability-list{
        padding:28px 22px;
    }

    .capability-item{
        gap:14px;
        padding:18px 0;
    }

    .capability-item i{
        width:42px;
        height:42px;
        min-width:42px;
        font-size:18px;
    }

    .industry-card{
        height:210px;
    }

    .contact-card{
        padding:24px;
    }
}