/**
 * Styles pour les icônes de services
 */

/* Conteneur de l'icône */
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

/* Animation au survol */
.service-item:hover .service-icon {
    transform: scale(1.1);
}

/* Style de l'icône SVG */
.service-icon img {
    width: 80px;
    height: 80px;
    transition: filter 0.3s ease;
}

/* Effet de couleur au survol */
.service-item:hover .service-icon img {
    filter: drop-shadow(0 0 5px rgba(13, 110, 253, 0.5));
}

/* Style de la carte de service */
.service-item {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Animation au survol de la carte */
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Style du titre */
.service-item h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #212529;
}

/* Style du texte */
.service-item p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Styles pour les écrans mobiles */
@media (max-width: 767.98px) {
    .service-icon img {
        width: 60px;
        height: 60px;
    }
    
    .service-item {
        padding: 1.5rem !important;
    }
}
