@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
/* تخصيص شريط التمرير */
::-webkit-scrollbar {
    width: 8px; /* عرض الشريط */
    height: 8px; /* ارتفاع الشريط إذا كان أفقيًا */
}

/* تخصيص المسار */
::-webkit-scrollbar-track {
    background: #0f0f0f; /* لون الخلفية */
    border-radius: 10px; /* الزوايا */
}

/* تخصيص الشريط نفسه */
::-webkit-scrollbar-thumb {
    background: #ff8303; /* لون الشريط */
    border-radius: 10px; /* الزوايا */
}

/* تأثير عند التمرير */
::-webkit-scrollbar-thumb:hover {
    background: #e57202; /* لون مختلف عند التمرير */
}

/* تخصيص الشريط عند استخدام المتصفحات الداعمة */
::-webkit-scrollbar-corner {
    background: #fff; /* لون الزاوية في حال كان هناك scrollable area */
}

:root {
    --orange-color: #ff8303;
    --black-color: #000000;
    --gray-color: #f4f4f4;
    --white-color: #ffffff;
    --font-family: "Almarai", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Almarai", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    background-color: var(--gray-color);
    color: var(--black-color);
}
.parallaxed {
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}
/* تصميم Navbar */
.navbar {
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* ظل خفيف */
}

.navbar-brand .logo {
    width: 7rem; /* حجم الشعار */
    height: auto;
}
.navbar {
    border-bottom: 0 !important; /* إزالة الحدود */
    box-shadow: none !important; /* إزالة أي ظل */
    margin: 0; /* تأكد من عدم وجود هوامش */
}

/* الروابط */
.nav-link {
    color: var(--gray-color); /* لون النص */
    margin: 0 10px;
    font-size: 1rem;
    transition: all 0.3s ease; /* تأثير سلس عند التمرير */
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-color) !important; /* لون عند التمرير */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 44%;
    transform: translateX(-50%);
    width: 2%;
    height: 2px;
    background-color: var(--orange-color);
    transition: width 0.3s ease-in-out;
}
.dropdown-toggle::after {
    display: none;

}
/* تخصيص القائمة المنسدلة */
.nav-item .dropdown-menu {
    display: none; /* إخفاء القائمة بشكل افتراضي */
    position: absolute;
    background-color: var(--black-color);
    color: var(--gray-color);
    list-style: none;
    padding: 10px;
    margin: 0;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* عناصر القائمة */
.dropdown-item {
    color: var(--gray-color);
    padding: 8px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    color: var(--orange-color);
    background-color: var(--gray-color);
}

/* إظهار القائمة عند الفتح */
.nav-item.open .dropdown-menu {
    display: block;
}

/* أيقونة */
.nav-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.open .nav-link i {
    transform: rotate(45deg); /* تعديل الأيقونة عند الفتح */
}

/* زر التبديل */
.navbar-toggler {
    border: none;
    color: var(--gray-color); /* لون زر التبديل */
    font-size: 1.5rem; /* حجم الأيقونة */
    background: none;
}
.navbar {
    border-bottom: none !important;
    outline: none !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column; /* القوائم عمودية في الشاشات الصغيرة */
        background-color: var(--black-color); /* خلفية سوداء */
        padding: 10px;
        border-radius: 10px; /* حواف مستديرة */
    }

    .nav-link {
        text-align: center;
        margin: 5px 0; /* مسافة عمودية بين الروابط */
    }
}

header {
    position: relative;
    /* background-image: radial-gradient(at 0% 42%, hsla(268, 0%, 32%, 1) 0px, transparent 50%); */
    background-color: var(--black-color);
    color: var(--gray-color);
    padding: 0px 0;
    min-height: 80vh; /* يجعل القسم يأخذ ارتفاع مناسب */
    display: flex;
    align-items: center;
}


.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--gray-color);
}

.hero-text .highlight {
    color: var(--orange-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 5px 30px;
    font-size: 1rem;
    margin-right: 10px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.hero-buttons .btn-primary {
    color: var(--orange-color);
    background-color: var(--gray-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background-color: #e57202;
    color: var(--black-color);

}

.hero-buttons .btn-outline-light {
    border: 2px solid var(--gray-color);
    color: var(--gray-color);
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--gray-color);
    color: var(--black-color);
}



.hero-image {
    position: relative;
    max-width: 45%;
}

.hero-image .main-image {
    max-width: 100%;
    border-radius: 10px;
}

.hero-image .overlay-icon {
    position: absolute;
    bottom: -20px;
}

.hero-image .overlay-icon img {
    width: 70%;
    height: auto;
    animation: mover 5s linear infinite;
}
.about-section {
    padding: 50px 20px 0;
    border-top: 1px solid #ddd;

}

.about-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    max-width: 50%;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--black-color);
}

.about-text h2 .underlined {
    position: relative;
}

.about-text h2 .underlined::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px; /* المسافة بين النص والخط */
    width: 100%;
    height: 1px; /* سماكة الخط */
    background-color: var(--black-color); /* لون الخط */
}

.about-text h2 .highlight {
    color: var(--orange-color);
}


.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--black-color);
}

.about-text p .highlight {
    color: var(--orange-color);
    font-weight: bold;
}

.about-image {
    max-width: 45%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.statistics-section {
    position: relative;
    background-image: url('../img/statisticsBanner-01.png'); /* استبدل بالرابط الخاص بالصورة */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 20px;
    color: var(--white-color);
    text-align: center;
}

.statistics-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.323); /* تأثير تعتيم */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.statistics-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.statistics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--orange-color);
    margin: 0;
}

.stat-text {
    font-size: 1rem;
    color: var(--gray-color);
    margin: 0;

}
.stat-text2 {
    font-size: 1rem;
    color: var(--orange-color);
    margin: 0;

}
/* تصميم الأيقونة العائمة */
.float {
    position: fixed;
    width: 50px; /* عرض الأيقونة */
    height: 50px; /* ارتفاع الأيقونة */
    bottom: 20px; /* المسافة من الأسفل */
    left: 20px; /* المسافة من اليمين */
    background-color: #25d366; /* لون خلفية الأيقونة */
    color: #fff; /* لون الأيقونة */
    border-radius: 50%; /* جعل الأيقونة دائرية */
    text-align: center;
    font-size: 35px; /* حجم الأيقونة */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* إضافة ظل للأيقونة */
    z-index: 1000; /* تحديد طبقة الأيقونة فوق بقية العناصر */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.5s ease; /* تأثير سلس عند التمرير */
}

/* تأثير عند التمرير فوق الأيقونة */
.float:hover {
    background-color: #fff;
    color: #25d366;
    box-shadow: -1px 0 20px 0 #25d366;
  }

/* أيقونة داخل الزر */
.my-float {
    margin-top: 5px; /* محاذاة الأيقونة داخل الزر */
}

.divider {
    width: 2px;
    height: 50px;
    background-color: var(--gray-color);
}

/* تخصيص الرقم الأوسط */
.highlight-stat .stat-number {
    color: var(--white-color);
    font-weight: bold;
}


.services-section {
    background-color: var(--white-color);
    text-align: center;
}



.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--orange-color);
    margin: 10px auto 0;
}

/* الكرت */
.service-card {
    background-color: var(--gray-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%;
}

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

/* الرأس (العنوان + الأيقونة) */
.service-header {
    margin-bottom: 10px;
}

.service-header img {
    width: 30%;
    height: 30%;
}

.service-title {
    color: var(--orange-color);
    font-size: 1.2rem;
    margin: 0;
    padding-left: 10px;
}

/* الوصف */
.service-description {
    font-size: 1rem;
    color: var(--black-color);
    margin: 0;
}

/* التأثير عند hover */
.service-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.93);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.service-card:hover .service-hover {
    opacity: 1;
}

.service-hover h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white-color);
}

.service-hover .learn-more {
    color: var(--white-color);
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    border: 2px solid var(--white-color);
    padding: 5px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.service-hover .learn-more:hover {
    background-color: var(--white-color);;
    color: var(--black-color);
}









.pricing-section {
    background-color: var(--white-color);
    text-align: center;
    padding: 40px 0;
}

.pricing-card {
    background-color: var(--gray-color);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 15px;  /* إضافة مسافة بين الكروت */
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.1);
    background: #000;  /* تخفيف اللون البرتقالي */
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.pricing-card.featured .plan-title,
.pricing-card.featured .plan-price,
.pricing-card.featured .plan-desc,
.pricing-card.featured .plan-features li {
    color: #fff;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--black-color);
    margin: 10px 0;
    white-space: nowrap; /* جعل السعر في سطر واحد */
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-price span {
    font-size: 1.2rem;
    font-weight: normal;
}

.plan-desc {
    font-size: 1rem;
    color: var(--black-color);
    margin-bottom: 20px;
    min-height: 70px; /* لتساوي الارتفاعات */
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.plan-features li {
    font-size: 0.95rem;
    color: var(--black-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--orange-color);
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #fff;
    color: var(--orange-color);
    border: 2px solid var(--orange-color);
}

.btn-primary:hover {
    background-color: var(--black-color);
    color: #fff;
    border-color: var(--black-color);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 10px;
    background-color: #fff;
    color: var(--orange-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.badge-popular .icon {
    margin-right: 5px;
    color: var(--orange-color);
}


/* Slider Styling */
.slider {
    overflow: hidden; /* منع المحتوى الزائد */
    position: relative;
    width: 100%;
}

.slide-track {
    display: flex;
    animation: scroll 10s linear infinite; /* تحريك السلايد تلقائيًا */
}

.slide-track img {
    max-width: 150px;
    margin: 0 10px; /* مسافة بين الصور */
}
.marketing-section {
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.marketing-content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.marketing-image {
    width: 100%;
    height: auto;
    display: block;
}

.marketing-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    font-family: 'Almarai', sans-serif;
}

.marketing-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.marketing-text p {
    font-size: 2rem;
    margin: 0;
}

.overlay-icon2:not(.hero-image .overlay-icon img) {
    position: absolute;
    bottom: 150px;
    right: 5px;
    width: 15%;
    height: 15%;
    animation: mover 1s infinite alternate;

}

.overlay-icon2 img {
    width: 100%;
    height: auto;
}

/* تنسيق عام للفوتر */

/* قسم التواصل */
.contact-us {
    background-color: #f4f4f4; /* لون خلفية فاتح */
    padding: 50px 20px;
    border-bottom: 1px solid #ddd;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}


.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #333;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #ff8303;
    color: #fff;
}

/* الفوتر */
.footer-section {
    background-color: #000; /* لون خلفية داكن للفوتر */
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-bottom {
    font-size: 1rem;
    color: #ccc;
}

/* عنوان الفوتر */
.footer-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--black-color);
    text-align: right;
}

/* تنسيق معلومات التواصل */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    font-size: 1rem;
    color: var(--black-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--orange-color);
}

/* تنسيق عناصر التواصل */
.contact-item h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--black-color);
}

.contact-item p {
    font-size: 1rem;
    color: var(--black-color);
    line-height: 1.5;
}

/* تنسيق وسائل التواصل الاجتماعي */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-color);
    color: var(--black-color);
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
}

/* تنسيق الحقول داخل النموذج */
 .form-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--black-color);
    text-align: right; /* النصوص تبدأ من اليمين */
}

.form-control,
 .form-select {
    border: none !important;
    border-radius: 5px; /* حواف مستديرة للحقول */
    padding: 10px;
    font-size: 0.9rem;
    text-align: right; /* محتوى النص داخل الحقول يبدأ من اليمين */
}

 .form-control:focus,
.form-select:focus {
    border-color: var(--orange-color);
    box-shadow: 0 0 5px rgba(255, 131, 3, 0.5);
}

/* زر الإرسال */
.footerbutton {
    background-color: var(--black-color);
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    width: 100%; /* زر بعرض كامل */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footerbutton:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.footerbutton:active,
.footerbutton:focus {
    background-color: var(--orange-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* تنسيق روابط الفوتر */
.footer-nav {
    padding: 0;
    margin: 0;
}

.footer-nav li {
    display: inline-block;
}

.footer-link {
    color: #fff; /* لون النص */
    font-size: 1rem; /* حجم النص */
    text-decoration: none; /* إزالة التسطير */
    transition: color 0.3s ease; /* تأثير الانتقال عند التمرير */
}

.footer-link:hover {
    color: #ff8303; /* لون النص عند التمرير */
}


/* تحسين الأيقونات */
.contact-info:not(.list-unstyled) i,
.social-icon {
    transition: transform 0.3s;
    text-decoration: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}
.contact-info-inline {
    display: flex; /* يجعل العناصر في سطر واحد */
    flex-wrap: wrap; /* يسمح بتفاف العناصر إذا لم تكن المساحة كافية */
    gap: 20px; /* مسافة بين العناصر */
    align-items: center; /* محاذاة العناصر عموديًا في الوسط */
    justify-content: space-between; /* توزيع العناصر بالتساوي */
    font-size: 1rem;
    color: var(--black-color); /* لون النص */
}

.contact-info-inline span {
    display: flex; /* لجعل الأيقونة والنص في سطر واحد */
    align-items: center;
}

.contact-info-inline i {
    font-size: 1.5rem; /* حجم الأيقونة */
    color: var(--orange-color); /* لون الأيقونة */
    margin-left: 8px; /* مسافة بين الأيقونة والنص */
}

@keyframes mover {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
  }
@media (max-width: 768px) {
    .nav-link.active::after {
        display: none;
    }
}

/* إخفاء وإظهار الأقسام حسب حجم الشاشة */
.hero2 { /* القسم الأول */
    display: none; /* إخفاء القسم افتراضيًا */
}

.header-hero { /* القسم الثاني */
    display: flex; /* إظهار القسم افتراضيًا */
}

/* عند الشاشات الصغيرة (الجوال) */
@media (max-width: 1195px) {
    .hero2 {
        display: flex; /* إظهار القسم الأول */
    }

    .header-hero {
        display: none; /* إخفاء القسم الثاني */
    }
}
.hero2 {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.hero-container2 {
    position: relative;
    width: 90%;
    height: 100%;
}

.hero-image2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-content2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content2 h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}



.hero-content2 p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}





.overlay-icon3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.overlay-icon3 img {
    width: 90px;
    height: auto;
}

/* Pagination Dots */
.pagination-dots {
    position: absolute;
    bottom: 10px;
    display: flex;
    gap: 5px;
    justify-content: center;
    width: 100%;
    z-index: 2;
}



/* Mobile Styles */
@media (max-width: 768px) {
    .hero-content2 h1 {
        font-size: 1.5rem;
    }

    .hero-content2 p {
        font-size: 1rem;
    }


    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
    }
    .overlay-icon3 img {
        width: 90px;
    }
}
/* عند الشاشات الكبيرة */
@media (min-width: 1195px) {
    .hero2 {
        display: none; /* إخفاء القسم الأول */
    }

    .header-hero {
        display: flex; /* إظهار القسم الثاني */
    }
}
@media (max-width: 768px) {
    .statistics-section .container {
        flex-direction: column; /* تحويل الحاوية إلى عمودية */
        align-items: center;
    }

    .statistics-title {
        display: inline-block; /* عرض العنوان في نفس السطر */
        margin-right: 10px; /* مسافة بين العنوان والأرقام */
        font-size: 1.5rem; /* حجم الخط للتناسب مع الجوال */
    }

    .statistics {
        display: inline-flex; /* جعل الأرقام في نفس السطر مع العنوان */
        align-items: center;
        gap: 10px; /* إضافة مسافة بين العناصر */
    }

    .divider {
        width: 2px;
        height: 20px;    }

    .stat-number {
        font-size: 1.2rem; /* حجم أصغر للأرقام */
    }

    .stat-text,
    .stat-text2 {
        font-size: 0.9rem; /* حجم أصغر للنصوص */
    }
    .statistics-section{
        padding: 30px 20px;
    }
    
}
@media (max-width: 768px) {
    .about-section .container {
        flex-direction: column; /* ترتيب عمودي */
        text-align: center; /* توسيط النص */
    }

    .about-text {
        max-width: 100%;
        text-align: center; /* توسيط النص */
    }

    .about-image {
        display: none; /* إخفاء الصورة */
    }

    .about-text h2 {
        font-size: 1.8rem; /* تصغير العنوان */
    }

    .about-text p {
        font-size: 0.9rem; /* تصغير النص */
    }
}
@media (max-width: 768px) {
    .services-section .row {
        display: flex;
        flex-direction: column; /* جعل الكروت عمودية */
        gap: 15px;
    }

    .service-card {
        flex-direction: row; /* ترتيب الأيقونة بجانب النص */
        gap: 10px; /* مسافة بين الأيقونة والعنوان */
    }

    .service-icon {
        flex: 0 0 5; /* الأيقونة تأخذ 5 أعمدة */
    }

    .service-content {
        flex: 0 0 7; /* النصوص تأخذ 7 أعمدة */
    }

    .service-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .service-description {
        font-size: 0.8rem;
        text-align: right;
    }
}
/* استجابة الشاشات الصغيرة */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column; /* جعل القائمة عمودية في الشاشات الصغيرة */
        gap: 10px; /* مسافة أصغر بين الروابط */
    }

    .footer-link {
        font-size: 1.1rem; /* تكبير حجم النص للروابط قليلاً */
    }

    .footer-section {
        padding: 30px 10px; /* تقليل البادينغ في الشاشات الصغيرة */
    }
}

/* استجابة الشاشات الكبيرة */
@media (min-width: 1200px) {
    .footer-nav {
        gap: 30px; /* مسافة أكبر بين الروابط */
    }

    .footer-link {
        font-size: 1rem; /* الحفاظ على حجم النص */
    }

    .footer-section {
        padding: 40px 0; /* بادينغ أكبر للفوتر */
    }
}




/* أيقونات التواصل الاجتماعي */
.social-icons2 {
    display: flex;
    justify-content: center; /* محاذاة الأيقونات في المنتصف */
    gap: 15px; /* مسافة بين الأيقونات */
    margin-top: 15px;
}

.social-icon2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff; /* لون خلفية الأيقونة */
    color: #000; /* لون الأيقونة */
    border-radius: 50%; /* تحويل الأيقونات إلى دوائر */
    font-size: 1.2rem; /* حجم الأيقونة */
    transition: all 0.3s ease;
    text-decoration: none;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* إضافة ظل خفيف */
}

.social-icon2:hover {
    background-color: #ff8303; /* لون الخلفية عند التمرير */
    color: #fff; /* لون النص عند التمرير */
}


/* التصميم للجوال */
@media (max-width: 768px) {
    .social-icons2 {
        gap: 10px; /* تقليل المسافة بين الأيقونات */
    }

    .social-icon2 {
        width: 35px;
        height: 35px; /* تصغير حجم الأيقونات قليلاً */
    }
}
.hero-content2 {
    position: absolute;
    top: 50%;
    right: 10%; /* النصوص تكون من اليمين */
    transform: translateY(-50%);
    color: #fff;
    text-align: right; /* النصوص تتجه لليمين */
}



/* القسم الأساسي */
.hero2 {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

/* الصورة الخلفية */
.hero-image2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* النصوص في القسم */
.hero-content2 {
    position: absolute;
    top: 50%;
    right: 10%; /* النصوص تكون من اليمين */
    transform: translateY(-50%);
    color: #fff;
    text-align: right; /* النصوص تتجه لليمين */
}

/* النصوص */
.hero-content2 h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-content2 .highlight2 {
    color: #f7931e;
}

.hero-content2 p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* الأيقونات */
.overlay-icon3 img {
    width: 90px;
    height: auto;
}

/* تصميم للجوال */
@media (max-width: 768px) {
    .hero-content2 h1 {
        font-size: 1.5rem;
    }

    .hero-content2 p {
        font-size: 1rem;
    }

    .overlay-icon3 img {
        width: 90px;
        animation: mover 1s infinite alternate;

    }
}

/* أيقونات التواصل الاجتماعي */
.social-icons2 {
    display: flex;
    justify-content: center; /* محاذاة الأيقونات في المنتصف */
    gap: 15px; /* مسافة بين الأيقونات */
    margin-top: 15px;
}

.social-icon2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff; /* لون خلفية الأيقونة */
    color: #000; /* لون الأيقونة */
    border-radius: 50%; /* تحويل الأيقونات إلى دوائر */
    font-size: 1.2rem; /* حجم الأيقونة */
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* إضافة ظل خفيف */
}

.social-icon2:hover {
    background-color: #ff8303; /* لون الخلفية عند التمرير */
    color: #fff; /* لون النص عند التمرير */
}

/* التصميم للجوال */
@media (max-width: 768px) {
    .social-icons2 {
        gap: 10px; /* تقليل المسافة بين الأيقونات */
    }

    .social-icon2 {
        width: 35px;
        height: 35px; /* تصغير حجم الأيقونات قليلاً */
    }
}

/* التصميم للشاشات الكبيرة */
@media (min-width: 1200px) {
    .hero-content2 {
        right: 15%; /* تحسين موضع النص */
    }

    .social-icons2 {
        gap: 20px; /* زيادة المسافة بين الأيقونات */
    }
}
.hero-content2 {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    color: #fff;
    text-align: right;
    max-width: 80%; /* يحدد عرض النص ليكون داخل الحدود */
}

.hero-content2 h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.5; /* زيادة تباعد الأسطر لجعل النص أكثر وضوحًا */
    text-align: justify; /* ضبط النص ليتمدد بشكل متساوٍ */
}

.hero-content2 p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: justify; /* ضبط النص ليتمدد بشكل متساوٍ */
}
@media (max-width: 768px) {
    .hero-content2 {
        max-width: 100%; /* تمديد النص أكثر على الشاشات الصغيرة */
        font-size: 0.9rem; /* تصغير النصوص قليلاً لتناسب حجم الجوال */
    }

    .hero-content2 h1 {
        font-size: 1.5rem;
    }

    .hero-content2 p {
        font-size: 1rem;
        line-height: 1.4;
    }
}
@media (min-width: 1200px) {
    .hero2 {
        display: none; /* إخفاء القسم */
    }
}
@media (max-width: 768px) {
    .dropdown-menu {
        position: static; /* التأكد من أن القائمة تظهر تحت العنصر في الجوال */
        width: 100%; /* عرض القائمة بالكامل */
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-item {
        text-align: right; /* محاذاة النص لليمين */
    }
}




.partners-section {
    background-color: #f9f9f9;
    overflow: hidden;
  }
  
  .slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 150px; /* ضبط الارتفاع بناءً على الصور */
  }
  
  .slide-track {
    display: flex;
    width: calc(250px * 14); /* عدد الصور × العرض */
    animation: scroll-left 35s linear infinite; /* تحريك الشريط */
  }
  
  .slide {
    width: 250px; /* ضبط عرض الصورة */
    height: 150px; /* ضبط ارتفاع الصورة */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slide img {
    width: 100%;
    height: auto;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(100%); /* تبدأ من خارج الشاشة يمينًا */
    }
    100% {
      transform: translateX(-100%); /* تنتهي بخروجها من اليسار */
    }
  }
  /* تصميم أولي للـ Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out; /* إضافة أنيميشن سلس */
    padding: 15px 20px; /* مسافة داخلية */
}

/* عند التمرير: جعل الـ Navbar أصغر */
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95); /* تقليل الشفافية */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* إضافة ظل */
    padding: 10px 20px; /* تقليل الحشوة */
}

/* التأثير على العناصر الداخلية */
.navbar .nav-link {
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ff8303; /* لون جديد عند التحويم */
}


