hero.css/*==========================================================
 HERO SECTION
assets/css/hero.css
==========================================================*/

.hero{

    position:relative;

    overflow:hidden;

    padding:90px 0 80px;

    background:
    linear-gradient(
    180deg,
    #FFFFFF 0%,
    #FCFCFD 100%
    );

}

/*-----------------------------
Background Shapes
-----------------------------*/

.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:.18;

    pointer-events:none;

}

.hero-shape-1{

    width:420px;

    height:420px;

    background:#7F3F73;

    top:-180px;

    right:-100px;

}

.hero-shape-2{

    width:320px;

    height:320px;

    background:#B77C90;

    bottom:-150px;

    left:-100px;

}

/*-----------------------------
Grid
-----------------------------*/

.hero-grid{

    display:grid;

    grid-template-columns:

    1fr 1fr;

    align-items:center;

    gap:70px;

}

/*-----------------------------
Content
-----------------------------*/

.hero-content{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:999px;

    background:#F8F4F7;

    color:#7F3F73;

    font-size:14px;

    font-weight:600;

    margin-bottom:30px;

    box-shadow:

    0 8px 20px rgba(127,63,115,.08);

}

.hero h1{

    font-family:'Playfair Display',serif;

    font-size:74px;

    line-height:1.08;

    color:#1B1B1B;

    margin-bottom:28px;

    letter-spacing:-1px;

}

.hero p{

    max-width:620px;

    color:#666;

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

}

/*-----------------------------
Buttons
-----------------------------*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:45px;

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:999px;

    border:1px solid #DDD;

    background:#FFF;

    color:#1B1B1B;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.secondary-btn:hover{

    border-color:#7F3F73;

    color:#7F3F73;

    transform:translateY(-3px);

}

/*-----------------------------
Review
-----------------------------*/

.hero-review{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:40px;

}

.stars{

    color:#FFB400;

    font-size:22px;

}

.hero-review strong{

    display:block;

    font-size:17px;

    margin-bottom:4px;

}

.hero-review span{

    color:#777;

    font-size:14px;

}

/*-----------------------------
Stats
-----------------------------*/

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.stat-card{

    background:#FFF;

    border-radius:22px;

    padding:28px 18px;

    text-align:center;

    box-shadow:

    0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 25px 55px rgba(0,0,0,.08);

}

.stat-card h3{

    font-size:34px;

    color:#7F3F73;

    margin-bottom:8px;

}

.stat-card p{

    margin:0;

    font-size:14px;

    line-height:1.5;

    color:#666;

}

/*-----------------------------
Image
-----------------------------*/

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    border-radius:38px;

    display:block;

    box-shadow:

    0 40px 90px rgba(0,0,0,.12);

}

/*-----------------------------
Floating Cards
-----------------------------*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:16px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    padding:18px 22px;

    border-radius:18px;

    box-shadow:

    0 20px 60px rgba(0,0,0,.10);

    animation:float 4s ease-in-out infinite;

}

.floating-card i{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F8F2F7;

    color:#7F3F73;

    font-size:22px;

}

.floating-card h4{

    font-size:17px;

    margin-bottom:4px;

    color:#1B1B1B;

}

.floating-card span{

    font-size:14px;

    color:#666;

}

/* Card Positions */

.card-1{

    top:60px;

    left:-55px;

}

.card-2{

    right:-40px;

    top:42%;

}

.card-3{

    bottom:35px;

    left:40px;

}

/*-----------------------------
Trust Strip
-----------------------------*/

.trust-strip{

    padding:45px 0;

    background:#FFF;

    border-top:1px solid #EFEFEF;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.trust-grid div{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    background:#FCFCFD;

    padding:24px;

    border-radius:18px;

    transition:.35s;

}

.trust-grid div:hover{

    transform:translateY(-6px);

    box-shadow:

    0 18px 40px rgba(0,0,0,.06);

}

.trust-grid i{

    font-size:26px;

    color:#7F3F73;

}

.trust-grid span{

    font-weight:600;

    color:#333;

}

/*-----------------------------
Animation
-----------------------------*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}