/* services.css */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    background-color: #0d0d0d; /* Fond sombre inspiré du logo */
    border: 1px solid #22c1c3;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(34, 193, 195, 0.5);
}

.service-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: -webkit-linear-gradient(45deg, #22c1c3, #16d7ae);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Espacement entre les boutons */
    margin-top: auto;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #22c1c3, #16d7ae);
    color: #0d0d0d;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(34, 193, 195, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #22c1c3;
    border: 1px solid #22c1c3;
}

.btn-secondary:hover {
    background-color: #22c1c3;
    color: #0d0d0d;
}