:root{

--primary:#123C7A;

--accent:#F5B400;

--text:#1f2937;

--bg:#FAFBFC;

}

.hero-section{

min-height:100vh;
padding:140px 0 90px;

position:relative;

display:flex;

align-items:center;

background:url("../images/custom/hero.jpg") center/cover no-repeat;

overflow:hidden;

}

.hero-overlay{

position:absolute;

inset:0;

background:linear-gradient(
90deg,
rgba(10,30,70,.82),
rgba(10,30,70,.55),
rgba(10,30,70,.25)
);

}

.hero-content{

    position:relative;
    z-index:5;

    display:flex;
    flex-direction:column;
    justify-content:center;

    height:100%;
}

.hero-section h1{

    font-size:72px;

    line-height:1.05;

    letter-spacing:-2px;

}

.hero-section p{

    max-width:620px;

    margin-top:25px;

    color:rgba(255,255,255,.92);

}

.hero-section h1{
    color:#fff;
}

.hero-section p{
    color:rgba(255,255,255,.9);
}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.2);

    backdrop-filter:blur(10px);

    padding:10px 22px;

    border-radius:999px;

    color:#fff;

    font-weight:600;

    letter-spacing:.4px;

}
/* =====================================================
   PREMIUM HEADER
===================================================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:all .35s ease;
}

.custom-navbar{
    background:transparent;
    padding:20px 0;
    transition:all .35s ease;
}

.site-header.scrolled .custom-navbar{
    background:#ffffff;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    padding:12px 0;
}
.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.hero-btn-primary{

    background:#F5B400;

    color:#123C7A;

    border-radius:999px;

    padding:16px 34px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(245,180,0,.35);

}

.hero-btn-secondary{

    padding:16px 34px;

    border-radius:999px;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;

    color:#123C7A;

}

.hero-btn-primary,
.hero-btn-secondary{

    padding:18px 38px;

}

.hero-section .container{

    position:relative;

    z-index:5;

}

.hero-buttons{
    margin:40px 0;
    display:flex;
    gap:18px;
}

/* =========================================
   HERO STAT CARDS
========================================= */

.hero-stats{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    width:90%;

    max-width:1200px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    z-index:5;

}

.stat-card{

    width:170px;

    padding:22px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(14px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    transition:.35s ease;
}

@media(max-width:992px){

.hero-section h1{

font-size:54px;

}

.hero-section p{

font-size:18px;

}

}

@media(max-width:768px){

    .hero-stats{

        grid-template-columns:repeat(2,1fr);

        width:95%;

        gap:15px;

        bottom:20px;

    }

    .stat-card{

        width:100%;

    }
}