/* ==========================================
   HERO SECTION
========================================== */

.hero-section{
    width:100%;
    min-height:85vh;
    display:flex;
    align-items:center;
    padding:80px 0;
    background:#f8faf9;
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* Left */

.hero-left{
    flex:1;
    min-width:320px;
}

.hero-badge{

    display:inline-block;
    background:#e8f7ef;
    color:#00A651;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-title{

    font-size:54px;

    line-height:1.2;

    font-weight:700;

    color:#222;

    margin-bottom:25px;

}

.hero-description{

    font-size:18px;

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* Right */

.hero-right{

    flex:1;

    min-width:320px;

    display:flex;

    justify-content:center;

}

.hero-image{

    width:100%;

    max-width:550px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/* =====================================
Responsive
===================================== */

@media(max-width:992px){

.hero-content{

    flex-direction:column;

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.hero-title{

    font-size:42px;

}

}

@media(max-width:768px){

.hero-section{

    padding:60px 0;

}

.hero-title{

    font-size:34px;

}

.hero-description{

    font-size:16px;

}

}

@media(max-width:480px){

.hero-title{

    font-size:28px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons .btn{

    width:100%;

    text-align:center;

}

}

/* ===========================
   HERO SLIDER
=========================== */

.hero-slider{

    position:relative;

    width:100%;

    max-width:550px;

    height:420px;

}

.hero-slider .hero-image{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:20px;

    opacity:0;

    transition:opacity .8s ease;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.hero-slider .hero-image.active{

    opacity:1;

}

/* ==========================================
   PREMIUM HERO BACKGROUND
========================================== */

.hero{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#f7fff9 0%,#ffffff 55%,#eefaf3 100%);

}

.hero::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(0,166,81,.08);

    top:-120px;

    left:-120px;

}

.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(0,166,81,.05);

    right:-180px;

    bottom:-180px;

}

.hero-content{

    position:relative;

    z-index:2;

}

/* ==========================================
   HERO ANIMATIONS
========================================== */

.hero-badge,
.hero h1,
.hero p,
.hero-buttons{

    opacity:0;

    transform:translateY(30px);

    animation:fadeUp .8s ease forwards;

}

.hero h1{

    animation-delay:.2s;

}

.hero p{

    animation-delay:.4s;

}

.hero-buttons{

    animation-delay:.6s;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ==========================
   BUTTON EFFECT
========================== */

.hero-buttons .btn{

    transition:all .3s ease;

}

.hero-buttons .btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,166,81,.25);

}

/* ==========================================
   PREMIUM HERO IMAGE
========================================== */

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-slider{

    position:relative;

    max-width:560px;

    width:100%;

    border-radius:24px;

    overflow:hidden;

    background:#ffffff;

    padding:12px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    animation:floatImage 5s ease-in-out infinite;

}

.hero-slider .hero-image{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:18px;

    transition:transform .6s ease;

}

.hero-slider:hover .hero-image.active{

    transform:scale(1.05);

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}