/* ==================================================================
   Benefits Sections (Domestic Decorative Epoxy Resin / Industrial)
   Standalone stylesheet — does not modify style.css / custom.css
   ================================================================== */

.benefits-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
}

.benefits-section-alt {
    background: #f8f9fa;
}

.benefits-section .benefit-item {
    position: relative;
    text-align: center;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 35px 25px;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.benefits-section-alt .benefit-item {
    background: #ffffff;
}

.benefits-section .benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(3, 15, 39, .1);
    border-color: #fdbe33;
}

.benefits-section .benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fdbe33;
    color: #030f27;
    font-size: 28px;
    transition: background .3s ease, color .3s ease;
}

.benefits-section .benefit-item:hover .benefit-icon {
    background: #030f27;
    color: #fdbe33;
}

.benefits-section .benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #030f27;
    margin-bottom: 10px;
}

.benefits-section .benefit-item p {
    font-size: 14.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .benefits-section {
        padding: 55px 0;
    }

    .benefits-section .benefit-item {
        padding: 28px 20px;
    }
}
