
/* ======= Services Section ======= */
.services-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card i {
    font-size: 40px;
    color: #222;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.service-card p {
    color: #555;
}

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

.service-card:hover i {
    color: #d0b88f; /* لون أيقونة عند المرور */
}

