  .slca-achievements{
    padding:50px 0;
    background:#f8fafc;
}





.slca-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    margin-bottom:80px;
}

.slca-image img{
    width:100%;
    border-radius:20px;
    height:550px;
    object-fit:cover;
}

.info-box{
    background:#fff;
    padding:25px;
    border-radius:16px;
    display:flex;
    gap:20px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.info-box .icon{
    width:60px;
    height:60px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.info-box h4{
    margin-bottom:10px;
    color:#0f172a;
}

.info-box p,
.info-box li{
    color:#64748b;
    line-height:1.8;
}

.award-section{
    background:linear-gradient(135deg,#0d6efd,#003f88);
    color:#fff;
    padding:60px;
    border-radius:25px;
    display:grid;
    grid-template-columns:350px 1fr;
    gap:50px;
    margin-bottom:80px;
}

.award-badge{
    width:120px;
    height:120px;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:55px;
    margin-bottom:25px;
}

.award-left h3{
    font-size:32px;
    margin-bottom:10px;
}

.award-left span{
    color:#ffd700;
}

.award-right p{
    line-height:1.9;
    margin-bottom:15px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:80px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.impact-area{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.impact-card{
    background:#fff;
    text-align:center;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.impact-card i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:20px;
}

.impact-card h3{
    margin-bottom:12px;
    color:#0f172a;
}

.impact-card p{
    color:#64748b;
}

@media(max-width:991px){

    .slca-top,
    .award-section{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .impact-area{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:36px;
    }
}

@media(max-width:576px){

    .gallery-grid,
    .impact-area{
        grid-template-columns:1fr;
    }

    .award-section{
        padding:35px;
    }
}