﻿/* General Fertilizer Section */
.gf-hero-section {
    background: url('/Content/Images/generalferti.jpg') no-repeat center center/cover;
    padding: 80px 0;
    position: relative;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.gf-hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 30px;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.gf-hero-content {
    animation: fadeInUp 1s ease-out;
}

.gf-heading {
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    color: #a8ef3c;
    margin-bottom: 20px;
}

.gf-intro {
    font-size: 18px;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.gf-points p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #f5f5f5;
}

.gf-points ul {
    margin-top: 10px;
    padding-left: 20px;
}

    .gf-points ul li {
        font-size: 16px;
        color: #d2ffd9;
        margin-bottom: 10px;
        line-height: 1.6;
    }

/* Animation Keyframe */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fertilizers-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.fertilizer-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeInUp 1s ease-in-out;
}

    .fertilizer-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

.fertilizer-image-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

.fertilizer-img {
    max-height: 350px;
    width: auto;
    transition: transform 0.3s ease;
}

.fertilizer-card:hover .fertilizer-img {
    transform: scale(1.05);
}

.fertilizer-brand-title {
    font-size: 1rem;
    font-weight: bold;
    color: #198754;
    margin-bottom: 8px;
}

.fertilizer-subtitle,
.fertilizer-text {
    font-size: 0.95rem;
    color: #444;
}

.section-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #1e3a34;
}

/* Optional: Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fertilizers-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.fertilizer-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 25px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

    .fertilizer-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    }

.fertilizer-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.fertilizer-img {
    max-height: 420px; /* bigger image */
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

.fertilizer-card:hover .fertilizer-img {
    transform: scale(1.08);
}

/* Base/Stand under product */
.fertilizer-base {
    width: 120px;
    height: 18px;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 12px auto 0;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
}

/* Text */
.fertilizer-brand-title {
    font-size: 1.05rem;
    font-weight: bold;
    color: #198754;
    margin-top: 10px;
}

.fertilizer-subtitle,
.fertilizer-text {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 5px;
}

.section-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #1e3a34;
}
