/* ===============================
   HERO SECTION
================================ */

.hero-section{

    position:relative;

    min-height:100vh;

    background:linear-gradient(135deg,#07152d 0%,#0d3c8f 60%,#2563eb 100%);

    overflow:hidden;

    display:flex;

    align-items:center;

    color:#fff;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,rgba(255,255,255,.08),transparent 30%),
        radial-gradient(circle at bottom left,rgba(56,189,248,.12),transparent 35%);
}

.hero-container{

    position:relative;

    z-index:2;

    max-width:1320px;

    margin:auto;

    padding:120px 20px 60px;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    margin-bottom:25px;

    font-weight:600;

}

.hero-badge i{

    color:#38bdf8;

}

.hero-left h1{

    font-size:62px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:#7dd3fc;

}

.hero-left p{

    font-size:18px;

    color:#dbeafe;

    line-height:1.8;

    max-width:650px;

    margin-bottom:35px;

}

.hero-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:35px;

}

.hero-highlights div{

    padding:14px 18px;

    background:rgba(255,255,255,.08);

    border-radius:12px;

    border:1px solid rgba(255,255,255,.08);

}

.hero-highlights i{

    color:#38bdf8;

    margin-right:8px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:45px;

}

.btn-primary{

    background:#fff;

    color:#0b3a86;

    padding:16px 34px;

    border-radius:12px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    padding:16px 34px;

    border-radius:12px;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.08);

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.stat-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.1);

    border-radius:16px;

    backdrop-filter:blur(12px);

    text-align:center;

    padding:24px 15px;

}

.stat-card h2{

    color:#7dd3fc;

    font-size:32px;

    margin-bottom:10px;

}

.stat-card p{

    margin:0;

    font-size:14px;

}

.hero-right{

    text-align:center;

}

.hero-right img{

    width:100%;

    max-width:560px;

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%,100%{transform:translateY(0);}

    50%{transform:translateY(-15px);}

}

@media(max-width:992px){

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero-left p{

margin:auto auto 35px;

}

.hero-highlights{

justify-content:center;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

margin-top:20px;

}

.hero-left h1{

font-size:44px;

}

}

@media(max-width:576px){

.hero-left h1{

font-size:34px;

}

.hero-stats{

grid-template-columns:1fr;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,.btn-secondary{

width:100%;

text-align:center;

}

}