/* HERO SECTION */
.about-hero-section {
    padding: 120px 0;
    background: linear-gradient(
                rgba(0, 0, 0, 0.55), 
                rgba(0, 0, 0, 0.55)
            ),
            url("../img/poultry.jpg") center/cover no-repeat;
}

/* SECTION DIVIDERS */
.section-divider-top {
    height: 50px;
    background: url("../img/wave.svg") center/cover no-repeat;
}

.section-divider-bottom {
    height: 60px;
    background: url("../img/wave2.svg") center/cover no-repeat;
}

/* MISSION SECTION BG */
.about-mission-bg {
    background: #f6f9fc;
}

/* CTA SECTION */
.about-cta-section {
    background: linear-gradient(135deg, #0a7f42, #064f29);
}

/* PREMIUM CARD ANIMATIONS */
.premium-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* VALUE BOXES */
.premium-value {
    text-align: center;
    background: #ffffff;
    transition: 0.3s ease;
}
.premium-value:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
