
body {
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth; 
}


.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0;
}


.service-card {
    border: none;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: #0d6efd;
    color: white;
}

.service-card:hover i {
    color: white !important;
}

/* تحسين شكل الفورم */
.form-control:focus {
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
    border-color: #0d6efd;
}