/*================== Career Popup ==================*/

.wpcareer-overlay{

position:fixed;
left:0;
top:0;

width:100%;
height:100%;

background:rgba(8,18,35,.70);

backdrop-filter:blur(7px);

display:flex;
justify-content:center;
align-items:center;

opacity:0;
visibility:hidden;

transition:.30s;

z-index:999999;

padding:25px;

}

.wpcareer-overlay.active{

opacity:1;
visibility:visible;

}

.wpcareer-box{

width:100%;
max-width:720px;

background:#fff;

border-radius:22px;

padding:35px;

position:relative;

animation:wpcareerScale .28s ease;

box-shadow:0 30px 90px rgba(0,0,0,.30);

}

@keyframes wpcareerScale{

from{

opacity:0;
transform:translateY(25px) scale(.96);

}

to{

opacity:1;
transform:none;

}

}

.wpcareer-close{

position:absolute !important;

top:18px !important;
right:18px !important;

width:42px !important;
height:42px !important;

display:flex !important;
align-items:center !important;
justify-content:center !important;

padding:0 !important;
margin:0 !important;

border:none !important;
outline:none !important;

border-radius:50% !important;

background:#f3f5f9 !important;

color:#333 !important;

font-size:22px !important;
font-weight:600 !important;
line-height:1 !important;

cursor:pointer !important;

transition:.3s ease !important;

box-shadow:0 5px 18px rgba(0,0,0,.12);

z-index:999999 !important;

}

.wpcareer-close:hover{

background:#0057ff !important;

color:#fff !important;

transform:rotate(90deg) scale(1.08);

box-shadow:0 10px 25px rgba(0,87,255,.35);

}

.wpcareer-header{

text-align:center;

margin-bottom:28px;

}

.wpcareer-header h2{

font-size:30px;

margin-bottom:8px;

}

.wpcareer-header p{

font-size:15px;

color:#777;

line-height:26px;

}

.wpcareer-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:18px;

margin-bottom:18px;

}

.wpcareer-field label{

display:block;

font-weight:600;

margin-bottom:8px;

font-size:14px;

}

.wpcareer-field input,
.wpcareer-field textarea{

width:100%;

padding:13px 15px;

border-radius:12px;

border:1px solid #d9e0eb;

font-size:15px;

transition:.25s;

background:#fbfcff;

}

.wpcareer-field textarea{

resize:none;

}

.wpcareer-field input:focus,
.wpcareer-field textarea:focus{

outline:none;

border-color:#0057ff;

box-shadow:0 0 0 4px rgba(0,87,255,.10);

}

.wpcareer-submit{

width:100%;

height:54px;

border:none;

border-radius:12px;

margin-top:8px;

background: linear-gradient(90deg, #ff8d09, #ff8d09);

color:#fff;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.25s;

}

.wpcareer-submit:hover{

transform:translateY(-2px);

box-shadow:0 15px 35px rgba(0,87,255,.25);

}

@media(max-width:768px){

.wpcareer-box{

padding:25px;

}

.wpcareer-row{

grid-template-columns:1fr;

gap:15px;

}

.wpcareer-header h2{

font-size:24px;

}

}


.desktop-br {
            display: inline;
        }

        @media (max-width: 768px) {
            .desktop-br {
                display: none;
            }
        }

        h1 {
            line-height: 1.3;
            /* try 1.1 - 1.3 */
        }

        .about-modern {
            padding: 90px;
                background: linear-gradient(to right, #dbdbdb, #d3d3d3);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Images */
        .about-images {
            position: relative;
        }

        .img-main img {
            width: 100%;
            border-radius: 16px;
        }

        .img-overlay {
            position: absolute;
            bottom: -40px;
            right: -30px;
            width: 60%;
        }

        .img-overlay img {
            width: 100%;
            border-radius: 12px;
            border: 6px solid #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Content */
        .about-subtitle {
            color: #ff6600;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .about-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-title span {
            color: #ff6600;
        }

        .about-text {
            color: #000000;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        /* Features */
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .feature-box {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .feature-box i {
            color: #ff6600;
        }

        /* Button */
        .about-btn {
            display: inline-block;
            padding: 12px 28px;
            background: #ff6600;
            color: #fff;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.3s;
        }

        .about-btn:hover {
            background: #ffffff;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .img-overlay {
                position: relative;
                bottom: 0;
                right: 0;
                margin-top: 20px;
                width: 70%;
            }
        }

        @media (max-width: 576px) {
            .about-title {
                font-size: 28px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        .stats-modern {
            padding: 60px 0;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: #fff;
            text-align: center;
        }

        /* Header */
        .stats-header {
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .stats-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stats-title span {
            color: #ff6600;
        }

        .stats-sub {
            color: #cbd5e1;
        }

        /* Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        /* Card */
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 25px 20px;
            border-radius: 16px;
            transition: 0.4s;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
        }

        /* Number */
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: #ff6600;
            margin-bottom: 10px;
        }

        /* Label */
        .stat-label {
            font-size: 16px;
            color: #e2e8f0;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stats-title {
                font-size: 28px;
            }
        }

        .brand-strip {
            padding: 60px 0;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: #fff;
            text-align: center;
        }

        /* Header */
        .brand-header {
            margin-bottom: 37px;
        }

        .brand-title {
            font-size: 36px;
            font-weight: 700;
        }

        .brand-title span {
            color: #ff6600;
        }

        .brand-sub {
            color: #cbd5e1;
            margin-top: 10px;
        }

        /* Slider */
        .brand-slider {
            overflow: hidden;
            position: relative;
        }

        /* Track */
        .brand-track {
            display: flex;
            gap: 40px;
            width: max-content;
            animation: scrollX 25s linear infinite;
        }

        /* Items */
        .brand-item {
            min-width: 140px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
           
            border-radius: 12px;
            padding: 10px;
            backdrop-filter: blur(8px);
            
            transition: 0.3s;
        }

        .brand-item img {
            max-width: 100%;
            border-radius: 9px;
            max-height: 100px;
            object-fit: contain;
            transition: 0.3s;
        }

        /* Hover Effect */
        .brand-item:hover {
            transform: translateY(-6px);
            background: rgba(255, 255, 255, 0.1);
        }



        /* Animation */
        @keyframes scrollX {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .brand-title {
                font-size: 28px;
            }

            .brand-track {
                gap: 20px;
                animation-duration: 18s;
            }

            .brand-item {
                min-width: 110px;
                height: 70px;
            }
        }

        .srv-page {
            background: linear-gradient(135deg, #0f172a, #1e293b);
        }

        .why-card {
            background-color: #0f172a;
        }

        .banner__three-content p {
            color: #fff;
            margin-top: 10px;
            font-size: 16px;
        }

        .banner__three-content-button {
            margin-top: 45px;
        }

        @media (max-width: 768px) {
            .about-features {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px 15px;
            }
        }

        .default_button:hover {
            color: black;
        }

:root{
    --acc-bg:#f3f0eb;
    --acc-text:#111111;
    --acc-muted:#6c6c6c;
    --acc-primary:#002f3a;
    --acc-white:#ffffff;
    --acc-shadow:0 20px 60px rgba(0,0,0,.08);
}

/* =======================
   HERO SECTION
======================= */

.acc-hero-wrap{
    position:relative;
    overflow:hidden;
    background:var(--acc-bg);
    padding:70px 0;
}

.acc-hero-wrap::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    background:radial-gradient(circle,
    rgba(255,255,255,.7) 0%,
    rgba(255,255,255,0) 70%);
    top:-150px;
    left:20%;
    pointer-events:none;
}

.acc-hero-container{
    width:min(1400px,92%);
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.header-hero-container{
    width:min(1400px,92%);
    margin:auto;
 /*   display:flex;*/
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* =======================
   LEFT CONTENT
======================= */

.acc-hero-content{
    flex:1;
    max-width:720px;
    animation:accFadeLeft .9s ease forwards;
}

.acc-hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    background:#fff;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    color:#6f6482;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    margin-bottom:28px;
}

.acc-hero-title{
    font-size:58px;
    line-height:1.08;
    font-weight:700;
    color:var(--acc-text);
    margin:0 0 28px;
    letter-spacing:-2px;
}

.acc-hero-desc{
    font-size:20px;
    line-height:1.8;
    color:var(--acc-muted);
    max-width:720px;
    margin-bottom:42px;
}

.acc-hero-btns{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
}

.acc-btn-primary,
.acc-btn-secondary{
    min-width:190px;
    height:64px;
    border-radius:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:700;
    font-size:17px;
    transition:.4s ease;
}

.acc-btn-primary{
    background:#000;
    color:#fff;
    box-shadow:0 20px 35px rgba(0,0,0,.15);
}

.acc-btn-primary:hover{
    transform:translateY(-5px);
     color:white;
}

.acc-btn-secondary{
    background:#fff;
    color:#111;
    box-shadow:0 15px 30px rgba(0,0,0,.06);
}

.acc-btn-secondary:hover{
    transform:translateY(-5px);
}

/* =======================
   IMAGE SIDE
======================= */

.acc-hero-image-area{
    flex:0 0 530px;
    position:relative;
    animation:accFadeRight .9s ease forwards;
}

.acc-main-image{
    position:relative;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.acc-main-image img{
    width:100%;
    display:block;
    object-fit:cover;
    transition:transform .8s ease;
}

.acc-main-image:hover img{
    transform:scale(1.04);
}

/* Decorative Shape */
.acc-main-image::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:var(--acc-bg);
    left:-1px;
    top:160px;
    border-radius:0 0 28px 0;
    z-index:2;
}

.acc-skill-card{
    position:absolute;
    left:-90px;
    bottom:70px;
    width:320px;
    background:#fff;
    padding:28px;
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    z-index:5;
    backdrop-filter:blur(15px);
    animation:accFloat 4s ease-in-out infinite;
}

.acc-skill-item:not(:last-child){
    margin-bottom:24px;
}

.acc-skill-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    color:#222;
    font-size:17px;
}

.acc-skill-head strong{
    font-weight:700;
}

.acc-progress{
    height:12px;
    background:#e6edf0;
    border-radius:50px;
    overflow:hidden;
}

.acc-progress span{
    display:block;
    height:100%;
    border-radius:50px;
    background:linear-gradient(90deg,#003d4a,#0a6676);
}

/* =======================
   ANIMATIONS
======================= */

@keyframes accFadeLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes accFadeRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes accFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

/* =======================
   LARGE LAPTOP
======================= */

@media(max-width:1400px){

    .acc-hero-title{
        font-size:68px;
    }

    .acc-hero-image-area{
        flex:0 0 480px;
    }
}

/* =======================
   TABLET
======================= */

@media(max-width:991px){

    .acc-hero-wrap{
        padding:90px 0;
    }

    .acc-hero-container{
        flex-direction:column;
        text-align:center;
        gap:60px;
    }

    .acc-hero-content{
        max-width:100%;
    }

    .acc-hero-title{
        font-size:58px;
    }

    .acc-hero-desc{
        max-width:100%;
    }

    .acc-hero-btns{
        justify-content:center;
    }

    .acc-hero-image-area{
        flex:auto;
        width:100%;
        max-width:600px;
    }

    .acc-skill-card{
        left:20px;
        bottom:20px;
    }
}

/* =======================
   MOBILE
======================= */

@media(max-width:767px){

    .acc-hero-wrap{
        padding:70px 0;
    }

    .acc-hero-title{
        font-size:42px;
        line-height:1.15;
        letter-spacing:-1px;
    }

    .acc-hero-desc{
        font-size:16px;
        line-height:1.8;
    }

    .acc-btn-primary,
    .acc-btn-secondary{
        width:100%;
    }

    .acc-hero-image-area{
        max-width:100%;
    }

    .acc-skill-card{
        position:relative;
        left:auto;
        bottom:auto;
        width:100%;
        margin-top:-50px;
    }

    .acc-main-image::before{
        width:80px;
        height:80px;
        top:110px;
    }
}

@media(max-width:480px){

    .acc-hero-title{
        font-size:36px;
    }

    .acc-hero-badge{
        font-size:13px;
    }
}


/* =========================================
   PREMIUM FINANCE SECTION
========================================= */

.finx-section{
    position:relative;
    overflow:hidden;
    padding:70px 0;
    background: linear-gradient(135deg, #c26822 0%, #c85e09 35%);
}

/* Premium Glow Effects */

.finx-section::before{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    top:-250px;
    left:-150px;
    background:radial-gradient(circle,
    rgba(255,255,255,0.08) 0%,
    transparent 70%);
    pointer-events:none;
}

.finx-section::after{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    right:-250px;
    bottom:-300px;
    background:radial-gradient(circle,
    rgba(255,255,255,0.06) 0%,
    transparent 70%);
    pointer-events:none;
}

.finx-container{
    width:min(1400px,92%);
    margin:auto;
    position:relative;
    z-index:2;
}

.finx-grid{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:120px;
    align-items:center;
}

.finx-subtitle{
    display:inline-block;
    color:#d6e6dd;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:28px;
    position:relative;
    padding-left:18px;
}

.finx-subtitle::before{
    content:'';
    width:8px;
    height:8px;
    border-radius:50%;
    background:#9de3bf;
    position:absolute;
    left:0;
    top:8px;
}

.finx-title{
    font-size: 54px;
    line-height: 1.02;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0px;
    max-width: 900px;
}

.finx-right{
    position:relative;
}

.finx-line{
    width:80px;
    height:2px;
    background:rgba(255,255,255,.35);
    margin-bottom:35px;
}

.finx-right p{
    color: #dce7e1;
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

/* =========================================
   HOVER EFFECT
========================================= */

.finx-title{
    transition:all .5s ease;
}

.finx-section:hover .finx-title{
    transform:translateY(-3px);
}

/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width:1400px){

    .finx-title{
        font-size:66px;
    }

    .finx-right p{
        font-size:24px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width:991px){

    .finx-section{
        padding:100px 0;
    }

    .finx-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .finx-title{
        font-size:56px;
        max-width:100%;
    }

    .finx-right p{
        font-size:22px;
        max-width:100%;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:767px){

    .finx-section{
        padding:80px 0;
    }

    .finx-subtitle{
        font-size:13px;
    }

    .finx-title{
        font-size:38px;
        line-height:1.1;
        letter-spacing:-1px;
    }

    .finx-right p{
        font-size:18px;
        line-height:1.8;
    }

    .finx-line{
        width:60px;
        margin-bottom:25px;
    }
}

@media (max-width:480px){

    .finx-title{
        font-size:32px;
    }

    .finx-right p{
        font-size:16px;
    }
}


/* ==========================
   PREMIUM WHY US SECTION
========================== */

.why-us-premium{
    background:#f3f0eb;
    position:relative;
    overflow:hidden;
}

.why-us-heading{
    margin-bottom:20px;
}

.why-us-subtitle{
    display:inline-block;
    background:#ffffff;
    color:#6b6580;
    font-size:14px;
    font-weight:600;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.why-us-heading h2{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:18px;
    color:#111;
}

.why-us-heading p{
    color:#666;
    font-size:17px;
    line-height:1.8;
    max-width:720px;
    margin:auto;
}

.why-us-card{
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    height:100%;
    text-align:center;
    transition:all .4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
}

.why-us-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#003a46,#0f7386);
    transform:scaleX(0);
    transition:.4s;
}

.why-us-card:hover::before{
    transform:scaleX(1);
}

.why-us-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.10);
}

.why-us-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background: linear-gradient(135deg, #004949, #004949);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    box-shadow:0 15px 35px rgba(0,58,70,.25);
}

.why-us-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.why-us-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin:0;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:991px){

    .why-us-heading h2{
        font-size:38px;
    }

    .why-us-card{
        padding:35px 25px;
    }
}

@media (max-width:767px){

    .why-us-heading h2{
        font-size:30px;
    }

    .why-us-heading p{
        font-size:15px;
    }

    .why-us-card{
        margin-bottom:10px;
    }

    .why-us-icon{
        width:75px;
        height:75px;
        font-size:28px;
    }
}

.process__area-item-area i {
    font-size: 42px;
    margin-bottom: 20px;
    display: block;
    color: #0a5d48;
}

.process__area-item {
    height: 100%;
}

.process__area-item-area {
    text-align: center;
}


.apx-stats-section{
    background:#f3f0eb;
    padding:110px 0;
    position:relative;
    overflow:hidden;
}

.apx-container{
    width:min(1320px,92%);
    margin:auto;
}

/* ==========================
   HEADER
========================== */

.apx-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.apx-badge{
    display:inline-block;
    padding:10px 20px;
    background:#fff;
    border-radius:60px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    color:#0a5d48;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
    margin-bottom:22px;
}

.apx-header h2{
    font-size:40px;
    line-height:1.15;
    margin-bottom:18px;
    color:#111;
    font-weight:600;
    letter-spacing:-1px;
}

.apx-header h2 span{
    color:#0a5d48;
}

.apx-header p{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin:0;
}

/* ==========================
   GRID
========================== */

.apx-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* ==========================
   CARD
========================== */

.apx-stat-card{
    background:#ffffff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    border:1px solid rgba(0,0,0,.04);
}

.apx-stat-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#0a5d48,#12a37c);
    transform:scaleX(0);
    transition:.35s;
}

.apx-stat-card:hover::before{
    transform:scaleX(1);
}

.apx-stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* ==========================
   ICON
========================== */

.apx-icon{
    width:72px;
    height:72px;
    margin:0 auto 22px;
    border-radius:50%;
    background:linear-gradient(135deg,#0a5d48,#118565);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 12px 30px rgba(10,93,72,.18);
}

/* ==========================
   NUMBER
========================== */

.apx-value{
    font-size:44px;
    font-weight:600;
    line-height:1;
    color:#111;
    margin-bottom:14px;
}

/* ==========================
   TITLE
========================== */

.apx-stat-card h4{
    font-size:19px;
    font-weight:600;
    color:#111;
    margin-bottom:10px;
}

/* ==========================
   TEXT
========================== */

.apx-stat-card p{
    font-size:15px;
    line-height:1.7;
    color:#666;
    margin:0;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .apx-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .apx-header h2{
        font-size:34px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

    .apx-stats-section{
        padding:80px 0;
    }

    .apx-stats-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .apx-header{
        margin-bottom:40px;
    }

    .apx-header h2{
        font-size:28px;
    }

    .apx-header p{
        font-size:15px;
    }

    .apx-value{
        font-size:38px;
    }

    .apx-stat-card{
        padding:30px 20px;
    }

    .apx-icon{
        width:65px;
        height:65px;
        font-size:24px;
    }

    .apx-stat-card h4{
        font-size:18px;
    }
}




.accreditation-section {
    background: linear-gradient(to right, #1b1f24, #222831, #2c3440);
    padding-top: 48px;
    padding-bottom: 64px;
}

.accreditation-section h2 {
    font-size: 32px;
    color: #ffffff;
}

.logo-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.logo-box img {
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-box:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.logo-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bnr-nx {
            position: relative;
            min-height: 520px;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: #0f3d32;
        }

        .bnr-nx-imgbg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .bnr-nx-imgbg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: right center;
            display: block;
        }

        /* ✅ This is the magic — gradient fades the image into the dark bg on the left */
        .bnr-nx-fade {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(to right, #0f3d32 40%, #0f3d32cc 56%, #0f3d3244 72%, transparent 88%);
        }

        .bnr-nx-inner {
            position: relative;
            z-index: 2;
            padding: 4rem 3rem;
            max-width: 560px;
        }

        .bnr-nx-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 20px;
            padding: 5px 16px;
            margin-bottom: 1.5rem;
        }

        .bnr-nx-tag-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #f07230;
            flex-shrink: 0;
        }

        .bnr-nx-h1 {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.15;
            color: #fff;
            margin: 0 0 1rem;
        }

        .bnr-nx-h1 span {
            color: #f07230;
        }

        .bnr-nx-p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.75;
            margin: 0 0 2rem;
            max-width: 420px;
        }

        .bnr-nx-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #0f3d32;
            background: #f07230;
            border: none;
            border-radius: 8px;
            padding: 13px 28px;
            text-decoration: none;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .bnr-nx-btn:hover {
            opacity: 0.9;
        }

        .bnr-nx-dots {
            display: flex;
            gap: 8px;
            margin-top: 2rem;
        }

        .bnr-nx-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.2s, transform 0.2s;
        }

        .bnr-nx-dot.active {
            background: #ff7f00;
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .bnr-nx-h1 {
                font-size: 36px;
            }

            .bnr-nx-inner {
                padding: 3rem 1.5rem;
            }

            .bnr-nx-fade {
                background: linear-gradient(to right, #0f3d32 60%, #0f3d3299 80%, transparent 100%);
            }
        }

        /* ================= ANIMATIONS ================= */

        .anim {
            opacity: 0;
            transform: translateY(40px);
        }

        .anim.show {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        /* Subtitle special (fadeInLeft) */
        .bnr-nx-tag.anim {
            transform: translateX(-40px);
        }

        .bnr-nx-tag.anim.show {
            transform: translateX(0);
        }

        /* ================= EXISTING DESIGN ================= */

        .bnr-nx {
            position: relative;
            min-height: 520px;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: #0f3d32;
        }

        .bnr-nx-imgbg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .bnr-nx-imgbg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: right center;
        }

        .bnr-nx-fade {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(to right, #222831 40%, #222831cc 56%, #22283166 72%, transparent 88%);
        }

        .bnr-nx-inner {
            position: relative;
            z-index: 2;
            padding: 4rem 3rem;
            max-width: 560px;
        }

        .bnr-nx-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 20px;
            padding: 5px 16px;
            margin-bottom: 1.5rem;
        }

        .bnr-nx-tag-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #f07230;
        }

        .bnr-nx-h1 {
            font-size: 38px;
            font-weight: 700;
            color: #fff;
        }

        .bnr-nx-h1 span {
            color: #f07230;
        }

        .bnr-nx-p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        .bnr-nx-btn {
            background: #ff7f00;
            padding: 13px 28px;
            border-radius: 8px;
            text-decoration: none;
            color: #0f3d32;
            font-weight: 600;
        }

        .bnr-nx-dots {
            margin-top: 6rem;
            display: flex;
            gap: 8px;
        }

        .bnr-nx-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
        }

        .bnr-nx-dot.active {
            background: #f07230;
            transform: scale(1.3);
        }

        .tsm-section {
           background-color: #f8f7f4;
        }

        .tsm-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #0f3d32;
            background: #e0f0eb;
            border-radius: 20px;
            padding: 5px 18px;
            display: inline-block;
        }

        .tsm-title {
            font-size: 34px;
            font-weight: 600;
            color: #111;
            line-height: 1.2;
        }

        .tsm-title span {
            color: #ed7531
        }

        .tsm-sub {
            font-size: 13px;
            color: #000000;
            max-width: 500px;
            line-height: 1.75;
        }

        .tsm-track-wrap {
            overflow: hidden;
        }

        .tsm-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
            will-change: transform;
        }

        .tsm-card {
            flex: 0 0 calc(33.333% - 16px);
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1.75rem;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .tsm-quote-icon {
            width: 38px;
            height: 38px;
            background: #282e39;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .tsm-stars {
            display: flex;
            gap: 3px;
        }

        .tsm-star {
            width: 14px;
            height: 14px;
            fill: #ff7f00;;
        }

        .tsm-text {
            font-size: 14px;
            color: #000000;
            line-height: 1.8;
            flex: 1;
            margin: 0;
        }

        .tsm-divider {
            height: 1px;
            background: #f0f0f0;
        }

        .tsm-person {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tsm-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            flex-shrink: 0;
        }

        .tsm-name {
            font-size: 14px;
            font-weight: 700;
            color: #111;
            margin: 0;
        }

        .tsm-role {
            font-size: 12px;
            color: #888;
            margin: 0;
        }

        .tsm-company {
            font-size: 11px;
            font-weight: 600;
            color: #0f3d32;
            background: #e0f0eb;
            border-radius: 4px;
            padding: 2px 8px;
            display: inline-block;
            margin-top: 3px;
        }

        .tsm-controls {
            gap: 10px;
        }

        .tsm-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1.5px solid #ddd;
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .tsm-btn:hover {
            background: #0f3d32;
            border-color: #0f3d32;
        }

        .tsm-btn:hover svg {
            stroke: #fff !important;
        }

        .tsm-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.25s;
        }

        .tsm-dot.active {
            background: #0f3d32;
            width: 24px;
            border-radius: 4px;
        }

        @media (max-width: 767px) {
            .tsm-card {
                flex: 0 0 100%;
            }

            .tsm-title {
                font-size: 28px;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .tsm-card {
                flex: 0 0 calc(50% - 12px);
            }
        }

        .tsm-btn {
            border: none;
            background: #f5f5f5;
            padding: 10px 14px;
            cursor: pointer;
            border-radius: 6px;
        }

        .tsm-btn:hover {
            background: #ddd;
        }

        .tsm-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            border: none;
            margin: 0 4px;
        }

        /* Section */
        .srv-page {
          background: linear-gradient(to right, #1b1f24, #222831, #2c3440);
        }

        /* Header */
        .srv-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #0f3d32;
            background: #e0f0eb;
            border-radius: 20px;
            padding: 5px 18px;
            display: inline-block;
            margin-bottom: 0.75rem;
        }

        .srv-h2 {
            font-size: 34px;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 0.5rem;
            line-height: 1.2;
        }

        .srv-h2 span {
            color: #ee702f;
        }

        .srv-sub {
            font-size: 17px;
            color: #ffffff;
            /*max-width: 500px;*/
            line-height: 1.75;
        }

        /* Card */
        .srv-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            height: 100%;
        }

        .srv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.13);
        }

        /* Image */
        .srv-img-wrap {
            overflow: hidden;
        }

        .srv-img-wrap img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .srv-card:hover .srv-img-wrap img {
            transform: scale(1.05);
        }

        /* Body */
        .srv-body {
            padding: 1.5rem 1.5rem 0.75rem;
        }

        .srv-num {
            font-size: 12px;
            font-weight: 700;
            color: #0f3d32;
            background: #e0f0eb;
            border-radius: 20px;
            padding: 3px 13px;
            display: inline-block;
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
        }

        .srv-title {
            font-size: 18px;
            font-weight: 700;
            color: #111;
            margin: 0 0 0.6rem;
        }

        .srv-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .srv-title a:hover {
            color: #0f3d32;
        }

        .srv-p {
            font-size: 14px;
            color: #666;
            line-height: 1.75;
            margin: 0 0 0.25rem;
        }

        .srv-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            font-weight: 700;
            color: #0f3d32;
            text-decoration: none;
            
            padding-bottom: 2px;
            transition: color 0.2s;
        }

        .srv-link:hover {
            color: #ff7f00;;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange: #ff7f00;
            --orange-light: #ff9a33;
            --orange-pale: #fff4e6;
            --dark: #1a1a1a;
            --mid: #444;
            --light: #f8f8f5;
            --white: #ffffff;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--light);
            color: var(--dark);
        }

        /* ── WHY CHOOSE US ── */
        .why {
            padding: 26px 0 26px;
            background:#ffffff;
        }

        .container {
            max-width: 1353px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 18px;
        }

        .section-label::before {
            content: '';
            display: inline-block;
            width: 28px;
            height: 2px;
            background: var(--orange);
        }

        .section-title {

            font-size: clamp(30px, 4vw, 34px);
            font-weight: 600;
            line-height: 1.15;
            color: #000000;
            max-width: 540px;
        }

        .section-title span {
            color: var(--orange);
        }

        .why-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 64px;
        }

        /* Image block */
        .why-img-wrap {
            position: relative;
        }

        .why-img-main {
            width: 100%;
            border-radius: 20px;
            aspect-ratio: 4/5;
            object-fit: cover;
            display: block;
            background: #e0d8d0;
        }

        /* Placeholder gradient image */
        .why-img-placeholder {
            width: 85%;
            aspect-ratio: 4/5;
            border-radius: 20px;
            background: linear-gradient(145deg, #e8ddd0 0%, #c9bfb0 100%);
            position: relative;
            overflow: hidden;
        }

        .why-img-placeholder::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .18) 0%, transparent 60%);
            border-radius: 20px;
        }

        .badge-float {
            position: absolute;
            bottom: -20px;
            left: -24px;
            background: var(--orange);
            color: #fff;
            border-radius: 16px;
            padding: 20px 26px;
            box-shadow: 0 12px 32px rgba(255, 127, 0, .3);
            animation: floatY 3s ease-in-out infinite;
        }

        .badge-float strong {

            font-size: 34px;
            display: block;
            line-height: 1;
        }

        .badge-float span {
            font-size: 12px;
            font-weight: 500;
            opacity: .9;
            letter-spacing: .5px;
        }

        @keyframes floatY {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        /* Cards */
        .why-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .why-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 28px 28px;
            border-radius: 16px;
            background: #252b35;
            border: 1.5px solid transparent;
            transition: border-color .3s, transform .3s, box-shadow .3s;
            cursor: default;
        }

        .why-card:hover {
            border-color: var(--orange);
            transform: translateX(6px);
            box-shadow: 0 8px 28px rgba(255, 127, 0, .1);
        }

        .why-card-icon {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--orange-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            transition: background .3s;
        }

        .why-card:hover .why-card-icon {
            background: var(--orange);
        }

        .why-card:hover .why-card-icon .icon-em {
            filter: brightness(10);
        }

        .icon-em {
            font-size: 22px;
            line-height: 1;
            transition: filter .3s;
        }

        .why-card-body h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: -9px;
        }

        .why-card-body p {
            font-size: 14px;
            color: var(--mid);
            line-height: 1.65;
        }

        /* ── STATS ── */
        .stats {
            padding: 90px 0;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 127, 0, .15) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 127, 0, .1) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats-inner {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 64px;
        }

        .stats-inner .section-label {
            color: var(--orange-light);
        }

        .stats-inner .section-label::before {
            background: var(--orange-light);
        }

        .stats-inner .section-title {
            color: var(--white);
            max-width: 480px;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            padding: 52px 36px;
            text-align: center;
            position: relative;
            transition: background .3s;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: rgba(255, 255, 255, .12);
        }

        .stat-item:hover {
            background: rgba(255, 127, 0, .06);
        }

        .stat-number {
            font-size: clamp(48px, 5vw, 72px);
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 2px;
        }

        .stat-number sup {
            font-size: 0.36em;
            color: var(--orange);
            font-weight: 700;
            margin-top: 10px;
            font-family: 'DM Sans', sans-serif;
            letter-spacing: 1px;
        }

        .stat-plus {
            color: var(--orange);
            font-size: 0.5em;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            margin-top: 6px;
        }

        .stat-divider {
            width: 36px;
            height: 3px;
            background: var(--orange);
            border-radius: 2px;
            margin: 18px auto 14px;
        }

        .stat-label {
            font-size: 15px;
            color: rgba(255, 255, 255, .6);
            font-weight: 400;
            letter-spacing: .3px;
        }

        /* counter animation */
        .stat-number .num {
            display: inline-block;
            transition: opacity .4s;
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .why-layout {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .badge-float {
                bottom: -16px;
                left: 16px;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stat-item:nth-child(2)::after {
                display: none;
            }

            .stat-item:nth-child(3) {
                grid-column: span 2;
            }

            .stat-item:nth-child(3)::after {
                display: none;
            }
        }

        @media (max-width: 560px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-item::after {
                display: none !important;
            }

            .stat-item:nth-child(3) {
                grid-column: span 1;
            }
        }

        /* Scroller Wrapper */
        .logo-scroller {
            overflow: hidden;
            position: relative;
        }

        /* Track */
        .logo-track {
            display: flex;
            width: max-content;
            animation: scrollLogos 25s linear infinite;
        }

        /* Logo Box */
        .logo-box {
            flex: 0 0 auto;
            width: 180px;
            margin: 0 20px;
            padding: 20px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Logo Image */
        .logo-box img {
            max-height: 50px;
            width: auto;
            object-fit: contain;
            filter: none;
            /* remove grayscale */
            opacity: 1;

        }

        /* Hover Effect */
        .logo-box:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* Animation */
        @keyframes scrollLogos {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .stats-section {
            padding: 40px 40px;
            background: #ffffff;
            font-family: 'DM Sans', sans-serif;
        }

        .stats-head {
            text-align: center;
            margin-bottom: 60px;
        }

        .stats-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ff7f00;
            margin-bottom: 14px;
        }

        .stats-tag::before,
        .stats-tag::after {
            content: '';
            width: 24px;
            height: 2px;
            background: #ff7f00;
            display: inline-block;
        }

        .stats-headline {
            font-size: clamp(28px, 3.5vw, 33px);
            font-weight: 0;
            color: #1a1a1a;
            line-height: 1.2;
        }

        .stats-headline em {
            font-style: normal;
            color: #ff7f00;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            max-width: 820px;
            margin: 0 auto;
        }

        .stat-card {
            position: relative;
            padding: 44px 32px;
            text-align: center;
        }

        .stat-card:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: #e5e5e5;
        }

        .stat-num {
            font-size: clamp(48px, 5vw, 68px);
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0;
        }

        .stat-plus {
            font-size: 0.42em;
            color: #ff7f00;
            /* font-family: 'DM Sans', sans-serif; */
            font-weight: 600;
            margin-top: 6px;
            line-height: 1;
        }

        .stat-bar {
            width: 32px;
            height: 3px;
            background: #ff7f00;
            border-radius: 2px;
            margin: 16px auto 12px;
        }

        .stat-label {
            font-size: 14px;
            color: #777777;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        @media (max-width: 560px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-card::after {
                display: none !important;
            }

            .stat-card {
                padding: 32px 24px;
                border-bottom: 1px solid #e5e5e5;
            }

            .stat-card:last-child {
                border-bottom: none;
            }
        }


          *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange: #ff7f00;
            --orange-light: #ff9a33;
            --orange-pale: #fff4e6;
            --dark: #1a1a1a;
            --mid: #666666;
            --border: #e8e8e8;
            --light-bg: #f9f8f6;
            --white: #ffffff;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark);
            background: #ffffff;;
        }

        /* ── HERO ── */
        .hero {
            background: #ffffff;
            padding: 120px 40px 110px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -160px;
            right: -160px;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: rgba(255, 127, 0, 0.07);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -120px;
            left: -100px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: rgba(255, 127, 0, 0.05);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 860px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: 100px;
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 32px;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--orange);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(40px, 6vw, 74px);
            font-weight: 800;
            color: var(--dark);
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--orange);
        }

        .hero p {
            font-size: clamp(15px, 2vw, 18px);
            color: var(--mid);
            line-height: 1.75;
            max-width: 580px;
            margin: 0 auto 40px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--orange);
            color: var(--white);
            border: none;
            padding: 14px 30px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.25s, transform 0.2s;
        }

        .btn-primary:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--dark);
            border: 1.5px solid var(--border);
            padding: 14px 30px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
            text-decoration: none;
            transition: border-color 0.25s, color 0.25s, transform 0.2s;
        }

        .btn-outline:hover {
            border-color: var(--orange);
            color: var(--orange);
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            margin-top: 64px;
            padding-top: 48px;
            border-top: 1px solid rgba(0, 0, 0, .08);
            flex-wrap: wrap;
        }

        .hero-stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }

        .hero-stat-num span {
            color: var(--orange);
        }

        .hero-stat-label {
            font-size: 13px;
            color: var(--mid);
            margin-top: 4px;
        }

        .hero-stat-sep {
            width: 1px;
            height: 40px;
            background: var(--border);
        }

        /* ── SECTION SHARED ── */
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 14px;
        }

        .section-tag::before,
        .section-tag::after {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--orange);
            display: inline-block;
        }

        .section-headline {
           
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 450;
            color: var(--dark);
            line-height: 1.2;
        }

        .section-headline em {
            font-style: normal;
            color: var(--orange);
        }

        /* ── JOBS SECTION ── */
        .jobs-section {
            padding: 90px 40px 100px;
            background: var(--white);
        }

        .jobs-head {
           
            display: flex;
            justify-content: center;   /* center horizontally */
            text-align: center;        /* center text */

            gap: 40px;
            align-items: end;
            margin-bottom: 56px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .jobs-head-right p {
            font-size: 16px;
            color: var(--mid);
            line-height: 1.75;
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .job-card {
            background: #2a313c;
            border-radius: 20px;
            padding: 8px 36px 11px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1.5px solid transparent;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 48px rgba(0, 0, 0, .25);
            border-color: rgba(255, 127, 0, .3);
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 127, 0, .08) 0%, transparent 70%);
            pointer-events: none;
        }

        .job-card-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .job-type {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: white;
            font-weight: 500;
        }

        .job-type-icon {
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            line-height: 1;
        }

        .job-badge {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .15);
            color: rgba(255, 255, 255, .75);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 100px;
            letter-spacing: .5px;
            white-space: nowrap;
        }

        .job-badge.orange {
            background: rgba(255, 127, 0, .2);
            border-color: rgba(255, 127, 0, .35);
            color: #ffab55;
        }

        .job-card h3 {
            font-family: 'DM Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 12px;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 13px;
            color: white;
        }

        .job-meta-icon {
            font-size: 13px;
            line-height: 1;
        }

        .job-divider {
            height: 1px;
            background: rgba(255, 255, 255, .08);
            margin-bottom: 16px;
        }

        .job-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 32px;
        }

        .job-skill {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .1);
            color: rgba(255, 255, 255, .6);
            font-size: 12px;
            font-weight: 500;
            padding: 5px 12px;
            border-radius: 6px;
        }

        .job-apply {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--orange);
            border: 1.5px solid rgba(255, 127, 0, .4);
            padding: 11px 24px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.25s, border-color 0.25s, color 0.25s;
        }

        .job-apply:hover {
            background: var(--orange);
            border-color: var(--orange);
            color: var(--white);
        }

        .job-apply-arrow {
            font-size: 13px;
            transition: transform 0.2s;
        }

        .job-apply:hover .job-apply-arrow {
            transform: translateX(4px);
        }
.jobs-head .section-headline {
    width: 100%;
}
        /* CTA Strip */
        .cta-strip {
            background: var(--orange);
            padding: 56px 40px;
            text-align: center;
        }

        .cta-strip h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 12px;
        }

        .cta-strip p {
            font-size: 16px;
            color: rgba(255, 255, 255, .8);
            margin-bottom: 28px;
        }

        .cta-strip .btn-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            color: var(--orange);
            border: none;
            padding: 14px 32px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 700;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .cta-strip .btn-white:hover {
            transform: translateY(-2px);
        }

        /* ── Responsive ── */
        @media (max-width: 860px) {
            .jobs-head {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .jobs-grid {
                grid-template-columns: 1fr;
            }

            .hero-stat-sep {
                display: none;
            }
        }

        @media (max-width: 560px) {
            .hero {
                padding: 80px 20px 80px;
            }

            .jobs-section {
                padding: 60px 20px 70px;
            }

            .job-card {
                padding: 28px 24px 24px;
            }
        }

          *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange: #ff7f00;
            --dark: #1a1a1a;
            --mid: #666666;
            --border: #e8e8e8;
            --light-bg: #f9f8f6;
            --white: #ffffff;
        }



        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 14px;
        }

        .section-tag::before,
        .section-tag::after {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--orange);
            display: inline-block;
        }

        .section-headline {
           
            font-size: clamp(22px, 3.5vw, 35px);
            font-weight: 450;
            color: rgb(255, 255, 255);
            line-height: 1.2;
        }

        .section-headline em {
            font-style: normal;
            color: var(--orange);
        }

        /* ── VISION & MISSION ── */
        .vm-section {
            padding: 90px 40px;
            background: var(--white);
        }

        .vm-head {
            text-align: center;
            margin-bottom: 56px;
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            max-width: 900px;
            margin: 0 auto;
        }

        .vm-card {
            padding: 48px 40px;
            border-radius: 20px;
            border: 1.5px solid var(--border);
            background: var(--white);
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .vm-card:hover::before {
            transform: scaleX(1);
        }

        .vm-card:hover {
            border-color: rgba(255, 127, 0, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(255, 127, 0, 0.08);
        }

        .vm-card-icon {
            width: 58px;
            height: 58px;
            border-radius: 16px;
            background: #fff4e6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 28px;
            transition: background 0.3s;
        }

        .vm-card:hover .vm-card-icon {
            background: var(--orange);
        }

        .vm-card:hover .vm-card-icon .card-icon {
            filter: brightness(10);
        }

        .card-icon {
            font-size: 24px;
            line-height: 1;
            transition: filter 0.3s;
        }

        .vm-card-label {
            font-size: 19px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .vm-card h3 {
            /* font-family: 'Playfair Display', serif; */
            font-size: 14px;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.25;
        }

        .vm-card p {
            font-size: 15px;
            color: var(--mid);
            line-height: 1.75;
        }

        .vm-divider {
            width: 36px;
            height: 3px;
            background: var(--orange);
            border-radius: 2px;
            margin: 20px 0;
        }

        .vm-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 4px;
        }

        .vm-card ul li {
            font-size: 14px;
            color: var(--mid);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .vm-card ul li::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }

        /* ── FAQ ── */
        .faq-section {
            padding: 90px 40px;
                background: #fe7f00;
        }

        .faq-inner {
            max-width: 77%;
            margin: 0 auto;
        }

        .faq-head {
            text-align: center;
            margin-bottom: 52px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            background: var(--white);
        }

        .faq-item:first-child {
            border-radius: 16px 16px 16px 16px;
            border-top: 1px solid var(--border);
        }

        .faq-item:last-child {
            border-radius: 0 0 16px 16px;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 24px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            cursor: pointer;
            text-align: left;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: #fff9f2;
        }

        .faq-question span {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.4;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fff4e6;
            border: 1.5px solid rgba(255, 127, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, transform 0.3s;
        }

        .faq-icon-bar {
            position: relative;
            width: 12px;
            height: 12px;
        }

        .faq-icon-bar::before,
        .faq-icon-bar::after {
            content: '';
            position: absolute;
            background: var(--orange);
            border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
        }

        .faq-icon-bar::before {
            width: 12px;
            height: 2px;
            top: 5px;
            left: 0;
        }

        .faq-icon-bar::after {
            width: 2px;
            height: 12px;
            top: 0;
            left: 5px;
        }

        .faq-item.open .faq-icon {
            background: #004949;
            border-color: #004949;
        }

        .faq-item.open .faq-icon-bar::before {
            background: #fff;
        }

        .faq-item.open .faq-icon-bar::after {
            background: #fff;
            transform: rotate(90deg);
            opacity: 0;
        }

        .faq-item.open .faq-question span {
            color: var(--orange);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding: 0 28px 24px;
            font-size: 15px;
            color: black;
            line-height: 1.75;
        }

        /* ── Responsive ── */
        @media (max-width: 640px) {
            .vm-grid {
                grid-template-columns: 1fr;
            }

            .vm-section,
            .faq-section {
                padding: 60px 20px;
            }
        }

          /* Font (Fingo-like) */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

        .contact-modern-section {
            background: #f4f5f7;
            padding: 80px 0;
            font-family: 'Inter', sans-serif;
        }

        /* Heading */
        .cm-title h2 {
            font-size: 48px;
            font-weight: 600;
            color: #1d1b3a;
            margin-bottom: 50px;
            letter-spacing: -0.5px;
        }

        /* Card */
        .cm-card {
            background: #fff;
            padding: 40px 25px;
            border-radius: 14px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        /* Hover effect */
        .cm-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        /* Title */
        .cm-card h5 {
            font-size: 22px;
            font-weight: 600;
            color: #1d1b3a;
            margin-bottom: 15px;
        }

        /* Text */
        .cm-card p {
            font-size: 16px;
            color: #5f6570;
            margin-bottom: 5px;
        }

         /* Section */
        .teamx2-section {
            padding: 90px 60px;
            background: #f8fafc;
        }

        /* Card Row */
        .teamx2-row {
            position: relative;
            display: flex;
            gap: 30px;
            align-items: flex-start;
            padding: 30px 30px 30px 45px;
            border-radius: 16px;
            background: #fff;
            border: 1px solid #eee;
            transition: all 0.35s ease;
            overflow: hidden;
        }

        /* 🔥 FIX: Prevent image shrinking */
        .teamx2-img {
            flex-shrink: 0;
        }

        .teamx2-img img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
        }

        /* Content */
        .teamx2-content {
            flex: 1;
        }

        .teamx2-content h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #111;
        }

        .teamx2-content h6 {
            font-size: 14px;
            color: #FF7F00;
            margin-bottom: 10px;
        }

        .teamx2-long {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* Divider */
        .teamx2-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #ddd, transparent);
            margin: 40px 0;
        }

        /* Left Accent */
        .teamx2-row::before {
            content: "";
            position: absolute;
            left: 0;
            top: 20px;
            height: 55%;
            width: 4px;
            background: #FF7F00;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        /* Glow Effect */
        .teamx2-row::after {
            content: "";
            position: absolute;
            inset: -2px;
            z-index: -1;
            background: radial-gradient(circle at 20% 50%, rgba(255, 127, 0, 0.25), transparent 60%);
            opacity: 0;
            transition: 0.4s;
            border-radius: 20px;
        }

        /* Hover */
        .teamx2-row:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            border-color: rgba(255, 127, 0, 0.2);
        }

        .teamx2-row:hover::after {
            opacity: 1;
        }

        .teamx2-row:hover::before {
            height: 80%;
        }

        /* Image hover */
        .teamx2-row:hover img {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 127, 0, 0.25);
        }

        /* 🔹 MOBILE FIX */
        @media (max-width: 768px) {

            .teamx2-section {
                padding: 60px 20px;
            }

            .teamx2-row {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 25px 15px;
                margin: 0 5px;
            }

            .teamx2-img {
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .teamx2-img img {
                margin-bottom: 15px;
            }

            .teamx2-row::before {
                display: none;
            }
        }

          /* ── Unique prefix: git__ (Get In Touch) ── */
 
  .git__section {
    padding: 70px 0 60px;
    background: #ffffff;
   
  }
 
  /* Head */
  .git__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 450;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ff7f00;
    margin-bottom: 12px;
  }
  .git__tag::before,
  .git__tag::after {
    content: '';
    width: 22px;
    height: 2px;
    background: #ff7f00;
    display: inline-block;
  }
 
  .git__title {

    font-size: clamp(28px, 3vw, 38px);
    font-weight: 450;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .git__title em {
    font-style: normal;
    color: #ff7f00;
  }
 
  .git__subtitle {
    font-size: 16px;
    color: #777;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
  }
 
  /* Cards */
  .git__card {
    background: #ffffff;
    border: 1.5px solid #eeeeee;
    border-radius: 20px;
    padding: 40px 28px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
 
  .git__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: #ff7f00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
 
  .git__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(255, 127, 0, 0.1);
    border-color: rgba(255, 127, 0, 0.25);
  }
  .git__card:hover::before {
    transform: scaleX(1);
  }
 
  /* Icon circle */
  .git__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #fff4e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 26px;
    line-height: 1;
    transition: background 0.3s;
  }
  .git__card:hover .git__icon-wrap {
    background: #ff7f00;
  }
  .git__card:hover .git__icon-wrap .git__icon-em {
    filter: brightness(10);
  }
 
  .git__icon-em {
    font-size: 26px;
    line-height: 1;
    transition: filter 0.3s;
  }
 
  /* Card label */
  .git__card-label {
    font-size: 11px;
    font-weight: 450;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff7f00;
    margin-bottom: 10px;
  }
 
  /* Card title */
  .git__card-title {
   
    font-size: 18px;
    font-weight: 450;
    color: #1a1a1a;
    margin-bottom: 12px;
  }
 
  /* Orange divider */
  .git__divider {
    width: 32px;
    height: 3px;
    background: #ff7f00;
    border-radius: 2px;
    margin: 0 auto 16px;
  }
 
  /* Card content lines */
  .git__card-body {
    font-size: 15px;
    color: #000000;
    line-height: 1.75;
  }
 
  .git__card-body a {
    color: #ff7f00;
    text-decoration: none;
    font-weight: 450;
    transition: color 0.2s;
  }
  .git__card-body a:hover {
    color: #cc6600;
    text-decoration: underline;
  }
 
  /* Status badge */
  .git__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff4e6;
    border: 1px solid rgba(255,127,0,.2);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 450;
    color: #cc6600;
    margin-top: 14px;
  }
  .git__status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff7f00;
    animation: git__pulse 1.8s ease-in-out infinite;
  }
  @keyframes git__pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.75); }
  }
 
  /* CTA row below cards */
  .git__cta-row {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #eeeeee;
    text-align: center;
  }
 
  .git__cta-row p {
    font-size: 16px;
    color: #888;
    margin-bottom: 20px;
  }
 
  .git__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff7f00;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 450;
   
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
  }
  .git__btn:hover {
    background: #e67300;
    color: #fff;
    transform: translateY(-2px);
  }
  .git__btn-arrow {
    font-size: 14px;
    transition: transform 0.2s;
  }
  .git__btn:hover .git__btn-arrow {
    transform: translateX(4px);
  }
 
  /* Responsive tweaks */
  @media (max-width: 767px) {
    .git__section { padding: 60px 0 70px; }
    .git__card { padding: 32px 22px 28px; }
    .git__subtitle { font-size: 15px; }
  }

    .stx__section {
    padding: 60px 40px;
    background: #ffffff;
    font-family: 'DM Sans', sans-serif;
  }
 
  .stx__head {
    text-align: center;
    margin-bottom: 40px;
  }
 
  .stx__headline {
    
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
  }
 
  .stx__headline em {
    font-style: normal;
    color: #ff7f00;
  }
 
  .stx__grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: 977px;
    margin: 0 auto;
  }
 
  .stx__card {
    background: #ffffff;
    border: 1.5px solid #eeeeee;
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
  }
 
  .stx__card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: #ff7f00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
 
  .stx__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(255, 127, 0, 0.1);
    border-color: rgba(255, 127, 0, 0.25);
  }
 
  .stx__card:hover::after {
    transform: scaleX(1);
  }
 
  .stx__num {
    
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
 
  .stx__plus {
    font-size: 0.4em;
    color: #ff7f00;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    margin-top: 7px;
  }
 
  .stx__bar {
    width: 28px;
    height: 3px;
    background: #ff7f00;
    border-radius: 2px;
    margin: 14px auto 12px;
  }
 
  .stx__label {
    font-size: 13px;
    color: #000000;
    font-weight: 520;
    letter-spacing: 0.3px;
  }
 
  @media (max-width: 560px) {
    .stx__section { padding: 50px 20px; }
    .stx__card { min-width: 140px; padding: 24px 20px; }
  }

  .srv-h21 {
    font-size: 34px;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title {
    position: relative;
    display: inline-block;
    font-size: 34px;
    font-weight: 450;
    margin-bottom: 16px;
 
    width: fit-content;  
}

.section-title::after {
    content: "";
    position: absolute;
    left: 10%;              /* 🔽 cut 10% from left */
    bottom: -10px;
    width: 80%;             /* 🔽 total width reduced */
    height: 3px;
    background: #ee702f;
    border-radius: 2px;
}
.section-title1 {
    position: relative;
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color:rgb(255, 255, 255);
   
    width: fit-content;  
}

.section-title1::after {
    content: "";
    position: absolute;
    left: 10%;              /* 🔽 cut 10% from left */
    bottom: -10px;
    width: 80%;             /* 🔽 total width reduced */
    height: 3px;
    background: #ee702f;
    border-radius: 2px;
}

 .vmc__section {
    padding: 80px 20px 25px;
    background: #ffffff;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
  }
 
  .vmc__head {
    text-align: center;
    margin-bottom: 60px;
  }
 
  .vmc__headline {
    
    font-size: clamp(28px, 3.5vw, 34px);
    font-weight: 450;
    color: #1a1a1a;
    line-height: 1.2;
  }
 
  .vmc__headline em {
    font-style: normal;
    color: #ff7f00;
  }
 
  /* ── Circles wrapper ── */
  .vmc__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
 
  /* Individual circle */
  .vmc__circle {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 64px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
  }
 
  .vmc__circle--vision {
    background: #2a3039;
    margin-right: -36px;
    z-index: 1;
  }
 
  .vmc__circle--mission {
    background: #ff7f00;
    margin-left: -36px;
    z-index: 1;
  }
 
  /* Overlap zone fade blend */
  .vmc__circle--vision::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    border-radius: 0 440px 440px 0;
    background: linear-gradient(to right, transparent 0%, rgba(255,127,0,0.12) 100%);
    pointer-events: none;
  }
 
  .vmc__circle--mission::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 50%; height: 100%;
    border-radius: 440px 0 0 440px;
    background: linear-gradient(to left, transparent 0%, rgba(26,26,26,0.12) 100%);
    pointer-events: none;
  }
 
  /* Heading above circle */
  .vmc__circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  .vmc__circle-title {
    
    font-size: 20px;
    font-weight: 450;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
 
  .vmc__circle-wrap--vision .vmc__circle-title { color: #1a1a1a; }
  .vmc__circle-wrap--mission .vmc__circle-title { color: #ff7f00; }
 
  .vmc__title-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
  }
 
  .vmc__circle-wrap--vision .vmc__title-dot { background: #1a1a1a; }
  .vmc__circle-wrap--mission .vmc__title-dot { background: #ff7f00; }
 
  /* Content inside circle */
  .vmc__tag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
 
  .vmc__circle--vision .vmc__tag { color: #ff7f00; }
  .vmc__circle--mission .vmc__tag { color: rgba(0,0,0,0.45); }
 
  .vmc__icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 14px;
  }
 
  .vmc__name {
    
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 450;
    line-height: 1.25;
    margin-bottom: 14px;
  }
 
  .vmc__circle--vision .vmc__name { color: #ffffff; }
  .vmc__circle--mission .vmc__name { color: #1a1a1a; }
 
  .vmc__line {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    margin: 0 auto 14px;
  }
 
  .vmc__circle--vision .vmc__line { background: #ff7f00; }
  .vmc__circle--mission .vmc__line { background: rgba(0,0,0,0.3); }
 
  .vmc__desc {
    font-size: 13px;
    line-height: 1.7;
  }
 
  .vmc__circle--vision .vmc__desc { color: rgba(255,255,255,0.6); }
  .vmc__circle--mission .vmc__desc { color: rgba(0,0,0,0.6); }
 
  /* ── RESPONSIVE: horizontal → vertical ── */
  @media (max-width: 680px) {
    .vmc__wrapper {
      flex-direction: column;
      align-items: center;
    }
 
    .vmc__circle {
      width: 300px;
      height: 300px;
      padding: 36px 38px;
      margin: 0 !important;
    }
 
    .vmc__circle--vision {
      margin-bottom: -80px !important;
      z-index: 2;
    }
 
    .vmc__circle--mission {
      margin-top: 0 !important;
      z-index: 1;
    }
 
    .vmc__circle--vision::after {
      top: auto;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 50%;
      border-radius: 0 0 300px 300px;
      background: linear-gradient(to bottom, transparent 0%, rgba(255,127,0,0.18) 100%);
    }
 
    .vmc__circle--mission::before {
      top: 0;
      left: 0;
      width: 100%;
      height: 50%;
      border-radius: 300px 300px 0 0;
      background: linear-gradient(to top, transparent 0%, rgba(26,26,26,0.18) 100%);
    }
 
    .vmc__name { font-size: 16px; }
    .vmc__desc { font-size: 12px; }
  }

  .back {
    background: linear-gradient(135deg, #222831, #2f3640);
  }


  .card-orange {
    background: #ffffff; /* your dark card */
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 4px;
    transition: 0.3s ease;
    position: relative;
}

/* 🔥 HOVER EFFECT */
.card-orange:hover {
    border-color: #ee702f; /* orange border */
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(238, 112, 47, 0.25);
}

.fpna-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.fpna-card i {
    font-size: 22px;
    color: #ff6b35;
    margin-bottom: 10px;
    display: inline-block;
}

.fpna-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.fpna-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.fpna-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: transparent;
}

.avx-stats-section{
position:relative;
padding:120px 20px;
background:
linear-gradient(145deg,#f8fafc,#eef2f7);
overflow:hidden;
font-family:-apple-system,BlinkMacSystemFont,
"SF Pro Display",sans-serif;
}

.avx-container{
max-width:1350px;
margin:auto;
position:relative;
z-index:5;
}

.avx-heading{
text-align:center;
max-width:800px;
margin:auto 0 55px;
margin-left:auto;
margin-right:auto;
}

.avx-tag{
display:inline-block;
padding:8px 18px;
background:rgba(255,255,255,.7);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.5);
border-radius:100px;
font-size:12px;
letter-spacing:2px;
font-weight:600;
color:#6b7280;
margin-bottom:22px;
}

.avx-heading h2{
font-size:45px;
font-weight:700;
line-height:1.1;
color:#111827;
margin-bottom:20px;
letter-spacing:-2px;
}

.avx-heading h2 span{
background:
linear-gradient(
135deg,
#2563eb,
#7c3aed,
#0ea5e9
);

-webkit-background-clip:text;
color:transparent;
}

.avx-heading p{
font-size:18px;
color:#6b7280;
line-height:1.8;
}

.avx-stats-grid{
display:grid;
grid-template-columns:
repeat(4,1fr);
gap:28px;
}

.avx-card{

position:relative;

padding:45px 25px;

border-radius:34px;

background:
rgba(255,255,255,.65);

backdrop-filter:
blur(25px);

border:
1px solid rgba(255,255,255,.8);

box-shadow:

0 12px 40px
rgba(0,0,0,.08),

inset 0 1px 0
rgba(255,255,255,.8);

overflow:hidden;

transition:
all .45s cubic-bezier(
0.175,
0.885,
0.32,
1.2);

opacity:0;
transform:
translateY(70px)
scale(.95);
}

.avx-card.show{
opacity:1;
transform:
translateY(0)
scale(1);
}

.avx-card:hover{

transform:
translateY(-12px)
rotateX(4deg);

box-shadow:

0 30px 70px
rgba(0,0,0,.12);
}

.avx-glow{

position:absolute;

width:180px;
height:180px;

    background: radial-gradient(circle, rgb(255 177 73 / 25%), transparent 70%);

top:-50px;
right:-50px;

transition:.5s;
}

.avx-card:hover .avx-glow{

transform:
scale(1.5);

opacity:.9;
}

.avx-number{

font-size:60px;

font-weight:700;

line-height:1.25;   /* ADD THIS */

padding-top:8px;    /* ADD THIS */
padding-bottom:8px; /* ADD THIS */

overflow:visible;   /* ADD THIS */

background:
linear-gradient(
135deg,
#0f172a,
#2563eb
);

-webkit-background-clip:text;
background-clip:text;

-webkit-text-fill-color:transparent;

letter-spacing:-2px;

display:flex;      /* ADD */
align-items:center;

}

.avx-line{

width:50px;
height:4px;

border-radius:20px;

    background: linear-gradient(90deg, #ff7f00, #010101);

margin:22px auto;
}

.avx-card p{

font-size:16px;

font-weight:500;

color:#4b5563;

margin:0;
}

.avx-bg-blur{

position:absolute;

border-radius:50%;

filter:blur(90px);

opacity:.25;
}

.avx-bg1{

width:320px;
height:320px;

background:#60a5fa;

top:-100px;
left:-120px;

animation:
avxFloat 8s infinite ease-in-out;
}

.avx-bg2{

width:280px;
height:280px;

background:#8b5cf6;

bottom:-100px;
right:-100px;

animation:
avxFloat 10s infinite ease-in-out;
}

@keyframes avxFloat{

0%,100%{
transform:
translateY(0px);
}

50%{
transform:
translateY(-35px);
}

}

@media(max-width:992px){

.avx-stats-grid{

grid-template-columns:
repeat(2,1fr);

}

.avx-heading h2{
font-size:42px;
}

}

@media(max-width:600px){

.avx-stats-grid{

grid-template-columns:1fr;

}

.avx-heading h2{

font-size:34px;

}

.avx-number{

font-size:48px;

}

}


.footer__cta{

padding:0px 0;

background:
linear-gradient(
180deg,
#f8fafc,
#edf2f7
);

overflow:hidden;

position:relative;
}

.footer__cta-area{

position:relative;

padding:70px 70px;

border-radius:36px;

overflow:hidden;

background:
rgba(255,255,255,.72);

backdrop-filter:
blur(24px);

border:
1px solid rgba(255,255,255,.8);

box-shadow:

0 15px 50px
rgba(0,0,0,.08),

inset 0 1px 0
rgba(255,255,255,.7);

transition:.4s;
}

.footer__cta-area:hover{

transform:
translateY(-6px);

box-shadow:

0 30px 70px
rgba(0,0,0,.12);
}

.footer-glow{

position:absolute;

border-radius:50%;

filter:blur(90px);

opacity:.25;

pointer-events:none;
}

.footer-glow1{

width:260px;
height:260px;

background:#e17720;

top:-80px;
left:-80px;

animation:
footerFloat 7s infinite ease-in-out;
}

.footer-glow2{

width:220px;
height:220px;

background:#06b6d4;

right:-60px;
bottom:-60px;

animation:
footerFloat 9s infinite ease-in-out;
}

.footer-tagline{

display:inline-block;

padding:8px 18px;

background:
rgba(79,70,229,.08);

border:
1px solid rgba(79,70,229,.15);

border-radius:50px;

font-size:12px;

font-weight:700;

letter-spacing:2px;

margin-bottom:22px;

color:#4f46e5;
}

.footer__cta-area-left h2{

font-size:32px;

line-height:1.15;

font-weight:700;

margin-bottom:18px;

letter-spacing:-1px;

color:#111827;
}

.footer__cta-area-left h2 span{

    background: linear-gradient(135deg, #e4741d, #b66b2f);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;
}

.footer__cta-area-left p{

font-size:17px;

line-height:1.8;

max-width:560px;

color:#64748b;

margin:0;
}

.premium-btn{

position:relative;

padding:18px 34px;

border-radius:60px;

background:
linear-gradient(
135deg,
#2563eb,
#7c3aed
);

border:none;

font-size:16px;

font-weight:600;

overflow:hidden;

transition:.35s;

box-shadow:

0 10px 35px
rgba(37,99,235,.35);
}

.premium-btn:hover{

transform:
translateY(-4px);

box-shadow:

0 20px 45px
rgba(37,99,235,.45);
}

.premium-btn i{

margin-left:10px;

transition:.3s;
}

.premium-btn:hover i{

transform:
translateX(6px);
}

@keyframes footerFloat{

0%,100%{

transform:
translateY(0);
}

50%{

transform:
translateY(-30px);
}

}

@media(max-width:991px){

.footer__cta-area{

padding:50px 35px;
}

.footer__cta-area-left h2{

font-size:38px;
}

}

@media(max-width:576px){

.footer__cta-area{

padding:40px 25px;
}

.footer__cta-area-left h2{

font-size:30px;
}

.footer__cta-area-left p{

font-size:15px;
}

.premium-btn{

width:100%;

justify-content:center;
}

}

.nx-blog-zone{

padding:60px 0;

background:

linear-gradient(
180deg,
#071220,
#091827
);

position:relative;

overflow:hidden;
}

.nx-ambient{

position:absolute;

border-radius:50%;

filter:blur(100px);

opacity:.18;
}

.nx-a1{

width:320px;
height:320px;

background:#3b82f6;

left:-100px;
top:60px;
}

.nx-a2{

width:280px;
height:280px;

background:#7c3aed;

right:-80px;
bottom:0;
}

.nx-blog-header{

max-width:760px;

margin:auto;

text-align:center;

margin-bottom:70px;
}

.nx-mini-tag{

display:inline-block;

padding:10px 18px;

border-radius:100px;

background:

rgba(255,255,255,.06);

border:

1px solid rgba(255,255,255,.12);

color:#7dd3fc;

font-size:12px;

letter-spacing:2px;

font-weight:700;

margin-bottom:25px;
}

.nx-blog-header h2{

font-size:40px;

font-weight:700;

line-height:1.1;

color:white;

margin-bottom:25px;
}

.nx-blog-header h2 span{

   background: linear-gradient(135deg, #dd7828, #e88b45);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;
}

.nx-blog-header p{

color:#9ca3af;

font-size:18px;

line-height:1.8;
}

.nx-blog-grid{

display:grid;

grid-template-columns:

repeat(3,1fr);

gap:30px;
}

.nx-blog-card{

background:

rgba(255,255,255,.05);

border:

1px solid rgba(255,255,255,.08);

border-radius:32px;

overflow:hidden;

backdrop-filter:

blur(20px);

transition:.45s;

position:relative;
}

.nx-blog-card:hover{

transform:

translateY(-12px);

box-shadow:

0 30px 60px
rgba(0,0,0,.35);
}

.nx-blog-card:before{

content:"";

position:absolute;

top:0;
left:-100%;

width:100%;
height:2px;

background:

linear-gradient(
90deg,
transparent,
#60a5fa,
#8b5cf6,
transparent
);

transition:.6s;
}

.nx-blog-card:hover:before{

left:100%;
}

.nx-image-wrap{

position:relative;

overflow:hidden;
}

.nx-image-wrap img{

width:100%;

height:260px;

object-fit:cover;

transition:.6s;
}

.nx-blog-card:hover img{

transform:scale(1.08);
}

.nx-badge{

position:absolute;

top:18px;
left:18px;

padding:8px 14px;

border-radius:50px;

background:

rgba(255,255,255,.9);

font-size:12px;

font-weight:700;

color:#111827;
}

.nx-blog-content{
background-color: #004949;
padding:30px;
}

.nx-blog-content h3{

font-size: 17px;
    line-height: 1.5;
    color: white;
    margin-bottom: 25px;
    font-weight: 500;
}

.nx-read{

color:#e4741e;

font-weight:600;

text-decoration:none;

display:inline-flex;

align-items:center;

gap:10px;

transition:.3s;
}

.nx-read:hover{

color:white;
}

.nx-read i{

transition:.3s;
}

.nx-read:hover i{

transform:translateX(6px);
}

.nx-btn-wrap{

text-align:center;

margin-top:60px;
}

.nx-view-btn{

display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 36px;
    border-radius: 13px;
    background: linear-gradient(135deg, #eb722e, #6e1e08);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: .4s;

.nx-view-btn:hover{

transform:

translateY(-4px);

box-shadow:

0 20px 45px
rgba(59,130,246,.35);
}

@media(max-width:991px){

.nx-blog-grid{

grid-template-columns:1fr;
}

.nx-blog-header h2{

font-size:42px;
}

}

@media(max-width:576px){

.nx-blog-header h2{

font-size:32px;
}

.nx-blog-content h3{

font-size:21px;
}

}