/*==========================
SOLUTIONS HERO
==========================*/
.solutions-hero {
    width: 100%;
    margin: 100px 0 0;
}

/* Make only the Solutions Hero container full width */
.solutions-hero > .container {
    width: 100%;
    max-width: none;
    margin: 0;

    
}
.solutions-card{

    position:relative;

    overflow:hidden;

    min-height:60px;

    background:
    url("../images/solutions/solution-hero.png")
    center center/cover no-repeat;

}
.solutions-overlay{

    position:absolute;
    inset:0;

    background:

    linear-gradient(
        90deg,

        rgba(255,255,255,.97) 0%,
        rgba(255,255,255,.94) 20%,
        rgba(255,255,255,.82) 38%,
        rgba(255,255,255,.45) 55%,
        rgba(255,255,255,.08) 72%,
        rgba(255,255,255,0) 100%
    ),

    linear-gradient(
        180deg,

        rgba(20,70,170,.10),
        rgba(20,70,170,.45)
    );

    z-index:1;

}
.solutions-card::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:55%;
    height:100%;

    z-index:1;
}

.solutions-left{

    position:relative;

    z-index:2;

    width:42%;

    padding:50px;
        margin-left: 160px;

}

.solutions-left h1{
    font-size:52px;
    line-height:1.05;
    margin-bottom:24px;
}

.solutions-left p{

    color:#505050;
    font-size:18px;
    line-height:1.7;

    max-width:420px;

    margin-bottom:14px;
}
.solutions-features{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
    margin-top:45px;
}

.feature{
    display:flex;
    align-items:flex-start;
    width:190px;       /* Fixed width for each feature */

    gap:12px;
    flex:1;
}
.icon{

    width:56px;
    height:56px;

    background:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 8px 18px rgba(0,0,0,.08);

    flex-shrink:0;

}

.icon i{

    font-size:22px;
    color:#1849B8;

}

.feature h4{
    font-size:18px;
    font-weight:700;
    color:#123A80;
    margin-bottom:6px;
    white-space:nowrap;
}

.feature span{
    font-size:15px;
    color:#555;
    line-height:1.5;
}
.solutions-hero-label {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #E31E24;;
}
/*==========================
OUR HEALTHCARE SOLUTIONS
==========================*/

.healthcare-solutions{
    padding:10px 0;
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title h2{
    font-size:42px;
    color:#123A80;
    margin-bottom:12px;
}

.section-title p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Grid */

.solutions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* Card */

.solution-card{
    display:flex;
    align-items:center;
    justify-content:space-between;

    min-height:250px;

    background:#fff;
    border:1px solid #E7EDF8;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 8px 18px rgba(0,0,0,.05);
    transition:.3s;
}

.solution-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 35px rgba(0,0,0,.08);
}
/* Left Content */

.solution-content{
    width:60%;
    padding:24px;
}

.solution-top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
}

.solution-content h3{
    font-size:20px;
    color:#123A80;
    margin:0;
}
.solution-content p{
    font-size:15px;
    line-height:1.7;
    color:#666;
    margin:16px 0;
}

.solution-link{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:18px;

    color:#123A80;
    font-size:15px;
    font-weight:700;
    text-decoration:none;

    transition:.3s;
}

.solution-link i{
    font-size:13px;
    transition:.3s;
}

.solution-link:hover{
    color:#E31B23;
}

.solution-link:hover i{
    transform:translateX(5px);
}
/* Right Image */

.solution-image{
    width:40%;
    height:100%;
}

.solution-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Icons */

.solution-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.solution-icon i{
    font-size:22px;
}

.hospital{
    background:#EEF6FF;
    color:#2156D5;
}

.clinic{
    background:#ECFFF2;
    color:#2BA35C;
}

.lab{
    background:#F6EEFF;
    color:#7644E0;
}

.home{
    background:#FFF0F3;
    color:#EC4A73;
}
.emergency{
    background:#FFF4E8;
    color:#F97316;
}

.pharma{
    background:#EEF8FF;
    color:#2563EB;
}
/*==========================
WHY CHAMPION
==========================*/

.why-champion{

    padding:80px 0;

}

.why-box{

    display:grid;
    grid-template-columns:1.3fr 1fr;

    background:#fff;

    border:1px solid #E7EDF8;

    border-radius:18px;

    overflow:hidden;

}

.why-left{

    padding:35px;

    border-right:1px solid #EDF2F8;

}

.why-right{

    padding:35px;

}

.why-left h2,
.why-right h2{

    color:#123A80;

    font-size:28px;

    margin-bottom:28px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

}

.why-item{

    text-align:center;

}

.why-icon{

    width:58px;
    height:58px;

    margin:auto auto 16px;

    border-radius:50%;

    background:#F5F8FF;

    display:flex;
    justify-content:center;
    align-items:center;

}

.why-icon i{

    color:#123A80;
    font-size:22px;

}

.why-item h4{

    font-size:15px;
    color:#123A80;

    margin-bottom:8px;

}

.why-item p{

    font-size:13px;
    color:#666;

    line-height:1.6;

}

/* Process */

.process-grid{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

}

.process-item{

    text-align:center;

    width:100px;

}

.process-icon{

    width:62px;
    height:62px;

    margin:auto auto 14px;

    border-radius:50%;

    border:2px solid #2457D6;

    display:flex;
    justify-content:center;
    align-items:center;

}

.process-icon i{

    color:#2457D6;

    font-size:24px;

}

.process-item h4{

    font-size:15px;
    color:#123A80;

    margin-bottom:8px;

}

.process-item p{

    font-size:13px;
    color:#666;

    line-height:1.6;

}

.arrow{

    font-size:24px;
    color:#2457D6;

    margin-top:20px;

}
/*=========================
SHOP PLATFORMS
=========================*/

.shop-platforms{
    padding:10px 0;
}

.platform-box{
    background:#fff;
    border:1px solid #E6EDF8;
    border-radius:24px;
    padding:40px;
}

.platform-box h2{
    text-align:center;
    font-size:42px;
    color:#123A80;
    margin-bottom:40px;
}

/* GRID */

.platform-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    align-items:stretch;
}

/* Platform Cards */

.platform-card{
    display:block;
    border-radius:16px;
    overflow:hidden;
    height:110px;
}

.platform-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Bulk */

.bulk-card{
    display:flex;
    align-items:center;
    gap:18px;

    border:1px solid #E6EDF8;
    border-radius:16px;

    padding:20px;
}

.bulk-icon{
    width:60px;
    height:60px;

    background:#F4F7FD;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#123A80;
    font-size:28px;

    flex-shrink:0;
}

.bulk-icon i{

    color:#123A80;

    font-size:24px;

}

.bulk-content h3{
    font-size:18px;
    color:#123A80;
    margin-bottom:6px;
}

.bulk-content p{
    font-size:14px;
    line-height:1.5;
    color:#666;
    margin-bottom:12px;
}

.bulk-content a{

    display:inline-block;

    padding:8px 18px;

    border:1px solid #2457D6;

    border-radius:8px;

    color:#2457D6;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.bulk-content a:hover{

    background:#2457D6;

    color:#fff;

}
.bulk-content .btn{
    padding:8px 18px;
    font-size:14px;
    border-radius:8px;
}