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

.hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg,#f8fbff 0%,#eef5ff 100%);
}

/*=====================================
 BACKGROUND BLOBS
=====================================*/

.hero-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    z-index:0;
}

.blob{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.45;
    animation:float 10s ease-in-out infinite;
}

.blob-1{
    width:420px;
    height:420px;
    background:#4F8BFF;
    top:-120px;
    left:-120px;
}

.blob-2{
    width:380px;
    height:380px;
    background:#6F6BFF;
    right:-80px;
    top:120px;
    animation-delay:2s;
}

.blob-3{
    width:320px;
    height:320px;
    background:#00C2FF;
    bottom:-100px;
    left:35%;
    animation-delay:4s;
}

/*=====================================
 CONTAINER
=====================================*/

.hero-container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:120px 8%;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

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

.hero-content{
    animation:fadeUp 1s ease;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#eaf2ff;
    color:#0A3D91;
    padding:10px 20px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:30px;
}

.hero h1{
    font-size:68px;
    line-height:1.15;
    font-weight:800;
    color:#1b1b1b;
    margin-bottom:25px;
}

.hero h1 span{
    color:#0A3D91;
}

.hero p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    max-width:650px;
    margin-bottom:40px;
}

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

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:60px;
}

.btn-primary{
    background:#0A3D91;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    transition:.35s;
    box-shadow:0 15px 30px rgba(10,61,145,.25);
}

.btn-primary:hover{
    transform:translateY(-5px);
    background:#082d6b;
}

.btn-secondary{
    padding:16px 34px;
    border-radius:50px;
    border:2px solid #0A3D91;
    color:#0A3D91;
    font-weight:600;
    transition:.35s;
}

.btn-secondary:hover{
    background:#0A3D91;
    color:#fff;
}

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

.hero-stats{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.stat h2{
    color:#0A3D91;
    font-size:42px;
    margin-bottom:8px;
}

.stat span{
    color:#666;
    font-size:15px;
}

/*=====================================
 GLASS CARD
=====================================*/

.hero-image{
    display:flex;
    justify-content:center;
    animation:fadeRight 1s ease;
}

.glass-card{
    width:100%;
    max-width:420px;
    background:rgba(255,255,255,.72);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.6);
    border-radius:30px;
    padding:45px;
    box-shadow:0 25px 50px rgba(0,0,0,.12);
    transition:.4s;
}

.glass-card:hover{
    transform:translateY(-12px);
}

.icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#0A3D91;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
    margin-bottom:25px;
}

.glass-card h3{
    font-size:30px;
    margin-bottom:15px;
    color:#0A3D91;
}

.glass-card p{
    margin-bottom:25px;
    color:#555;
}

.glass-card ul{
    list-style:none;
}

.glass-card li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 0;
    color:#555;
}

.glass-card li i{
    color:#0A3D91;
}

/*=====================================
 SCROLL INDICATOR
=====================================*/

.scroll-down{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    color:#0A3D91;
    font-weight:600;
    animation:bounce 2s infinite;
}

.scroll-down i{
    font-size:22px;
}

/*=====================================
 ANIMATIONS
=====================================*/

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-30px);
    }

}

@keyframes bounce{

    0%,100%{
        transform:translate(-50%,0);
    }

    50%{
        transform:translate(-50%,12px);
    }

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes fadeRight{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

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

@media(max-width:992px){

    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content p{
        margin:auto auto 40px;
    }

    .hero-buttons,
    .hero-stats{
        justify-content:center;
    }

    .hero-image{
        margin-top:30px;
    }

}

@media(max-width:768px){

    .hero{
        min-height:auto;
        padding-top:100px;
    }

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

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

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-stats{
        gap:25px;
        justify-content:center;
    }

    .glass-card{
        padding:30px;
    }

    .scroll-down{
        display:none;
    }

}