﻿/* Background Slogan Section */
.fertilizer-bg {
    background: url('../Content/Images/waterso.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

    .fertilizer-bg .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 80, 0, 0.55);
    }

/* Slogan Container */
.slogan-container {
    position: relative;
    z-index: 2;
}

.slogan-title {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
}

.slogan-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.slogan-btn {
    background: #2ecc71;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .slogan-btn:hover {
        background: #27ae60;
    }

/* Product Section */
.fertilizer-section {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2d572c;
}

.section-slogan {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
}

/* Product Cards Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Design */
.product-card {
    background: #fff;
    border: 2px solid #2ecc71;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-8px);
    }

/* Image Styling */
.product-image {
    height: 325px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Info */
.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a3d1a;
}

.product-info p {
    font-size: 15px;
    color: #555;
}
