:root{
            --blue:#3AACE2;
            --blue-dark:#2090c8;
            --gold:#F5C518;
            --gold-dark:#d4a90e;
            --dark:#1a1a2e;
            --text:#222;
            --mid:#666;
            --light:#f5f5f5;
            --border:#e8e8e8;
        }

        *{
            margin:0;
            padding:0;
            box-sizing:border-box;
        }

        body{
            font-family:'Poppins',sans-serif;
            overflow-x:hidden;
            color:var(--text);
        }

        a{
            text-decoration:none;
        }

        /* =========================
           NAVBAR
        ========================= */

        .custom-navbar{
            background:#fff;
            padding:14px 0;
            box-shadow:0 2px 10px rgba(0,0,0,0.08);
        }

        .navbar-brand img{
            height:65px;
        }

        .navbar-nav .nav-link{
            color:var(--text);
            font-size:15px;
            font-weight:500;
            margin-left:20px;
            transition:0.3s;
        }

        .navbar-nav .nav-link:hover{
            color:var(--blue);
        }

        .nav-btn{
            background:var(--blue);
            color:#fff !important;
            padding:10px 22px !important;
            border-radius:4px;
        }

        .nav-btn:hover{
            background:var(--blue-dark);
        }
        
        .dropdown-menu{
            border:none;
            border-radius:8px;
            padding:10px 0;
            box-shadow:0 10px 30px rgba(0,0,0,0.1);
            margin-top:12px;
        }
        
        .dropdown-item{
            font-size:14px;
            padding:5px 15px;
            transition:0.3s;
        }
        
        .dropdown-item:hover{
            background:#f5f8ff;
            color:var(--blue);
        }
        
        .navbar .dropdown-toggle::after{
            margin-left:6px;
            vertical-align:middle;
        }
        
        @media(min-width:992px){
        
            .navbar .dropdown:hover .dropdown-menu{
                display:block;
                opacity:1;
                visibility:visible;
            }
        
            .dropdown-menu{
                display:block;
                opacity:0;
                visibility:hidden;
                transition:all .3s ease;
            }
        }

        /* =========================
           HERO SECTION
        ========================= */

        .hero-section{
            padding:130px 0 90px;
            background:#fff;
        }

        .hero-badge{
            background:var(--light);
            display:inline-flex;
            align-items:center;
            gap:10px;
            padding:10px 20px;
            margin-bottom:25px;
        }

        .hero-dot{
            width:8px;
            height:8px;
            border-radius:50%;
            background:#000;
        }

        .hero-badge span{
            font-size:12px;
            font-weight:600;
            letter-spacing:1px;
            color:#000;
            text-transform:uppercase;
        }

        .hero-title{
            font-size:64px;
            font-weight:700;
            line-height:1.15;
            margin-bottom:25px;
        }

        .hero-title .blue{
            color:var(--blue);
        }

        .hero-title .gold{
            color:var(--gold-dark);
        }

        .hero-desc{
            font-size:16px;
            color:var(--mid);
            line-height:1.9;
            margin-bottom:35px;
        }

        .hero-btns .btn{
            padding:14px 30px;
            font-size:14px;
            font-weight:600;
            border-radius:4px;
            text-transform:uppercase;
            letter-spacing:1px;
        }

        .btn-blue{
            background:var(--blue);
            color:#fff;
        }

        .btn-blue:hover{
            background:var(--blue-dark);
            color:#fff;
        }

        .btn-outline-custom{
            border:2px solid var(--blue);
            color:var(--blue);
        }

        .btn-outline-custom:hover{
            background:var(--blue);
            color:#fff;
        }

        /* =========================
           STAT BOX
        ========================= */
        
        .stats-wrapper{
    max-width:600px;
    margin:auto;
}

.stat-box{
    display:flex;
    align-items:center;
    gap:30px;

    background:#fff;
    border:1px solid var(--border);
    border-left:4px solid var(--blue);

    padding:24px 30px;
    margin-bottom:20px;

    transition:all .3s ease;
}

.stat-box:hover{
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transform:translateY(-2px);
}

.gold-border{
    border-left-color:var(--gold);
}

.stat-number{
    min-width:110px;
    font-size:56px;
    font-weight:700;
    line-height:1;
    color:var(--blue);
}

.gold-border .stat-number{
    color:var(--gold-dark);
}

.stat-content{
    flex:1;
}

.stat-title{
    font-size:18px;
    font-weight:700;
    color:var(--text);
    margin-bottom:8px;
}

.stat-desc{
    font-size:14px;
    color:var(--mid);
    line-height:1.6;
}

@media(max-width:767px){

    .stats-wrapper{
        max-width:100%;
    }

    .stat-box{
        gap:15px;
        padding:18px;
    }

    .stat-number{
        min-width:75px;
        font-size:36px;
    }

    .stat-title{
        font-size:15px;
    }

    .stat-desc{
        font-size:12px;
    }
}

        /*.stat-box{*/
        /*    background:#fff;*/
        /*    border:1px solid var(--border);*/
        /*    border-left:4px solid var(--blue);*/
        /*    padding:25px;*/
        /*    margin-bottom:20px;*/
        /*    transition:0.3s;*/
        /*}*/

        /*.stat-box:hover{*/
        /*    box-shadow:0 5px 20px rgba(58,172,226,0.12);*/
        /*}*/

        /*.gold-border{*/
        /*    border-left-color:var(--gold);*/
        /*}*/

        /*.stat-number{*/
        /*    font-size:42px;*/
        /*    font-weight:700;*/
        /*    color:var(--blue);*/
        /*    margin-bottom:10px;*/
        /*}*/

        /*.gold-border .stat-number{*/
        /*    color:var(--gold-dark);*/
        /*}*/

        /*.stat-title{*/
        /*    font-size:18px;*/
        /*    font-weight:600;*/
        /*    margin-bottom:5px;*/
        /*}*/

        /*.stat-desc{*/
        /*    font-size:14px;*/
        /*    color:var(--mid);*/
        /*}*/

        /* =========================
           MARQUEE
        ========================= */

        .marquee-section{
            background:var(--gold);
            padding:14px 0;
            overflow:hidden;
        }

        .marquee-track{
            display:flex;
            gap:50px;
            white-space:nowrap;
            animation:marquee 25s linear infinite;
        }

        .marquee-item{
            font-size:13px;
            font-weight:600;
            text-transform:uppercase;
        }

        @keyframes marquee{

            0%{
                transform:translateX(0);
            }

            100%{
                transform:translateX(-50%);
            }

        }

        /* =========================
           SECTION COMMON
        ========================= */

        .section-padding{
            padding:90px 0;
        }

        .section-title{
            margin-bottom:60px;
        }

        .section-title h2{
            font-size:48px;
            font-weight:700;
            line-height:1.2;
        }

        .section-title h2 span{
            color:var(--blue);
        }

        .section-title p{
            font-size:16px;
            color:var(--mid);
            margin-top:20px;
            line-height:1.8;
        }

         /* =========================
ROOT COLORS
========================= */

:root{
    --blue:#3AACE2;
    --text:#111827;
    --mid:#6b7280;
    --light:#f8fafc;
    --border:#e5e7eb;
}

/* =========================
SERVICES SECTION
========================= */

.services-section{
    padding:100px 0;
    background:#ffffff;
}

/* =========================
SECTION TOP
========================= */

.section-top{
    margin-bottom:70px;
}

.section-label{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--blue);
    margin-bottom:20px;
}

.label-line{
    width:55px;
    height:2px;
    background:var(--blue);
}

.section-heading{
    font-size:58px;
    font-weight:700;
    line-height:1.1;
    color:var(--text);
    margin-bottom:0;
}

.section-heading em{
    color:var(--blue);
    font-style:normal;
}

.section-subtext{
    font-size:15px;
    line-height:1.9;
    color:var(--mid);
    margin-bottom:0;
}

/* =========================
SERVICE CARD
========================= */

.service-card{
    background:#fff;
    border:1px solid var(--border);
    padding:35px;
    position:relative;
    overflow:hidden;
    height:100%;
    transition:all 0.3s ease;
}

.service-card::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:0;
    background:var(--blue);
    transition:height 0.3s ease;
}

.service-card:hover{
    background:#f0f8fd;
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.service-card:hover::after{
    height:4px;
}

/* =========================
SERVICE NUMBER
========================= */

.service-number{
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    color:#d1d5db;
    margin-bottom:18px;
}

/* =========================
SERVICE ICON
========================= */

.service-icon{
    width:50px;
    height:50px;
    border-radius:10px;
    background:var(--light);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    transition:0.3s ease;
}

.service-card:hover .service-icon{
    background:rgba(58,172,226,0.12);
}

.service-icon svg{
    width:22px;
    height:22px;
    stroke:var(--blue);
    stroke-width:1.8;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
}

/* =========================
SERVICE TITLE
========================= */

.service-title{
    font-size:22px;
    font-weight:600;
    line-height:1.4;
    color:var(--text);
    margin-bottom:14px;
}

/* =========================
SERVICE DESCRIPTION
========================= */

.service-desc{
    font-size:14px;
    line-height:1.9;
    color:var(--mid);
    margin-bottom:0;
}

/* =========================
COMING SOON CARD
========================= */

.coming-soon-card{
    background:#f0f8fd;
    border:1px dashed var(--blue);
}

.blue-text{
    color:var(--blue);
}

.blue-icon{
    background:rgba(58,172,226,0.15);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .section-top{
        margin-bottom:30px;
    }

    .section-heading{
        font-size:25px;
        margin-bottom:20px;
    }
    
    .hero-stats{
        margin-bottom:20px;
    }
    
    .img-stack-sub{
        right: 0px !important;
    }

}

@media(max-width:767px){

    .services-section{
        padding:70px 0;
    }

    .section-heading{
        font-size:32px;
    }

    .service-card{
        padding:28px;
    }

    .service-title{
        font-size:20px;
    }
     

}

         :root{
    --blue:#3AACE2;
    --gold:#F5C518;
    --gold-dark:#d4a90e;
    --text:#111827;
    --mid:#6b7280;
    --border:#e5e7eb;
}

/* =========================
SECTION
========================= */

.why-section{
    padding:100px 0;
    background:#fafafa;
}

/* =========================
HEADING
========================= */

.section-label{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--blue);
    margin-bottom:20px;
}

.label-line{
    width:55px;
    height:2px;
    background:var(--blue);
}

.section-heading{
    font-size:58px;
    font-weight:700;
    line-height:1.1;
    color:var(--text);
    margin-bottom:35px;
}

.section-heading em{
    color:var(--blue);
    font-style:normal;
}

/* =========================
PILLARS
========================= */

.why-pillars{
    border-top:1px solid var(--border);
}

.pillar-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:25px 0;
    border-bottom:1px solid var(--border);
}

.pillar-num{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--blue);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    flex-shrink:0;
}

.gold-num{
    background:var(--gold);
    color:#111;
}

.pillar-content h4{
    font-size:20px;
    font-weight:600;
    color:var(--text);
    margin-bottom:8px;
}

.pillar-content p{
    font-size:14px;
    line-height:1.8;
    color:var(--mid);
    margin-bottom:0;
}

/* =========================
QUOTE BOX
========================= */

.quote-box{
    background:#fffdf0;
    border-left:4px solid var(--gold);
    padding:30px;
    margin-bottom:30px;
}

.quote-text{
    font-size:22px;
    font-style:italic;
    font-weight:500;
    line-height:1.7;
    color:var(--text);
    margin-bottom:15px;
}

.quote-author{
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--mid);
}

/* =========================
STATS
========================= */

.stat-box{
    background:#fff;
    padding:30px;
    transition:0.3s ease;
    border-bottom:2px solid transparent;
    height:100%;
}

.stat-box:hover{
    border-bottom-color:var(--blue);
}

.stat-number{
    font-size:42px;
    font-weight:700;
    line-height:1;
    color:var(--blue);
    margin-bottom:10px;
}

.gold-text{
    /*color:var(--gold-dark);*/
    color: #ecb700;
}

.stat-label{
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--mid);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .section-heading{
        font-size:42px;
    }

}

@media(max-width:767px){

    .why-section{
        padding:70px 0;
    }

    .section-heading{
        font-size:32px;
    }

    .quote-text{
        font-size:18px;
    }

    .pillar-item{
        gap:15px;
    }

    .stat-box{
        padding:10px;
    }

    .stat-number{
        font-size:25px;
    }

}

:root{
    --blue:#3AACE2;
    --gold:#F5C518;
    --text:#111827;
    --mid:#6b7280;
    --border:#e5e7eb;
}

/* =========================
SECTION
========================= */

.impact-section{
    padding:100px 0;
    background:#fff;
}

/* =========================
HEADER
========================= */

.impact-header{
    margin-bottom:60px;
}

.section-label{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--blue);
    margin-bottom:20px;
}

.label-line{
    width:55px;
    height:2px;
    background:var(--blue);
}

.section-heading{
    font-size:58px;
    font-weight:700;
    line-height:1.1;
    color:var(--text);
    margin-bottom:0;
}

.section-heading em{
    color:var(--blue);
    font-style:normal;
}

.impact-sub{
    font-size:15px;
    line-height:1.9;
    color:var(--mid);
    margin-bottom:0;
}

/* =========================
CARD
========================= */

.impact-card{
    position:relative;
    padding:45px 35px;
    border:1px solid var(--border);
    overflow:hidden;
    height:100%;
    transition:0.3s ease;
    background:#fff;
}

.impact-card:hover{
    box-shadow:0 8px 32px rgba(0,0,0,0.08);
    transform:translateY(-5px);
}

/* =========================
FEATURED CARD
========================= */

.featured-card{
    background:var(--blue);
    border-color:var(--blue);
}

.featured-card .impact-number{
    color:#fff;
}

.featured-card .impact-title{
    color:rgba(255,255,255,0.7);
}

.featured-card .impact-desc{
    color:rgba(255,255,255,0.8);
}

.featured-card .impact-accent{
    background:rgba(255,255,255,0.35);
}

/* =========================
ACCENT LINE
========================= */

.impact-accent{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:var(--gold);
}

/* =========================
NUMBER
========================= */

.impact-number{
    font-size:64px;
    font-weight:700;
    line-height:1;
    color:var(--blue);
    margin-bottom:15px;
}

.impact-number span{
    font-size:34px;
}

/* =========================
TITLE
========================= */

.impact-title{
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--mid);
    margin-bottom:12px;
}

/* =========================
DESCRIPTION
========================= */

.impact-desc{
    font-size:14px;
    line-height:1.8;
    color:var(--mid);
    font-style:italic;
    margin-bottom:0;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .section-heading{
        font-size:42px;
    }

    .impact-header{
        margin-bottom:50px;
    }

}

@media(max-width:767px){

    .impact-section{
        padding:70px 0;
    }

    .section-heading{
        font-size:32px;
    }

    .impact-card{
        padding:35px 25px;
    }

    .impact-number{
        font-size:48px;
    }

    .impact-number span{
        font-size:26px;
    }

}

:root{
    --blue:#3AACE2;
    --text:#111827;
    --mid:#6b7280;
    --light:#f8fafc;
    --border:#e5e7eb;
}

/* =========================
SECTION
========================= */

.founder-section{
    padding:100px 0;
    background:#fafafa;
}

/* =========================
HEADING
========================= */

.section-label{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--blue);
    margin-bottom:20px;
}

.label-line{
    width:55px;
    height:2px;
    background:var(--blue);
}

.section-heading{
    font-size:58px;
    font-weight:700;
    line-height:1.15;
    color:var(--text);
    margin-bottom:50px;
}

.section-heading em{
    color:var(--blue);
    font-style:normal;
}

.small-label{
    margin-bottom:0;
}

/* =========================
WRAPPER
========================= */

.founder-wrapper{
    border:1px solid var(--border);
    background:#fff;
    overflow:hidden;
}

/* =========================
LEFT SIDE
========================= */

.founder-photo-col{
    background:var(--light);
    height:100%;
    padding:40px 30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.founder-photo-box{
    margin-bottom:25px;
}

.founder-name-plate{
    text-align:center;
}

.founder-name{
    font-size:24px;
    font-weight:700;
    color:var(--text);
    margin-bottom:6px;
}

.founder-title{
    font-size:11px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--blue);
}

/* =========================
RIGHT SIDE
========================= */

.founder-info-col{
    padding:50px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.founder-bio{
    font-size:15px;
    line-height:1.9;
    color:var(--mid);
    margin-top:25px;
    margin-bottom:35px;
}

/* =========================
TABLE
========================= */

.founder-table{
    border-top:1px solid var(--border);
}

.founder-table tr{
    border-bottom:1px solid var(--border);
}

.founder-table td{
    padding:18px 10px;
    vertical-align:top;
    background:none;
}

.cred-type{
    width:140px;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#b0b0b0;
}

.cred-val{
    font-size:15px;
    line-height:1.7;
    color:var(--text);
}

.cred-val span{
    display:block;
    margin-top:5px;
    font-size:13px;
    color:var(--mid);
}

:root{
    --blue:#3AACE2;
    --text:#111827;
    --mid:#6b7280;
    --border:#e5e7eb;
}

/* =========================
SECTION
========================= */

.careers-section{
    padding:100px 0;
    background:#fff;
}

/* =========================
HEADINGS
========================= */

.section-label{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--blue);
    margin-bottom:20px;
}

.label-line{
    width:55px;
    height:2px;
    background:var(--blue);
}

.section-heading{
    font-size:45px;
    font-weight:700;
    line-height:1.15;
    color:var(--text);
    margin-bottom:30px;
}

.section-heading em{
    color:var(--blue);
    font-style:normal;
}

.careers-desc{
    font-size:15px;
    line-height:1.9;
    color:var(--mid);
    margin-bottom:0;
}

/* =========================
CULTURE PILLS
========================= */

.culture-pills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:40px 0 50px;
}

.culture-pill{
    padding:10px 18px;
    border:1px solid var(--border);
    font-size:11px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--mid);
    background:#fff;
    transition:0.3s ease;
}

.culture-pill:hover{
    border-color:var(--blue);
    color:var(--blue);
    background:rgba(58,172,226,0.05);
}

/* =========================
JOB CARDS
========================= */

.job-card{
    background:#fff;
    padding:30px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:0.3s ease;
    border:1px solid var(--border);
    display:flex;
    flex-direction:column;
}

.job-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:0;
    background:var(--blue);
    transition:0.3s ease;
}

.job-card:hover{
    background:#f0f8fd;
}

.job-card:hover::before{
    height:4px;
}

.job-badge{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:11px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--blue);
    margin-bottom:15px;
}

.job-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--blue);
}

.job-title{
    font-size:24px;
    font-weight:600;
    color:var(--text);
    margin-bottom:15px;
}

.job-desc{
    font-size:14px;
    line-height:1.8;
    color:var(--mid);
    margin-bottom:25px;
}

.job-link{
    margin-top:auto;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--blue);
    width:fit-content;
    border-bottom:1px solid transparent;
    transition:0.3s ease;
}

.job-link:hover{
    border-color:var(--blue);
}

/* =========================
OPEN CARD
========================= */

.open-job-card{
    background:rgba(58,172,226,0.04);
    border:1px dashed var(--blue);
}

.gray-badge{
    color:var(--mid);
}

.blue-text{
    color:var(--blue);
}

/* =========================
WHY JOIN
========================= */

.why-join-row{
    border:1px solid var(--border);
    margin-top:10px;
}

.why-item{
    padding:30px;
    border-right:1px solid var(--border);
    height:100%;
}

.why-icon{
    width:42px;
    height:42px;
    border-radius:10px;
    background:rgba(58,172,226,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.why-icon svg{
    width:20px;
    height:20px;
    stroke:var(--blue);
    stroke-width:1.8;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.why-title{
    font-size:18px;
    font-weight:600;
    color:var(--text);
    margin-bottom:10px;
}

.why-desc{
    font-size:14px;
    line-height:1.7;
    color:var(--mid);
    margin-bottom:0;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .section-heading{
        font-size:42px;
    }

    .why-item{
        border-bottom:1px solid var(--border);
    }

}

@media(max-width:767px){

    .careers-section{
        padding:70px 0;
    }

    .section-heading{
        font-size:32px;
    }

    .job-card{
        padding:25px;
    }

    .why-item{
        border-right:none;
    }

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .section-heading{
        font-size:42px;
    }

    .founder-info-col{
        padding:35px;
    }

}

@media(max-width:767px){

    .founder-section{
        padding:70px 0;
    }

    .section-heading{
        font-size:32px;
    }

    .founder-info-col{
        padding:25px;
    }

    .cred-type{
        width:100px;
        font-size:10px;
    }

    .cred-val{
        font-size:14px;
    }

}

         :root{
    --blue:#3AACE2;
    --gold:#F5C518;
    --dark:#0f172a;
    --text:#111827;
    --mid:#94a3b8;
}

/* =========================
SECTION
========================= */

.cta-contact-section{
    overflow:hidden;
}

/* =========================
LEFT SIDE
========================= */

.cta-box{
    background:#fff;
    padding:100px 80px;
    height:100%;
    overflow:hidden;
    z-index:1;
}

/* Shapes */

.cta-shape-one{
    position:absolute;
    bottom:-30px;
    right:-20px;
    width:220px;
    height:220px;
    background:rgba(255,255,255,0.08);
    clip-path:polygon(0 0,80% 0,100% 100%,20% 100%);
}

.cta-shape-two{
    position:absolute;
    bottom:30px;
    right:50px;
    width:120px;
    height:120px;
    background:var(--gold);
    opacity:0.15;
    clip-path:polygon(0 0,80% 0,100% 100%,20% 100%);
}

/* Logo */

.brand-logo{
    display:inline-block;
    margin-bottom:40px;
}

.brand-logo img{
    max-width:100px;
    width:100%;
}

/* Heading */

.cta-heading{
    font-size:64px;
    font-weight:700;
    line-height:1.1;
    color:#000;
    margin-bottom:25px;
}

/* Text */

.cta-text{
    font-size:15px;
    line-height:1.9;
    color:#000;
    max-width:500px;
    margin-bottom:40px;
}

/* Buttons */

.cta-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.btn-white-custom{
    display:inline-block;
    background: #0f172a;
    color:#fff;
    text-decoration:none;
    padding:14px 32px;
    border:2px solid #fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:0.3s ease;
}

.btn-white-custom:hover{
    background: var(--blue);
    color:#fff;
}

/*.btn-outline-custom{*/
/*    display:inline-block;*/
/*    background:transparent;*/
/*    color:#fff;*/
/*    text-decoration:none;*/
/*    padding:14px 32px;*/
/*    border:2px solid rgba(255,255,255,0.5);*/
/*    font-size:12px;*/
/*    font-weight:700;*/
/*    letter-spacing:1px;*/
/*    text-transform:uppercase;*/
/*    transition:0.3s ease;*/
/*}*/

/*.btn-outline-custom:hover{*/
/*    border-color:#fff;*/
/*    color:#fff;*/
/*}*/

/* =========================
RIGHT SIDE
========================= */

.contact-box{
    background:var(--dark);
    padding:100px 80px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Label */

.contact-label{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:35px;
}

.contact-line{
    width:22px;
    height:2px;
    background:var(--gold);
}

/* Contact Item */

.contact-item{
    display:grid;
    grid-template-columns:100px 1fr;
    gap:20px;
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.contact-item:first-of-type{
    border-top:1px solid rgba(255,255,255,0.08);
}

/* Type */

.contact-type{
    font-size:11px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:rgba(255,255,255,0.3);
}

/* Value */

.contact-value{
    font-size:15px;
    text-decoration:none;
    color:rgba(255,255,255,0.75);
    transition:0.3s ease;
    word-break:break-word;
}

.contact-value:hover{
    color:var(--gold);
}

/* Footer */

.contact-footer-text{
    margin-top:40px;
    font-size:13px;
    line-height:1.9;
    color:rgba(255,255,255,0.3);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1199px){

    .cta-box,
    .contact-box{
        padding:80px 50px;
    }

}

@media(max-width:991px){

    .cta-heading{
        font-size:48px;
    }
    .hero-btns{
        margin-bottom:30px;
    }
}

@media(max-width:767px){

    .cta-box,
    .contact-box{
        padding:60px 25px;
    }

    .cta-heading{
        font-size:36px;
    }

    .contact-item{
        grid-template-columns:1fr;
        gap:8px;
    }

    .brand-logo img{
        max-width:180px;
    }

}

        :root{
    --blue:#3AACE2;
    --gold:#F5C518;
    --gold-dark:#caa10d;
    --text:#111827;
}

/* =========================
FOOTER
========================= */

.footer-section{
    background:var(--gold);
    position:relative;
    overflow:hidden;
}

/* =========================
SHAPES
========================= */

.footer-blue-shape{
    position:absolute;
    top:0;
    right:0;
    width:240px;
    height:100%;
    background:#fff;
    clip-path:polygon(22% 0,100% 0,100% 100%,0% 100%);
    z-index:1;
}

.footer-gold-shape{
    position:absolute;
    top:0;
    right:90px;
    width:110px;
    height:100%;
    /*background:var(--gold-dark);*/
    opacity:0.4;
    clip-path:polygon(22% 0,100% 0,100% 100%,0% 100%);
    z-index:2;
}

/* =========================
WRAPPER
========================= */

.footer-wrapper{
    position:relative;
    z-index:5;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    padding:25px 60px 20px;
}

/* =========================
SOCIALS
========================= */

.footer-socials{
    display:flex;
    align-items:flex-end;
    gap:45px;
    flex-wrap:wrap;
}

.footer-social-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

/* =========================
ICON
========================= */

.social-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
}

.social-icon svg{
    width:18px;
    height:18px;
    fill:#fff;
}

/* =========================
LABEL
========================= */

.social-label{
    font-size:11px;
    font-weight:600;
    letter-spacing:0.5px;
    color:var(--text);
    text-align:center;
}

/* =========================
LOGO
========================= */

.footer-logo-area{
    display:flex;
    align-items:flex-end;
}

.footer-logo img{
    max-width:100px;
    width:100%;
}

/* =========================
RESPONSIVE
========================= */

 @media(max-width:991px){

    .footer-wrapper{
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 35px 25px;
        text-align: left;
    }

    .footer-socials{
        justify-content: flex-start;
        gap: 25px;
    }

    .footer-blue-shape{
        width: 160px;
    }

    .footer-gold-shape{
        width: 80px;
        right: 60px;
    }
    .footer-social-item {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        gap: 0px;
    }
    
    .footer-socials{
        align-items: flex-start;
    }
    
    .hero-title{
        font-size: 35px;
    }
}

@media(max-width:767px){

    .footer-socials{
        flex-direction:column;
        gap:20px;
    }

    .footer-logo img{
        max-width:160px;
    }

}

 .scroll-toggle-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#3AACE2;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    z-index:999;
    transition:0.3s ease;
    animation:floatBtn 2s infinite ease-in-out;
}

.scroll-toggle-btn:hover{
    background:#111827;
    transform:translateY(-4px);
}

.scroll-toggle-btn svg{
    width:24px;
    height:24px;
    stroke:#fff;
    stroke-width:2.5;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition:0.3s ease;
}

@keyframes floatBtn{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Mobile */

@media(max-width:767px){

    .scroll-toggle-btn{
        width:48px;
        height:48px;
        right:15px;
        bottom:15px;
    }

}

     

    /* ── HERO STRIP ── */
    .team-hero {
      background: linear-gradient(120deg, var(--ef-dark) 0%, #112136 60%, #0a2a45 100%);
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .team-hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(58,172,226,0.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .team-hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-label {
      display: inline-block;
      background: rgba(58,172,226,0.15);
      color: var(--ef-blue);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 18px;
      border-radius: 50px;
      border: 1px solid rgba(58,172,226,0.3);
      margin-bottom: 16px;
      margin-top: 50px;
    }
    .team-hero h1 {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      position: relative;
      z-index: 1;
    }
    .team-hero h1 span { color: var(--ef-gold); }
    .team-hero p {
      color: rgba(255,255,255,0.58);
      font-size: 0.97rem;
      max-width: 500px;
      margin: 14px auto 0;
      position: relative;
      z-index: 1;
    }

    /* ── TABS ── */
    .team-tabs-wrap {
      background: #fff;
      border-bottom: 2px solid #e8f4fb;
    }
    .nav-tabs.ef-tabs {
      border-bottom: none;
      gap: 4px;
      flex-wrap: nowrap;
      overflow-x: auto;
    }
    .nav-tabs.ef-tabs::-webkit-scrollbar { display: none; }
    .nav-tabs.ef-tabs .nav-link {
      font-family: 'Poppins', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--ef-muted);
      background: none;
      border: none;
      border-bottom: 3px solid transparent;
      border-radius: 0;
      padding: 16px 28px;
      white-space: nowrap;
      transition: color 0.2s, border-color 0.2s;
    }
    .nav-tabs.ef-tabs .nav-link:hover {
      color: var(--ef-blue);
      border-bottom-color: rgba(58,172,226,0.3);
    }
    .nav-tabs.ef-tabs .nav-link.active {
      color: var(--ef-blue);
      background: none;
      border-bottom: 3px solid var(--ef-blue);
    }
    .city-dot {
      display: inline-block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--ef-gold);
      margin-right: 6px;
      vertical-align: middle;
    }

    /* ── SECTION HEADER ── */
    .section-title {
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--ef-text);
    }
    .section-title span { color: var(--ef-blue); }
    .count-badge {
      background-color: var(--ef-blue);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 50px;
    }

    /* ── CARD ── */
    .team-card {
      background: #fff;
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 30px rgba(58,172,226,0.09);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeUp 0.45s ease both;
    }
    .team-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 48px rgba(58,172,226,0.18);
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .card-photo {
      width: 100%;
      aspect-ratio: 1 / 1;
      background: linear-gradient(135deg, #d6eef9 0%, #e8f7ff 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .card-photo img {
      width: 100%;
      height: 100%;
      object-position: top;
      /*object-fit: cover;*/
    }
    .card-initials {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--ef-blue);
      opacity: 0.45;
      letter-spacing: -1px;
    }
    .city-tag {
      position: absolute;
      top: 10px; right: 10px;
      background: var(--ef-gold);
      color: var(--ef-dark);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 50px;
    }
    .card-body { padding: 16px 18px 20px; }
    .card-name {
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--ef-text);
      margin-bottom: 3px;
    }
    .card-role {
      font-size: 0.76rem;
      color: var(--ef-muted);
      font-weight: 500;
      margin-bottom: 10px;
    }
    .card-divider {
      height: 2px;
      width: 34px;
      background: linear-gradient(90deg, var(--ef-blue), var(--ef-gold));
      border-radius: 2px;
      margin-bottom: 10px;
    }
    .card-school {
      font-size: 0.73rem;
      color: var(--ef-blue);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 5px;
    }
 
 
 .achievements-section{
    padding:100px 0;
    background:#fff;
}

 
.achievement-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.achievement-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.achievement-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(58,172,226,.2);
}

.achievement-img{
    height:260px;
    overflow:hidden;
}

.achievement-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.achievement-card:hover .achievement-img img{
    transform:scale(1.08);
}

.achievement-icon{
    width:75px;
    height:75px;
    background:linear-gradient(135deg,#3AACE2,#0077ff);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    border:5px solid #fff;

    position:absolute;
    left:50%;
    top:225px;
    transform:translateX(-50%);
}

.achievement-content{
    padding:60px 30px 35px;
    text-align:center;
}

.achievement-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:#071c35;
}

.achievement-content p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

.achievement-content h3::after{
    content:'';
    width:60px;
    height:3px;
    background:#F5C518;
    display:block;
    margin:15px auto 0;
}

@media(max-width:991px){

    .achievement-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .achievement-wrapper{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:30px;
    }
}
 .underline {
    font-size: 20px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-style: italic;
    color: #3aace2;
}
    /* ── SECTION COMMONS ── */
    
    .section-inner { max-width: 1100px; margin: 0 auto; }
    /*.section-label {*/
    /*  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;*/
    /*  text-transform: uppercase; color: var(--blue);*/
    /*  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;*/
    /*}*/
    /*.section-label::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--blue); }*/
    /*.section-title {*/
    /*  font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800;*/
    /*  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 1rem;*/
    /*}*/
    /*.section-title em { font-style: italic; color: var(--gold); }*/
    /*.section-lead { color: var(--muted); font-size: 1rem; max-width: 620px; line-height: 1.75; }*/
    /*.divider { height: 1px; background: var(--border); max-width: 1100px; margin: 0 auto; }*/

    /* ── ABOUT STORY ── */
    .story-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center; margin-top: 3.5rem;
    }
    .story-images { position: relative; }
    .img-stack-main {
      width: 100%; border-radius: 8px; overflow: hidden;
      border: 1px solid var(--border);
    }
    .img-stack-main img { width: 100%; display: block; filter: brightness(0.88) saturate(1.1); }
    .img-stack-sub {
      position: absolute; bottom: -30px; right: -20px;
      width: 52%; border-radius: 6px; overflow: hidden;
      border: 3px solid var(--navy); box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    }
    .img-stack-sub img { width: 100%; display: block; filter: brightness(0.88) saturate(1.1); }
    .story-content { }
    .story-content p {
      color: var(--muted); font-size: 0.97rem; line-height: 1.85;
      margin-bottom: 1.2rem; text-align: justify;
    }
    .story-content p strong { color: var(--white); }
    .story-quote {
      border-left: 3px solid var(--gold);
      padding: 1rem 1.5rem; margin: 2rem 0;
      background: rgba(245,197,24,0.04);
      border-radius: 0 6px 6px 0;
    }
    .story-quote p { color: var(--white); font-style: italic; font-size: 1.05rem; margin-bottom: 0; }

    /* ── VISION MISSION ── */
    .vm-section { padding:70px 0; }
    .vm-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2px; margin-top: 3.5rem; border-radius: 8px; overflow: hidden;
      border: 1px solid var(--border);
    }
    .vm-card {
      background: var(--navy-card); padding: 3rem;
      position: relative;
    }
    .vm-card:first-child {
        border: 1px solid var(--border);
        background: #fff;
    }
    .vm-icon {
      width: 48px; height: 48px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem; font-size: 1.4rem;
    }
    .vm-icon.blue { background: rgba(58,172,226,0.12); color: var(--blue); }
    .vm-icon.gold { background: rgba(245,197,24,0.1); color: var(--gold); }
    .vm-card h3 {
      font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem;
      letter-spacing: -0.01em;
    }
    .vm-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }
    .vm-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
    .vm-accent.blue { background: var(--blue); }
    .vm-accent.gold { background: var(--gold); }

     

    /* ── IMPACT NUMBERS ── */
    /*.impact-section { background: var(--navy-mid);padding-bottom: 100px; padding-top: 0; }*/
    .impact-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; border-radius: 8px; overflow: hidden;
      border: 1px solid var(--border); margin-top: 3.5rem;
    }
    .impact-item {
      background: var(--navy-card); padding: 2.5rem 2rem; text-align: center;
      border: 1px solid var(--border);
    }
     
    .impact-num {
      font-size: 2.8rem; font-weight: 800; line-height: 1;
      letter-spacing: -0.04em; margin-bottom: 0.4rem;
    }
    .impact-num.blue { color: var(--blue); }
    .impact-num.gold { color: var(--gold); }
    .impact-item p { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }

    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, #0d1828 0%, #0b1525 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      text-align: center; padding: 90px 5%;
    }
    .cta-section .section-inner { max-width: 680px; }
    .cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; color:#fff;}
    .cta-section h2 em { color: var(--gold); font-style: italic; }
    .cta-section p { color: #fff; margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.75; }
    .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold); color: var(--navy); font-weight: 700;
      font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 0.85rem 2rem; border-radius: 3px; text-decoration: none;
      transition: opacity 0.2s; display: inline-block;
    }
    .btn-primary:hover { opacity: 0.85; }
    .btn-outline {
      border: 1px solid rgba(58,172,226,0.5); color: var(--blue);
      font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em;
      text-transform: uppercase; padding: 0.85rem 2rem; border-radius: 3px;
      text-decoration: none; transition: border-color 0.2s, color 0.2s; display: inline-block;
    }
    .btn-outline:hover {border-color: #3aace2; color: #3aace2; }


    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-inner, .story-grid, .vm-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .diff-grid { grid-template-columns: repeat(2, 1fr); }
      .impact-grid { grid-template-columns: repeat(2, 1fr); }
      .impact-item:nth-child(2) { border-right: none; }
      .impact-item:nth-child(3) { border-right: 1px solid var(--border); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      nav ul { display: none; }
    }
    @media (max-width: 560px) {
      .diff-grid { grid-template-columns: 1fr; }
      .impact-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      .vm-card:first-child { border-right: none; border-bottom: 1px solid var(--border); }
    }
    .gallery{
        padding-bottom: 70px;
    }
    /* ==========gallery============ */
.demo-gallery {
    padding: 15px 0px;
}

.demo-gallery h4 {
    font-size: 15px;
    font-weight: bold;
}

.demo-gallery span {
    display: block;
}

.demo-gallery>ul {
    padding: 0;
    margin: 0;
}

.demo-gallery>ul>li {
    width: 33%;
    display: inline-block;
    list-style: none;
}

.demo-gallery>ul>li a {
    border: 3px solid #fff;
    border-radius: 3px;
    display: block;
    overflow: hidden;
    position: relative;
    /*height: 135px;*/
    /* Set a fixed height */
}

.demo-gallery>ul>li a>img {
    -webkit-transition: -webkit-transform .15s;
    -moz-transition: -moz-transform .15s;
    -o-transition: -o-transform .15s;
    transition: transform .15s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* Ensure the image covers the container */
}

.demo-gallery>ul>li a:hover>img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery>ul>li a .demo-gallery-poster {
    background-color: rgba(0, 0, 0, .1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color .15s;
    -o-transition: background-color .15s;
    transition: background-color .15s;
}

.demo-gallery>ul>li a .demo-gallery-poster>img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

.demo-gallery>ul>li a:hover .demo-gallery-poster {
    background-color: rgba(0, 0, 0, .5);
}

.demo-gallery>ul>li a:hover .demo-gallery-poster>img {
    opacity: 1;
}

.demo-gallery.dark>ul>li a {
    border: 3px solid #04070a;
}

@media (max-width:991px){
    .demo-gallery > ul > li{
        width:33.333%;
    }
}

/* Mobile */
@media (max-width:767px){
    .demo-gallery > ul > li{
        width:49%;
    }
}

/* ── CERTIFICATE CARD ── */
.cert-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
    height: 100%;
}

.cert-card:hover {
    border-color: rgba(245, 197, 24, 0.35);
    transform: translateY(-5px);
}

.cert-img-wrap {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.cert-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88) saturate(1.1);
    transition: transform 0.45s ease;
    display: block;
}

.cert-card:hover .cert-img-wrap img {
    transform: scale(1.05);
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-view-btn {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 3px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.cert-view-btn:hover {
    opacity: 0.85;
    color: var(--navy);
}

.cert-gold-bar {
    height: 3px;
    background: var(--gold);
}

.cert-body {
    padding: 1.6rem 1.8rem 2rem;
}

.cert-issuer {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.cert-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.cert-desc {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── TRUST / MEMBERSHIPS ── */
.cert-trust-section {
    background: var(--navy-mid);
    padding-bottom: 90px;
}
