/* ==================================================
   Premium Hero
================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(rgba(11,18,32,.72),rgba(11,18,32,.78)),
        url("../images/hero-bg.jpg") center center/cover no-repeat;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(15,76,129,.45),
        transparent 65%
    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:650px;

}

.hero-subtitle{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    color:#fff;

    backdrop-filter:blur(10px);

    margin-bottom:25px;

    font-weight:600;

}

.hero-title{

    font-size:clamp(3rem,6vw,5rem);

    font-weight:800;

    color:#fff;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-description{

    color:rgba(255,255,255,.82);

    font-size:1.15rem;

    margin-bottom:40px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.hero-stat{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:20px;

    padding:20px;

    text-align:center;

}

.hero-stat h2{

    color:#fff;

    margin-bottom:8px;

    font-size:2rem;

}

.hero-stat p{

    color:rgba(255,255,255,.75);

    margin:0;

    font-size:.9rem;

}

.hero-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:28px;

    padding:40px;

    color:#fff;

    box-shadow:0 30px 80px rgba(0,0,0,.25);

}

.hero-card h4{

    color:#fff;

    margin-bottom:10px;

}

.hero-card p{

    color:rgba(255,255,255,.75);

}

.hero-card .form-control{

    height:56px;

    border-radius:14px;

    border:none;

}

.hero-card .btn{

    height:56px;

    border-radius:14px;

    font-weight:600;

}

@media(max-width:992px){

.hero{

padding:50px 0 80px;

min-height:auto;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

margin-bottom:40px;

}

.hero-card{

margin-top:30px;

}

}

@media(max-width:576px){

.hero-stats{

grid-template-columns:1fr;

}

.hero-title{

font-size:2.8rem;

}

}