/* ======================================================
   SEAN B SOLUTIONS
   SOLUTIONS PAGE STYLES
   File: assets/css/pages/solutions.css
====================================================== */


/* ======================================================
   SOLUTIONS HERO
====================================================== */


.solutions-hero{

    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

    overflow:hidden;

    color:#ffffff;

}



.solutions-hero-background{

    position:absolute;

    inset:0;

    background:

    url("/assets/images/solutions/solutions-hero.webp")

    center center / cover no-repeat;

    z-index:0;

}




.solutions-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        90deg,
        rgba(7,18,35,.96),
        rgba(11,31,58,.88),
        rgba(11,31,58,.55)
    );

    z-index:1;

}




.solutions-hero .container{

    position:relative;

    z-index:2;

}





/* ======================================================
   HERO LAYOUT
====================================================== */


.solutions-hero-wrapper{

    display:grid;

    grid-template-columns:

    1fr 450px;

    gap:60px;

    align-items:center;

    padding:90px 0;

}





.solutions-hero-content{

    max-width:760px;

}





/* ======================================================
   BADGE
====================================================== */


.solutions-hero .section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#e60000;

    color:#ffffff;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}





/* ======================================================
   TITLE
====================================================== */


.solutions-hero h1{

    font-size:

    clamp(40px,5vw,64px);

    line-height:1.15;

    font-weight:900;

    margin-bottom:25px;

    color:#ffffff;

}



.solutions-hero h1 span{

    display:block;

    color:#e60000;

}





.solutions-hero p{

    max-width:720px;

    color:#f1f5f9;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}





/* ======================================================
   BUTTONS
====================================================== */


.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}



.hero-buttons .btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 32px;

    border-radius:8px;

    font-weight:700;

    transition:.3s ease;

}





.hero-buttons .btn-primary{

    background:#e60000;

    color:#ffffff;

}



.hero-buttons .btn-primary:hover{

    transform:translateY(-4px);

}





.hero-buttons .btn-secondary{

    border:2px solid #ffffff;

    color:#ffffff;

    background:rgba(255,255,255,.08);

}



.hero-buttons .btn-secondary:hover{

    background:#ffffff;

    color:#0b1f3a;

}





/* ======================================================
   TRUST STATS
====================================================== */


.hero-trust{

    display:flex;

    gap:50px;

    margin-top:50px;

    flex-wrap:wrap;

}





.trust-item{

    display:flex;

    flex-direction:column;

}





.trust-item strong{

    color:#ffffff;

    font-size:36px;

    font-weight:900;

}





.trust-item span{

    color:#dbe4ef;

    font-size:14px;

}





/* ======================================================
   HERO IMAGE
====================================================== */


.solutions-hero-image{

    position:relative;

}





.hero-image-card{

    background:#ffffff;

    padding:10px;

    border-radius:25px;

    box-shadow:

    0 25px 60px rgba(0,0,0,.35);

}





.hero-image-card img{

    width:100%;

    height:520px;

    object-fit:cover;

    object-position:center;

    display:block;

    border-radius:18px;

}





/* ======================================================
   FLOATING CARD
====================================================== */


.floating-card{

    position:absolute;

    bottom:35px;

    left:-45px;

    display:flex;

    align-items:center;

    gap:15px;

    background:#ffffff;

    color:#0b1f3a;

    padding:18px 22px;

    border-radius:16px;

    box-shadow:

    0 20px 45px rgba(0,0,0,.25);

    max-width:330px;

}





.floating-icon{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#e60000;

    color:#ffffff;

    border-radius:14px;

    font-size:24px;

}





.floating-card strong{

    display:block;

    font-size:16px;

    font-weight:800;

}





.floating-card span{

    display:block;

    margin-top:5px;

    color:#64748b;

    font-size:13px;

}





/* ======================================================
   RESPONSIVE
====================================================== */


@media(max-width:1200px){


.solutions-hero-wrapper{

    grid-template-columns:1fr;

    text-align:center;

}



.solutions-hero-content{

    margin:auto;

}



.solutions-hero-image{

    max-width:520px;

    margin:40px auto 0;

}



.hero-buttons{

    justify-content:center;

}



.hero-trust{

    justify-content:center;

}


}





@media(max-width:768px){


.solutions-hero{

    min-height:auto;

}



.solutions-hero-wrapper{

    padding:120px 20px 70px;

}



.solutions-hero h1{

    font-size:36px;

}



.solutions-hero p{

    font-size:16px;

}



.hero-buttons{

    flex-direction:column;

}



.hero-buttons .btn{

    width:100%;

}



.hero-trust{

    gap:30px;

}



.trust-item strong{

    font-size:28px;

}



.hero-image-card img{

    height:350px;

}



.floating-card{

    position:relative;

    left:0;

    bottom:0;

    margin-top:20px;

}


}





@media(max-width:480px){


.solutions-hero-wrapper{

    padding-left:15px;

    padding-right:15px;

}



.solutions-hero h1{

    font-size:30px;

}



.solutions-hero .section-tag{

    font-size:12px;

}



.hero-trust{

    flex-direction:column;

    align-items:center;

}



.hero-image-card img{

    height:280px;

}



.floating-card{

    padding:15px;

}



.floating-icon{

    width:45px;

    height:45px;

    font-size:20px;

}


}

/* ======================================================
   SOLUTIONS OVERVIEW
====================================================== */


.solutions-overview{

    padding:100px 0;

    background:#f5f7fa;

}



.solutions-overview-header{

    max-width:850px;

    margin:0 auto 60px;

    text-align:center;

}





.solutions-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}





.solution-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:

    0 10px 30px rgba(11,31,58,.08);

    transition:.35s ease;

}





.solution-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 20px 45px rgba(11,31,58,.15);

}





.solution-image{

    height:240px;

    overflow:hidden;

}



.solution-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}



.solution-card:hover img{

    transform:scale(1.08);

}





.solution-content{

    padding:30px;

    text-align:center;

    position:relative;

}





.solution-icon{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:-65px auto 20px;

    background:#e60000;

    color:#ffffff;

    border-radius:50%;

    border:6px solid #ffffff;

    font-size:25px;

}





.solution-content h3{

    color:#0b1f3a;

    font-size:22px;

    font-weight:800;

    margin-bottom:15px;

}





.solution-content p{

    color:#64748b;

    font-size:15px;

    line-height:1.8;

    margin-bottom:20px;

}





.solution-content a{

    color:#e60000;

    font-weight:700;

    display:inline-flex;

    gap:8px;

    align-items:center;

}





@media(max-width:992px){

    .solutions-grid{

        grid-template-columns:repeat(2,1fr);

    }

}



@media(max-width:768px){

    .solutions-overview{

        padding:70px 0;

    }


    .solutions-grid{

        grid-template-columns:1fr;

    }


    .solution-image{

        height:220px;

    }

}

/* ======================================================
   SECURITY SOLUTIONS DETAIL
====================================================== */


.solution-detail-section{

    padding:110px 0;

    background:#ffffff;

}



.solution-detail-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}





.solution-detail-image{

    position:relative;

}





.solution-detail-image .image-box{

    height:520px;

    overflow:hidden;

    border-radius:28px;

    box-shadow:

    0 25px 60px rgba(11,31,58,.18);

}





.solution-detail-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}





.solution-detail-image:hover img{

    transform:scale(1.06);

}





.service-floating-card{

    position:absolute;

    bottom:30px;

    right:-35px;

    display:flex;

    align-items:center;

    gap:15px;

    background:#ffffff;

    padding:18px 25px;

    border-radius:18px;

    box-shadow:

    0 15px 40px rgba(11,31,58,.18);

}





.service-floating-card i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#e60000;

    color:#ffffff;

    border-radius:14px;

    font-size:24px;

}





.service-floating-card strong{

    display:block;

    color:#0b1f3a;

    font-size:16px;

    font-weight:800;

}





.service-floating-card span{

    display:block;

    color:#64748b;

    font-size:13px;

}





.solution-detail-content h2{

    color:#0b1f3a;

    font-size:clamp(32px,4vw,48px);

    line-height:1.2;

    font-weight:900;

    margin-bottom:25px;

}





.solution-detail-content h2 span{

    display:block;

    color:#e60000;

}





.solution-detail-content p{

    color:#64748b;

    font-size:17px;

    line-height:1.9;

    margin-bottom:18px;

}





.solution-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin:35px 0;

}





.feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    color:#0b1f3a;

    font-weight:600;

    font-size:15px;

}





.feature-item i{

    color:#e60000;

}





.solution-button{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#e60000;

    color:#ffffff;

    padding:15px 30px;

    border-radius:8px;

    font-weight:700;

    text-decoration:none;

    transition:.3s ease;

}





.solution-button:hover{

    transform:translateY(-4px);

    background:#c90000;

}





@media(max-width:1100px){


.solution-detail-grid{

    grid-template-columns:1fr;

    gap:50px;

}



.solution-detail-content{

    text-align:left;

}



.solution-detail-image{

    max-width:700px;

    margin:auto;

}


}




@media(max-width:768px){


.solution-detail-section{

    padding:75px 0;

}



.solution-detail-image .image-box{

    height:380px;

}



.service-floating-card{

    position:relative;

    right:auto;

    bottom:auto;

    margin-top:20px;

}



.solution-features{

    grid-template-columns:1fr;

}



.solution-button{

    width:100%;

    justify-content:center;

}


}




@media(max-width:480px){


.solution-detail-image .image-box{

    height:300px;

}



.solution-detail-content h2{

    font-size:28px;

}


}

/* ======================================================
   REVERSE SOLUTION LAYOUT
====================================================== */


.reverse-layout{

    grid-template-columns:1fr 1fr;

}



.reverse-layout .solution-detail-image{

    order:2;

}



.reverse-layout .solution-detail-content{

    order:1;

}



@media(max-width:1100px){


.reverse-layout{

    grid-template-columns:1fr;

}



.reverse-layout .solution-detail-image{

    order:1;

}



.reverse-layout .solution-detail-content{

    order:2;

}


}

/* ======================================================
   INDUSTRIES SOLUTIONS SECTION
====================================================== */


.industries-solutions{

    padding:110px 0;

    background:#f5f7fa;

}





/* ======================================================
   HEADER
====================================================== */


.industries-header{

    max-width:850px;

    margin:0 auto 60px;

    text-align:center;

}



.industries-header .section-title{

    color:#0b1f3a;

    font-size:clamp(34px,4vw,48px);

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}



.industries-header .section-title span{

    display:block;

    color:#e60000;

}



.industries-header .section-description{

    max-width:750px;

    margin:auto;

    color:#64748b;

    font-size:17px;

    line-height:1.8;

}





/* ======================================================
   INDUSTRIES GRID
====================================================== */


.industries-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}





/* ======================================================
   INDUSTRY CARD
====================================================== */


.industry-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    position:relative;

    box-shadow:

    0 10px 30px rgba(11,31,58,.08);

    transition:.35s ease;

}





.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 20px 45px rgba(11,31,58,.18);

}







/* ======================================================
   IMAGE
====================================================== */


.industry-image{

    height:260px;

    overflow:hidden;

    position:relative;

    background:#e5e7eb;

}



.industry-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        to top,
        rgba(11,31,58,.35),
        transparent
    );

}



.industry-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    transition:.5s ease;

}





.industry-card:hover .industry-image img{

    transform:scale(1.08);

}





/* ======================================================
   CONTENT
====================================================== */


.industry-content{

    padding:35px 28px 32px;

    text-align:center;

    position:relative;

}



.industry-content i{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:-65px auto 20px;

    background:#e60000;

    color:#ffffff;

    border-radius:50%;

    border:6px solid #ffffff;

    font-size:25px;

    position:relative;

    transition:.35s ease;

}





.industry-card:hover .industry-content i{

    transform:rotateY(360deg);

}





.industry-content h3{

    color:#0b1f3a;

    font-size:22px;

    font-weight:800;

    margin-bottom:15px;

}





.industry-content p{

    color:#64748b;

    font-size:15px;

    line-height:1.8;

}







/* ======================================================
   RESPONSIVE
====================================================== */


@media(max-width:1200px){


    .industries-grid{

        grid-template-columns:repeat(2,1fr);

    }


}







@media(max-width:768px){


    .industries-solutions{

        padding:80px 0;

    }



    .industries-grid{

        grid-template-columns:1fr;

        gap:25px;

    }



    .industry-card{

        max-width:420px;

        margin:auto;

    }



    .industry-image{

        height:230px;

    }



    .industry-content{

        padding:30px 22px;

    }



    .industry-content h3{

        font-size:20px;

    }



    .industries-header .section-description{

        font-size:16px;

    }


}







@media(max-width:480px){


    .industry-image{

        height:210px;

    }



    .industry-content p{

        font-size:14px;

    }


}

/* ======================================================
   SOLUTIONS PROCESS SECTION
====================================================== */


.solutions-process{

    padding:120px 0;

    background:#f5f7fa;

}





/* ======================================================
   HEADER
====================================================== */


.process-header{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}



.process-header .section-title{

    color:#0b1f3a;

    font-size:clamp(34px,4vw,50px);

    font-weight:900;

    line-height:1.2;

    margin-bottom:20px;

}



.process-header .section-title span{

    color:#e60000;

}



.process-header .section-description{

    color:#64748b;

    font-size:17px;

    line-height:1.8;

    max-width:750px;

    margin:auto;

}





/* ======================================================
   PROCESS GRID
====================================================== */


.solutions-process-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    position:relative;

}





/* CONNECTING LINE */

.solutions-process-grid::before{

    content:"";

    position:absolute;

    top:55px;

    left:8%;

    right:8%;

    height:2px;

    background:#dbe3ec;

    z-index:0;

}





/* ======================================================
   PROCESS CARD
====================================================== */


.process-card{

    background:#ffffff;

    padding:45px 28px 35px;

    border-radius:24px;

    text-align:center;

    position:relative;

    z-index:1;

    border:1px solid #e8edf3;

    transition:.35s ease;

    box-shadow:

    0 10px 30px rgba(11,31,58,.06);

}





.process-card:hover{

    transform:translateY(-12px);

    border-color:#e60000;

    box-shadow:

    0 25px 55px rgba(11,31,58,.15);

}





/* ======================================================
   NUMBER
====================================================== */


.process-number{

    position:absolute;

    top:15px;

    right:20px;

    font-size:48px;

    font-weight:900;

    color:#eef2f7;

    line-height:1;

}





/* ======================================================
   ICON
====================================================== */


.process-icon{

    width:85px;

    height:85px;

    margin:0 auto 28px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    linear-gradient(
        135deg,
        #e60000,
        #b80000
    );

    color:#ffffff;

    border-radius:22px;

    font-size:32px;

    position:relative;

    box-shadow:

    0 15px 35px rgba(230,0,0,.25);

    transition:.4s ease;

}





.process-card:hover .process-icon{

    transform:

    translateY(-8px)
    rotateY(360deg);

}





/* ======================================================
   CONTENT
====================================================== */


.process-card h3{

    color:#0b1f3a;

    font-size:22px;

    font-weight:850;

    margin-bottom:15px;

}





.process-card p{

    color:#64748b;

    font-size:15px;

    line-height:1.8;

}





/* ======================================================
   SMALL ACCENT
====================================================== */


.process-card::after{

    content:"";

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:4px;

    background:#e600red;

    transform:scaleX(0);

    transition:.35s ease;

}



.process-card:hover::after{

    transform:scaleX(1);

}






/* ======================================================
   RESPONSIVE
====================================================== */


@media(max-width:1200px){


.solutions-process-grid{

    grid-template-columns:repeat(3,1fr);

}



.solutions-process-grid::before{

    display:none;

}


}






@media(max-width:900px){


.solutions-process-grid{

    grid-template-columns:repeat(2,1fr);

}


}






@media(max-width:768px){


.solutions-process{

    padding:80px 0;

}



.process-header{

    margin-bottom:45px;

}



.solutions-process-grid{

    grid-template-columns:1fr;

}



.process-card{

    max-width:420px;

    margin:auto;

    padding:40px 25px 35px;

}



.process-number{

    font-size:42px;

}


}





@media(max-width:480px){


.process-card h3{

    font-size:20px;

}



.process-card p{

    font-size:14px;

}



.process-icon{

    width:75px;

    height:75px;

    font-size:28px;

}


}

/* ======================================================
   SOLUTIONS CTA SECTION
====================================================== */


.solutions-cta{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:

    linear-gradient(
        rgba(11,31,58,.95),
        rgba(11,31,58,.95)
    ),

    url("/assets/images/solutions/Customer Support.webp")
    center/cover no-repeat;

    color:#ffffff;

}



.solutions-cta .container{

    position:relative;

    z-index:2;

}





.cta-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(
        circle at top right,
        rgba(230,0,0,.25),
        transparent 45%
    );

}





.solutions-cta-content{

    max-width:850px;

    margin:auto;

    text-align:center;

}





.cta-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(230,0,0,.18);

    border:1px solid rgba(230,0,0,.4);

    color:#ffffff;

    font-weight:700;

    margin-bottom:25px;

}





.solutions-cta h2{

    font-size:clamp(36px,5vw,58px);

    font-weight:900;

    line-height:1.2;

    margin-bottom:25px;

    color:#ffffff;

}





.solutions-cta h2 span{

    color:#e60000;

}





.solutions-cta p{

    max-width:720px;

    margin:0 auto 40px;

    color:#e5e7eb;

    font-size:18px;

    line-height:1.8;

}





.cta-actions{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}





.cta-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 35px;

    border-radius:10px;

    font-weight:800;

    transition:.35s ease;

    text-decoration:none;

}





.primary-cta{

    background:#e60000;

    color:#ffffff;

}





.primary-cta:hover{

    transform:translateY(-5px);

    background:#c90000;

}





.secondary-cta{

    color:#ffffff;

    border:2px solid #ffffff;

}





.secondary-cta:hover{

    background:#ffffff;

    color:#0b1f3a;

}





/* ======================================================
   RESPONSIVE
====================================================== */


@media(max-width:768px){


.solutions-cta{

    padding:80px 0;

}



.solutions-cta h2{

    font-size:34px;

}



.solutions-cta p{

    font-size:16px;

}



.cta-actions{

    flex-direction:column;

    align-items:center;

}



.cta-button{

    width:100%;

    max-width:330px;

}


}

/* ======================================================
   GLOBAL SOLUTIONS MOBILE FIX
====================================================== */

@media(max-width:768px){


.container{

    padding-left:20px;

    padding-right:20px;

}


.section-title{

    text-align:center;

}



.solution-detail-grid{

    grid-template-columns:1fr;

}



.solution-detail-image{

    order:1;

}



.solution-detail-content{

    order:2;

}



.image-box{

    height:330px;

}



.solution-features{

    grid-template-columns:1fr;

}



.solution-button{

    width:100%;

    justify-content:center;

}


}