body {
    font-family: Arial, sans-serif;
}

.services-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
}

.services-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
   

}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 500px;
    height: 350px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 15px;
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    color: #d32f2f;
    margin-bottom: 10px;
}

.service-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-in-out;
}
.img-size {
    width: 450px;
    height: 200px;
}

.grill {
    background-color: #d32f2f; /* Couleur de fond */
    background-image: linear-gradient(120deg, #e8e8e8 25%, transparent 25%),
                      linear-gradient(60deg, #e8e8e8 25%, transparent 25%),
                      linear-gradient(0deg, #e8e8e8 50%, transparent 50%);
    background-size: 40px 46px;
    background-position: 0 0, 20px 0, 10px 23px;
}

.gril {
    background-image: url('public/img/bur3.jpg'); /* Remplacez par le chemin de votre image */
    background-size: cover; /* Ajuste pour couvrir toute la section */
    background-repeat: repeat; /* Répète le motif si nécessaire */
    background-position: center; /* Centre le motif */
    padding: 50px 0; /* Ajoute de l'espace vertical */
}
