/* تنسيق عام */
body {
    font-family: 'Cairo', sans-serif;
}

h1, h2, h5 {
    font-weight: 700;
}

/* تنسيق قسم الـ Hero */
.hero-section {
    position: relative;
    height: 80vh;
}

.carousel-item {
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-item .container {
    position: relative;
    z-index: 2;
}

/* نموذج البحث */
.search-form {
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 3;
}

.search-form input, .search-form button {
    border-radius: 25px;
}

/* تنسيق قسم الإحصائيات */
.stats-section h3 {
    font-weight: 700;
    color: #007bff;
}

.stats-section p {
    font-size: 1.2rem;
}

/* تنسيق قسم المميزات */
.features-section .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.features-section .card:hover {
    transform: translateY(-10px);
}

/* تنسيق قسم دعوة للعمل */
.cta-section {
    background-color: #007bff;
}

.cta-section .btn-light {
    transition: background-color 0.3s;
}

.cta-section .btn-light:hover {
    background-color: #f8f9fa;
}

/* تنسيق التذييل */
footer .social-icons i {
    font-size: 1.5rem;
    transition: color 0.3s;
}

footer .social-icons a:hover i {
    color: #007bff;
}

/* تأثيرات حركية */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
