/* ======================================================
   SEAN B SOLUTIONS
   PREMIUM HERO SECTION
   /assets/css/home/hero.css
====================================================== */


/* ======================================================
   HERO MAIN
====================================================== */


.hero{

    position:relative;

    min-height:850px;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:80px 0 70px;

    background:
    linear-gradient(
    135deg,
    #0b1f3a 0%,
    #122d52 55%,
    #ffffff 55%
    );

}


.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:
    rgba(230,0,0,.12);

    border-radius:50%;

    top:-150px;

    right:-150px;

}






.hero-content{

    width:50%;

    position:relative;

    z-index:2;

    padding-left:40px;

}



/* ======================================================
   HERO TAG
====================================================== */


.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    border-radius:30px;

    background:
    rgba(255,255,255,.12);

    border:
    1px solid rgba(255,255,255,.25);

    color:white;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}







/* ======================================================
   HERO TITLE
====================================================== */


.hero h1{

    font-size:

    clamp(38px,5vw,68px);

    line-height:1.08;

    font-weight:800;

    color:white;

    margin-bottom:25px;

    letter-spacing:-1px;

}



.hero h1 span{

    color:#e60000;

}





/* ======================================================
   HERO DESCRIPTION
====================================================== */


.hero p{

    max-width:620px;

    color:
    rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}





/* ======================================================
   BUTTONS
====================================================== */


.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}



.hero-buttons .btn{

    min-width:190px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:30px;

    font-weight:600;

}





.btn-primary{

    background:#e60000;

    color:white;

}



.btn-primary:hover{

    background:#b80000;

    transform:translateY(-3px);

}



.btn-secondary{

    background:white;

    color:#0b1f3a;

}





/* ======================================================
   HERO STATS
====================================================== */


.hero-stats{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}



.hero-stat{

    display:flex;

    flex-direction:column;

    min-width:120px;

}



.hero-stat strong{

    font-size:35px;

    color:white;

    line-height:1;

}



.hero-stat span{

    color:
    rgba(255,255,255,.75);

    margin-top:8px;

    font-size:14px;

}





/* ======================================================
   HERO RIGHT COLUMN
====================================================== */

.hero-image{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    width:48%;

    margin-left:auto;

}



/* ======================================================
   HERO VIDEO
====================================================== */

.hero-image-box{

    position:relative;

    width:100%;

    max-width:680px;

    height:720px;

    overflow:hidden;

    border-radius:28px;

    background:#0b1f3a;

    box-shadow:
        0 30px 70px rgba(11,31,58,.18);

}



.hero-video{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .6s ease;

}



.hero-image-box:hover .hero-video{

    transform:scale(1.04);

}



/* ======================================================
   FLOATING CARDS
====================================================== */

.hero-floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:15px;

    min-width:240px;

    padding:18px 22px;

    background:#ffffff;

    border-radius:18px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.15);

    animation:floatCard 4s ease-in-out infinite;

    z-index:10;

}



.hero-floating-card i{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0b1f3a;

    color:#ffffff;

    font-size:20px;

}



.hero-floating-card strong{

    display:block;

    color:#0b1f3a;

    font-size:16px;

    font-weight:700;

}



.hero-floating-card span{

    display:block;

    color:#64748b;

    font-size:13px;

}



/* Floating Positions */

.card-one{

    top:90px;

    left:-45px;

}



.card-two{

    right:-35px;

    bottom:180px;

}



.card-three{

    left:-30px;

    bottom:45px;

}



@keyframes floatCard{

    50%{

        transform:translateY(-10px);

    }

}



/* ======================================================
   HERO SERVICE CARDS
====================================================== */

.hero-service-cards{

    width:100%;

    max-width:680px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:25px;

}



.hero-service-card{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px;

    background:#ffffff;

    border-radius:18px;

    border:1px solid #e2e8f0;

    box-shadow:
        0 12px 35px rgba(15,23,42,.08);

    transition:.35s ease;

}



.hero-service-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 20px 45px rgba(15,23,42,.15);

}



.service-icon{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:#0b1f3a;

    color:#ffffff;

    font-size:20px;

}



.hero-service-card strong{

    display:block;

    color:#0b1f3a;

    font-size:16px;

    font-weight:700;

    margin-bottom:4px;

}



.hero-service-card span{

    color:#64748b;

    font-size:14px;

}



/* ======================================================
   LARGE TABLETS
====================================================== */

@media(max-width:1100px){

    .hero-content{

        width:50%;

    }

    .hero-image{

        width:50%;

    }

    .hero-image-box{

        max-width:100%;

        height:620px;

    }

    .hero-service-cards{

        grid-template-columns:repeat(3,1fr);

    }

}



/* ======================================================
   TABLETS & MOBILE
====================================================== */

@media(max-width:900px){

    .hero{

        flex-direction:column;

        text-align:center;

    }

    .hero-content{

        width:100%;

    }

    .hero-image{

        width:100%;

        max-width:720px;

        margin:50px auto 0;

        align-items:center;

    }

    .hero-image-box{

        width:100%;

        height:500px;

    }

    .hero-service-cards{

        width:100%;

        grid-template-columns:1fr;

        max-width:420px;

    }

    .hero-floating-card{

        position:relative;

        left:auto;

        right:auto;

        top:auto;

        bottom:auto;

        width:100%;

        max-width:340px;

        margin:18px auto 0;

        animation:none;

    }

}



/* ======================================================
   SMALL PHONES
====================================================== */

@media(max-width:480px){

    .hero-image{

        margin-top:35px;

    }

    .hero-image-box{

        height:340px;

        border-radius:18px;

    }

    .hero-service-cards{

        max-width:100%;

    }

    .hero-service-card{

        padding:16px;

    }

    .service-icon{

        width:46px;

        height:46px;

        font-size:18px;

    }

}
/* ======================================================
   HERO SERVICE CARDS BELOW IMAGE
====================================================== */


.hero-service-cards{

    width:100%;

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:30px;

    flex-wrap:wrap;

}



.hero-service-card{

    background:white;

    border-radius:20px;

    padding:18px 25px;

    min-width:240px;

    display:flex;

    align-items:center;

    gap:16px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

    border:
    1px solid rgba(11,31,58,.08);

    transition:.35s ease;

}



.hero-service-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 55px rgba(0,0,0,.18);

}





.service-icon{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:
    linear-gradient(
    135deg,
    #0b1f3a,
    #173b6a
    );

    color:white;

    font-size:22px;

}





.hero-service-card strong{

    display:block;

    color:#0b1f3a;

    font-size:17px;

    font-weight:700;

    margin-bottom:5px;

}



.hero-service-card span{

    display:block;

    color:#6b7280;

    font-size:14px;

}





/* ======================================================
   DESKTOP IMAGE AREA
====================================================== */


.hero-image{

    display:flex;

    flex-direction:column;

}





/* ======================================================
   TABLET
====================================================== */


@media(max-width:1100px){


.hero-service-card{

    min-width:220px;

}


}





/* ======================================================
   MOBILE
====================================================== */


@media(max-width:900px){



.hero-service-cards{

    margin-top:25px;

    gap:15px;

}



.hero-service-card{

    width:100%;

    max-width:340px;

    padding:16px 20px;

}



.service-icon{

    width:48px;

    height:48px;

    font-size:18px;

}


}





/* SMALL PHONES */

@media(max-width:480px){



.hero-service-card{

    border-radius:16px;

}



.hero-service-card strong{

    font-size:15px;

}



.hero-service-card span{

    font-size:13px;

}


}