/* =========================
   HERO SECTION
========================= */

.hero-section{
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: #fff;
}


/* BACKGROUND IMAGE */

.hero-bg-image{
    position: absolute;
    inset: 0;
    background:
    url('../assets/images/hero-banner.jpg')
    center center/cover no-repeat;

    transform: scale(1.02);
    will-change: transform;
}


/* DARK OVERLAY */

.hero-overlay{
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
    90deg,
    rgba(20,20,20,.92) 0%,
    rgba(20,20,20,.75) 45%,
    rgba(20,20,20,.55) 100%
    );
}


/* CONTENT */

.hero-content{
    position: relative;
    z-index: 5;
}


/* BADGE */

.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}


/* HEADING */

.hero-content h1{
    font-size: 50px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: #fff;
}

.hero-content h1 span{
    color: #E53935;
}


/* DESCRIPTION */

.hero-content p{
    font-size: 21px;
    line-height: 1.9;
    color: rgba(255,255,255,.82);
    max-width: 620px;
    margin-bottom: 45px;
}


/* BUTTONS */

.hero-buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 55px;
}


/* BUTTON */

.hero-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    transition: .35s ease;
    text-decoration: none;
}


/* PRIMARY */

.hero-primary-btn{
    background: #E53935;
    color: #fff;
    box-shadow: 0 15px 35px rgba(229,57,53,.35);
}

.hero-primary-btn:hover{
    background: #ff4f4b;
    transform: translateY(-5px);
    color: #fff;
}


/* OUTLINE */

.hero-outline-btn{
    border: 2px solid rgba(255,255,255,.22);
    color: #fff;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
}

.hero-outline-btn:hover{
    background: #fff;
    color: #111;
    transform: translateY(-5px);
}


/* STATS */

.hero-stats{
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat h3{
    font-size: 40px;
    font-weight: 900;
    color: #E53935;
    margin-bottom: 5px;
}

.hero-stat span{
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}


/* IMAGE */

.hero-image-wrapper{
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-image{
    width: 100%;
    max-width: 650px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 35px 80px rgba(0,0,0,.45);
    animation: floatImage 4s ease-in-out infinite;
}


/* FLOAT */

@keyframes floatImage{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0);
    }

}


/* =========================
   LARGE DESKTOP
========================= */

@media (min-width:1600px){

    .hero-content h1{
        font-size: 72px;
    }

    .hero-content p{
        font-size: 22px;
        max-width: 700px;
    }

    .hero-image{
        max-width: 750px;
    }
}


/* =========================
   DESKTOP
========================= */

@media (max-width:1400px){

    .hero-content h1{
        font-size: 58px;
    }
}


/* =========================
   LAPTOP
========================= */

@media (max-width:1199px){

    .hero-content h1{
        font-size: 48px;
    }

    .hero-content p{
        font-size: 19px;
    }

    .hero-image{
        max-width: 550px;
    }

    .hero-stats{
        gap: 30px;
    }
}


/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .hero-section{
        min-height: auto;
        text-align: center;
        padding: 120px 0 80px;
    }

    .hero-content{
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-badge{
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1{
        font-size: 42px;
        line-height: 1.15;
    }

    .hero-content p{
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 35px;
    }

    .hero-buttons{
        justify-content: center;
        margin-bottom: 40px;
    }

    .hero-stats{
        justify-content: center;
        gap: 30px;
    }

    .hero-image-wrapper{
        margin-top: 40px;
    }

    .hero-image{
        max-width: 500px;
        margin: auto;
    }
}


/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .hero-section{
        padding: 100px 0 70px;
    }

    .hero-badge{
        font-size: 11px;
        padding: 10px 18px;
        margin-bottom: 20px;
    }

    .hero-content h1{
        font-size: 32px;
        line-height: 1.25;
    }

    .hero-content p{
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .hero-buttons{
        gap: 12px;
        margin-bottom: 30px;
    }

    .hero-btn{
        width: 100%;
        justify-content: center;
        padding: 15px 22px;
        font-size: 15px;
    }

    .hero-stat{
        min-width: 120px;
    }

    .hero-stat h3{
        font-size: 28px;
    }

    .hero-stat span{
        font-size: 11px;
    }

    .hero-image{
        max-width: 100%;
        border-radius: 18px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:575px){

    .hero-section{
        padding: 90px 0 60px;
    }

    .hero-content h1{
        font-size: 26px;
    }

    .hero-content p{
        font-size: 15px;
    }

    .hero-badge{
        font-size: 10px;
        padding: 8px 14px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-stat h3{
        font-size: 24px;
    }

    .hero-stat span{
        font-size: 10px;
    }

    .hero-stats{
        gap: 16px;
    }

    .hero-btn{
        font-size: 14px;
        padding: 14px 18px;
    }

    .hero-image{
        border-radius: 14px;
    }
}


/* =========================
   EXTRA SMALL DEVICES
========================= */

@media(max-width:380px){

    .hero-section{
        padding: 80px 0 50px;
    }

    .hero-content h1{
        font-size: 22px;
        line-height: 1.35;
    }

    .hero-content p{
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-badge{
        font-size: 9px;
        padding: 7px 12px;
    }

    .hero-stat{
        width: 100%;
        text-align: center;
    }

    .hero-stats{
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn{
        font-size: 13px;
    }
}