/* --- Global & Responsive Fixes --- */
.py-100 {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .py-100 {
        padding: 50px 0;
    }

    .main-banner-heading {
        font-size: 2.5rem;
    }
}

/* --- Hero Banner --- */
.agriculture-banner {
    background: linear-gradient(180deg, #f0fff3 9.33%, #f0fff300 103.13%);
    padding-top: 100px;
    height: auto;
}

/* --- Image Stack Enhancements --- */
.image-stack {
    position: relative;
    z-index: 1;
}

    .image-stack img {
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
    }

    .image-stack:hover img {
        transform: translateY(-5px);
    }

    .image-stack::after {
        content: '';
        position: absolute;
        top: -15px;
        left: -15px;
        width: 80px;
        height: 80px;
        background: radial-gradient(#22c55e 20%, transparent 20%);
        background-size: 10px 10px;
        z-index: -1;
    }

/* --- Capability Cards (Responsive Grid) --- */
.cap-card {
    backdrop-filter: blur(2px);
    padding: 35px 25px;
    border: 1px solid transparent;
    transition: 0.4s;
    height: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .cap-card:hover {
        border-color: #03a84e;
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(3, 168, 78, 0.1);
    }

    .cap-card h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
    }

/* --- Risk Section --- */
.risk-section h2, .risk-section {
    color: #17313b;
}

    .risk-section::before {
        content: '!';
        position: absolute;
        right: 20px;
        bottom: -20px;
        font-size: 12rem;
        font-weight: 900;
        color: rgba(0,0,0,0.03);
        line-height: 1;
        z-index: -1;
    }

/* --- FAQ Cards --- */
.faq-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #ededed;
    border-left: 5px solid #f26622;
    transition: 0.3s;
}

    .faq-card:hover {
        transform: translateX(5px);
    }

/* --- CTA Gradient --- */
.cta-gradient {
    background: linear-gradient(56deg, #f0fff3 9.33%, #f0fff369 103.13%);
}

/* Background texture management */
.agritech-sec-4 {
    background: #f0fff3;
    position: relative;
    overflow: hidden;
}

img.OurAgriTechSolutionsimg {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}


[class*="agritech-sec-"] {
    position: relative;
}