
.pump-section {
    padding: 70px 0;
    background: #80808017;
}

.section-header {
    text-align: center;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #f36b21;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 16px;
        text-align: justify;
}

/* ================= PRODUCT GRID ================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.product-card img {
    max-width: 260px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.product-card h4 {
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.product-card span {
    color: #f36b21;
    font-weight: 600;
    font-size: 15px;
}

/* Hover only desktop */
@media (min-width: 769px) {
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }

    .product-card:hover img {
        transform: scale(1.08);
    }
}

/* ================= INFO BOX ================= */

.info-box {
    background: #ffff !important;
    border-left: 5px solid #f36b21;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.info-box h4 {
    color: #c8b752;
    font-weight: 800;
    margin-bottom: 10px;
}

.info-box ul {
    padding-left: 18px;
}

.info-box ul li {
    margin-bottom: 8px;
    color: #333;
}

.info-box p {
    color: #444;
    line-height: 1.7;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .pump-section {
        padding: 50px 20px;
    }

    .product-card img {
                max-width: 218px;
    }
}


