
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}
/* الأساسيات */
:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #f97316;
    --light-color: #ffffff;
    --dark-color: #1f2937;
    --gray-color: #6b7280;
    --light-gray: #f9fafb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
    html[lang="en"] {
        direction: ltr;
        text-align: left;
    }

        html[lang="en"] .navbar,
        html[lang="en"] .hero-content,
        html[lang="en"] .features-container,
        html[lang="en"] .footer-content {
            text-align: left;
        }

        html[lang="en"] .nav-menu {
            margin-right: 0;
            margin-left: auto;
        }

        html[lang="en"] .language-switcher {
            margin-left: 0;
            margin-right: 20px;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Open Sans', sans-serif;
}

/* زر تبديل اللغة */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
}

    .lang-btn:hover {
        background-color: var(--secondary-color);
    }

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 100;
}

.language-switcher:hover .language-dropdown {
    display: block;
}

.lang-option {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 15px;
    text-align: right;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

    .lang-option:hover {
        background-color: #f0f0f0;
    }

.flag-icon {
    font-size: 1.2rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
      padding-top: 80px; /* مساحة للشريط الثابت */
}


body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* حاوية الشريط المتحرك */
.marquee-container {
    width: 100%;
    overflow: hidden; /* هذا هو السر لإخفاء الصور خارج الشاشة */
    background-color:#3498db;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-top: 30px;
}

/* المحتوى الذي سيتم تحريكه */
.marquee-content {
    display: flex; /* لجعل الصور بجانب بعضها البعض */
    animation: scroll-left 15s linear infinite;
    width: max-content; /* لجعل العرض يتطابق مع محتواه */
}

/* عنصر كل صورة */
.marquee-item {
    flex-shrink: 0; /* لمنع الصور من الانكماش */
    margin: 0 15px; /* مسافة بين الصور */
}

    .marquee-item img {
        height: 200px; /* ارتفاع ثابت للصور */
        width: auto; /* عرض تلقائي للحفاظ على نسبة العرض إلى الارتفاع */
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

        /* تأثير عند تمرير الماوس على الصورة */
        .marquee-item img:hover {
            transform: scale(1.05);
        }

/* إيقاف الحركة مؤقتاً عند تمرير الماوس على الشريط */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* تعريف حركة التحريك (keyframes) */
@keyframes scroll-left {
    /* من البداية (الموقع الأصلي) */
    from {
        transform: translateX(0);
    }
    /* إلى النهاية (ننتقل مسافة تعادل عرض نصف المحتوى) */
    to {
        transform: translateX(-50%);
    }
}

/* أقسام المحتوى */
.content-section {
    padding: 100px 0;
}

.section-1 {
    background-color: var(--light-color);
}

.section-2 {
    background-color: var(--light-gray);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

    .content-wrapper.reverse {
        direction: ltr;
    }

        .content-wrapper.reverse .text-side {
            direction: rtl;
        }

.image-side, .text-side {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

    .image-frame:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.frame-left::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 10px;
    z-index: 2;
}

.frame-right::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    z-index: 2;
}

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    z-index: 2;
}

.image-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.label-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
}

.label-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.content-text {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--gray-color);
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.btn-content {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
}

    .btn-content:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    }


/* إعدادات أساسية */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');
/* حاوية الفاصل */
.wave-divider-container {
    width: 100%;
    height: 100px; /* ارتفاع الفاصل */
    margin: 50px 0;
    overflow: hidden; /* لإخفاء أي جزء زائد من الموجة */
    position: relative;
}

/* شكل الموجة */
.wave-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    /* مسارات الموجة */
    .wave-divider path {
        stroke: #1a73e8; /* لون الموجة */
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        /* إعدادات حركة الرسم */
        stroke-dasharray: 1000; /* طول الخط المتقطع */
        stroke-dashoffset: 1000; /* إخفاء الخط في البداية */
        opacity: 0;
        transition: stroke-dashoffset 2s ease-in-out, opacity 0.5s ease-in-out;
    }

    /* الكلاس الذي سيتم إضافته بواسطة JavaScript لبدء الحركة */
    .wave-divider.animate path {
        stroke-dashoffset: 0; /* إظهار الخط بالكامل */
        opacity: 1;
    }

        /* لجعل كل مسار يبدأ الحركة بتأخير بسيط */
        .wave-divider.animate path:nth-child(1) {
            transition-delay: 0s;
        }

        .wave-divider.animate path:nth-child(2) {
            transition-delay: 0.3s;
        }

        .wave-divider.animate path:nth-child(3) {
            transition-delay: 0.6s;
        }
          /* شريط التنقل */
.navbar {
    background-color: #2c3e50;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

    .nav-menu > li {
        position: relative;
    }

        .nav-menu > li > a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

            .nav-menu > li > a:hover {
                background-color: #34495e;
                color: #3498db;
            }

            .nav-menu > li > a i {
                font-size: 0.8rem;
                transition: transform 0.3s ease;
            }

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 220px;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #3498db;
    padding-right: 1.5rem;
}

.dropdown-menu li a i {
    width: 20px;
    color: #3498db;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media screen and (max-width: 992px) {
    .nav-menu {
        gap: 0.5rem;
    }

        .nav-menu > li > a {
            padding: 0.5rem;
            font-size: 0.9rem;
        }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2c3e50;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

        .nav-menu.active {
            display: flex;
        }

        .nav-menu > li {
            width: 100%;
        }

            .nav-menu > li > a {
                padding: 1rem;
                border-bottom: 1px solid #34495e;
                justify-content: space-between;
            }

            .nav-menu > li.active > a i {
                transform: rotate(180deg);
            }

    .dropdown-menu {
        position: static;
        background-color: #34495e;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu li a {
        color: white;
        padding: 0.8rem 2rem;
        border-bottom: 1px solid #2c3e50;
    }

        .dropdown-menu li a:hover {
            background-color: #2c3e50;
            color: #3498db;
        }

        .dropdown-menu li a i {
            color: #3498db;
        }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo a {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 30px;
    }
}

/* قسم الهيرو */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.welcome-text {
    color: var(--light-color);
}

.welcome-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.text-part {
    display: inline-block;
    animation: bounce 2s infinite;
}

    .text-part:nth-child(1) {
        animation-delay: 0s;
    }

    .text-part:nth-child(3) {
        animation-delay: 0.5s;
    }

.ampersand {
    color: var(--secondary-color);
    font-size: 5rem;
    font-weight: 300;
    animation: rotate 4s infinite linear;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.welcome-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .feature i {
        color: var(--secondary-color);
        font-size: 1.2rem;
    }

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    font-family: 'Cairo', sans-serif;
}

.btn-hero-primary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-hero-primary:hover {
    background-color: #ea580c;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* الصورة المتحركة */
.hero-image-container {
    position: relative;
}

.animated-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(1deg);
    }

    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    background: linear-gradient(45deg, #667eea, #764ba2, #f97316);
    border-radius: var(--border-radius);
    filter: blur(20px);
    opacity: 0.5;
    z-index: 1;
    animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        filter: blur(15px);
    }

    100% {
        opacity: 0.6;
        filter: blur(25px);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: floatElement 8s infinite ease-in-out;
}

.el1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.el2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.el3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(10px, -15px) scale(1.1);
    }

    50% {
        transform: translate(-5px, 10px) scale(0.9);
    }

    75% {
        transform: translate(-15px, -5px) scale(1.05);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 2;
}

  
/* قسم الشعار */
.slogan-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.slogan-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.slogan-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.slogan-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

    .highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: rgba(79, 70, 229, 0.2);
        z-index: -1;
    }

.slogan-text {
    font-size: 1.3rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto 30px;
}

.slogan-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* أقسام المحتوى */
.content-section {
    padding: 100px 0;
}

.section-1 {
    background-color: var(--light-color);
}

.section-2 {
    background-color: var(--light-gray);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

    .content-wrapper.reverse {
        direction: ltr;
    }

        .content-wrapper.reverse .text-side {
            direction: rtl;
        }

.image-side, .text-side {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

    .image-frame:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.frame-left::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 10px;
    z-index: 2;
}

.frame-right::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    z-index: 2;
}

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    z-index: 2;
}

.image-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 2;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.label-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
}

.label-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.content-text {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--gray-color);
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.btn-content {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
}

    .btn-content:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    }

/* الشعارات العائمة */
.floating-slogans {
    padding: 80px 0;
    background-color: #7ecef6 ;
}

.slogans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.floating-slogan {
    text-align: center;
    padding: 40px 20px;
    background-color: #ceabfb;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: floatUpDown 4s infinite ease-in-out;
}

    .floating-slogan:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-slogan i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.floating-slogan h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.floating-slogan p {
    color: var(--gray-color);
}


/* قسم الاتصال */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-text {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-family: 'Cairo', sans-serif;
        font-size: 1rem;
        transition: var(--transition);
        background-color: var(--light-color);
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

.btn-submit {
    width: 100%;
    padding: 17px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
}

    .btn-submit:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    }

/* تنسيقات التذييل */
.site-footer {
    background: linear-gradient(135deg, #1a2b3c 0%, #2c3e50 100%);
    color: #fff;
    padding: 70px 0 30px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
    left: auto !important;
    right: 0 !important;
    left: auto;
  
}

    .footer-column h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(to left, #000000, #2ecc71);
    }

.footer-logo {
    font-size: 2.2rem;
    font-weight:600;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(to right,#ffffff,#ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-column p {
    line-height: 1.8;
    color: #d1d8e0;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: #d1d8e0;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

        .footer-links a i {
            margin-left: 10px;
            font-size: 0.9rem;
            transition: transform 0.3s;
        }

        .footer-links a:hover {
            color: #3498db;
            padding-right: 8px;
        }

            .footer-links a:hover i {
                transform: translateX(-5px);
            }

.contact-list {
    list-style: none;
}

    .contact-list li {
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
    }

    .contact-list i {
        margin-left: 15px;
        color: #3498db;
        font-size: 1.2rem;
        margin-top: 3px;
        min-width: 25px;
    }

.social-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
}

    .social-box h4 {
        margin-bottom: 20px;
        color: #fff;
        font-size: 1.2rem;
    }

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: #fff;
        font-size: 1.3rem;
        transition: all 0.3s ease;
    }

        .social-icons a:hover {
            transform: translateY(-5px);
        }

        .social-icons a.facebook:hover {
            background: #3b5998;
        }

        .social-icons a.twitter:hover {
            background: #1da1f2;
        }

        .social-icons a.instagram:hover {
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
        }

        .social-icons a.linkedin:hover {
            background: #0077b5;
        }

        .social-icons a.youtube:hover {
            background: #ff0000;
        }

.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
}

    .newsletter-box h4 {
        margin-bottom: 15px;
        color: #fff;
        font-size: 1.2rem;
    }

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .newsletter-form input {
        padding: 15px;
        border: none;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        outline: none;
        font-size: 1rem;
    }

        .newsletter-form input::placeholder {
            color: #aaa;
        }

    .newsletter-form button {
        background: linear-gradient(to left, #3498db, #2ecc71);
        color: white;
        border: none;
        padding: 15px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
        }

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.copyright {
    line-height: 1.6;
}

    .copyright a {
        color: #3498db;
        text-decoration: none;
        font-weight: 600;
    }

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

    .footer-nav a {
        color: #d1d8e0;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-nav a:hover {
            color: #3498db;
        }

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

    .payment-methods i {
        font-size: 2rem;
        color: #d1d8e0;
        opacity: 0.8;
    }

/* تأثيرات التمرير */
.scroll-top {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

    .scroll-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }


/* زر العودة للأعلى */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--primary-dark);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    }
/* التجاوب مع الشاشات المختلفة */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .welcome-title {
        font-size: 3.5rem;
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .content-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

        .content-wrapper.reverse {
            direction: rtl;
        }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .welcome-title {
        font-size: 2.8rem;
        flex-direction: column;
        gap: 5px;
    }

    .ampersand {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .slogan-title {
        font-size: 2.5rem;
    }

    .section-title,
    .contact-title {
        font-size: 2.2rem;
    }

    .content-title {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 2.2rem;
    }

    .slogan-title {
        font-size: 2rem;
    }

    .section-title,
    .contact-title {
        font-size: 1.8rem;
    }

    .content-title {
        font-size: 1.6rem;
    }

    .feature {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
}
/* تنسيق المعرض الأساسي */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
    padding: 20px;
    max-width: 1200px;
}

.gallery-item {
    flex: 1 0 200px;
    max-width: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

/* تنسيق Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    position: relative;
    text-align: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* أزرار التحكم */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1001;
}

    .close-btn:hover {
        color: #ff6b6b;
    }

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 15px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.prev-btn {
    right: 20px;
}

.next-btn {
    left: 20px;
}

    .prev-btn:hover, .next-btn:hover {
        background-color: rgba(255,255,255,0.2);
    }

/* معلومات الصورة */
.image-info {
    color: white;
    padding: 15px;
    text-align: center;
    background-color: rgba(0,0,0,0.7);
    border-radius: 0 0 5px 5px;
    margin-top: 10px;
}

#image-caption {
    font-size: 18px;
    margin-bottom: 5px;
}

#image-index {
    font-size: 14px;
    color: #ccc;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 0 150px;
        max-width: 200px;
    }

        .gallery-item img {
            height: 150px;
        }

    .prev-btn, .next-btn {
        font-size: 24px;
        padding: 12px;
    }

    .close-btn {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }
}
