body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f2f7ff, #e0f7fa);
    color: #333;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 40px 0 30px;
    color: #004d40;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.service-card {
    background: #ffffffdd;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.35s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: contain; /* show full image without cropping */
    object-position: center;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.95) saturate(1);
}

.service-card:hover .service-image {
    transform: scale(1.04);
    filter: brightness(1.1) saturate(1.2);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00695c;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #444;
    min-height: 50px;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.btn-order {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00c6a9, #00796b);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 121, 107, 0.3);
}

.btn-order:hover {
    background: linear-gradient(135deg, #009688, #004d40);
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .btn-order {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-image {
        height: 160px;
    }
}