/* Mobile Optimization */
@media (max-width: 768px) {
    .product-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .container {
        padding: 10px;
    }

    .request-section {
        width: 90%;
    }

    input, select, textarea {
        font-size: 16px;
    }

    button {
        font-size: 16px;
        padding: 12px;
    }
}
/* Adding CSS animations for a better user experience */

body {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

button:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

.product-item {
    transition: transform 0.3s ease-in-out;
}

.product-item:hover {
    transform: translateY(-5px);
}

/* Fade-in effect when scrolling */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
