/*==========================================================
HERO
==========================================================*/

.hero-section{

    padding:120px 0 70px;

    background:#f8fbff;

    overflow:hidden;

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    background:#eaf2ff;

    color:#2563eb;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-title{

    font-size:62px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

    color:#111827;

}

.hero-title span{

    color:#2563eb;

}

.hero-description{

    font-size:18px;

    color:#6b7280;

    line-height:1.9;

    margin-bottom:35px;

}

/* Search */

.hero-search{

    display:flex;

    background:#fff;

    border-radius:60px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    margin-bottom:35px;

}

.hero-search input{

    flex:1;

    border:none;

    padding:18px 25px;

    outline:none;

}

.hero-search button{

    width:70px;

    border:none;

    background:#2563eb;

    color:#fff;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

/* Stats */

.hero-stats{

    display:flex;

    gap:40px;

}

.hero-stats h3{

    color:#2563eb;

    font-size:34px;

    margin-bottom:5px;

}

.hero-stats span{

    color:#666;

}

/* Image */

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:620px;

    animation:float 5s infinite ease-in-out;

}

@keyframes float{

    50%{

        transform:translateY(-15px);

    }

}

/* Tablet */

@media(max-width:992px){

.hero-section{

text-align:center;

padding:130px 0 80px;

}

.hero-title{

font-size:46px;

}

.hero-search{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.hero-image{

margin-top:50px;

}

}

/* Mobile */

@media(max-width:576px){

.hero-title{

font-size:34px;

}

.hero-description{

font-size:16px;

}

.hero-search{

flex-direction:column;

border-radius:18px;

}

.hero-search button{

width:100%;

height:55px;

}

.hero-buttons .btn{

width:100%;

}

.hero-stats{

flex-direction:column;

gap:20px;

}

}