/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x: hidden;
}

:root {
    --primary-color: #0b86c7;
    --secondary-color: #f6851f;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #666;
    --light-gray: #f8f9fa;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* فئات خط Almarai */
.almarai-light {
    font-family: "Almarai", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.almarai-regular {
    font-family: "Almarai", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.almarai-bold {
    font-family: "Almarai", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.almarai-extrabold {
    font-family: "Almarai", sans-serif;
    font-weight: 800;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Almarai', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* تأثيرات الكيرسور المخصصة */
body {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%230b86c7" opacity="0.3"/><circle cx="10" cy="10" r="3" fill="%230b86c7"/></svg>'), auto;
}

a, button, .clickable {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%2328a745" opacity="0.4"/><circle cx="12" cy="12" r="4" fill="%2328a745"/></svg>'), pointer;
}

/* تأثيرات الانتقال العامة */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* تأثيرات الظلال المتحركة */
.floating-shadow {
    position: relative;
}

.floating-shadow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    animation: floatingShadow 4s ease-in-out infinite;
}

@keyframes floatingShadow {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* البطاقات */
.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(11, 134, 199, 0.1), transparent);
    transition: left 0.8s ease;
}

.card:hover::before {
    left: 100%;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* أزرار */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0a7bc4);
    color: var(--light-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a7bc4, var(--primary-color));
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(11, 134, 199, 0.4), 0 0 20px rgba(40, 167, 69, 0.3);
    filter: brightness(1.1);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #e67c1c);
    color: var(--light-color);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e67c1c, var(--secondary-color));
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(246, 133, 31, 0.4), 0 0 20px rgba(11, 134, 199, 0.3);
    filter: brightness(1.1);
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

/* تأثيرات الجلو للعناصر */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.glow-effect::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* تأثيرات النبضة المتقدمة */
.pulse-advanced {
    animation: pulseAdvanced 2s ease-in-out infinite;
}

@keyframes pulseAdvanced {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 134, 199, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(11, 134, 199, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 134, 199, 0);
    }
}

/* شريط التنقل */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: -webkit-fill-available;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    position: relative;
}

.logo-icon {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 80px;
}

/* نحتفظ بأنماط الرمز القديم للتوافق مع الصفحات التي قد تستخدمه */
.horizon-symbol {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: none; /* نخفي الرمز القديم */
}

.horizon-symbol::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--light-color);
    border-radius: 3px;
}

.horizon-symbol::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 15px;
    height: 15px;
    background: var(--light-color);
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo-text span {
    font-size: 14px;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-menu a.active {
    background: rgba(11, 134, 199, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(11, 134, 199, 0.2);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 0; /* إخفاء الخط السفلي للرابط النشط لأن لديه خلفية */
}

/* تصميم القائمة المنسدلة */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.dropdown-toggle:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.dropdown-toggle.active {
    background: rgba(11, 134, 199, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(11, 134, 199, 0.2);
    color: var(--primary-color);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px 8px;
}

.dropdown-menu a:hover {
    background: rgba(11, 134, 199, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-menu a.active {
    background: var(--primary-color);
    color: white;
}

.dropdown-menu a::after {
    display: none;
}

/* أزرار التنقل */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin:10px;
}

/* زر تغيير اللغة */
.language-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
    border: 1px solid rgba(11, 134, 199, 0.2);
    backdrop-filter: blur(10px);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(11, 134, 199, 0.1);
    transform: translateY(-1px);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(11, 134, 199, 0.3);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-text {
    font-size: 12px;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

/* إخفاء زر القائمة في الشاشات الكبيرة */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* قسم البطل الجديد */
.hero {
    height: auto !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #000;
}

/* خلفية الشرائح المتحركة */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(40deg, rgb(11 117 199 / 53%) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* العناصر العائمة */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

.particle-4 {
    top: 60%;
    right: 10%;
    animation-delay: 6s;
}

.particle-5 {
    bottom: 20%;
    right: 40%;
    animation-delay: 1s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* المحتوى الرئيسي */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 4;
    min-height: 70vh;
    padding: 0 20px;
}

.hero-content {
    color: white;
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
}

.hero-main-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.title-line-1,
.title-line-3 {
    color: white;
}

.title-line-2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #0b86c7, #f6851f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(11, 134, 199, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #0b86c7;
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #0b86c7, #f6851f);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(11, 134, 199, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(11, 134, 199, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* الجانب البصري */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.logo-container {
    position: relative;
    z-index: 2;
}

.logo-circle {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: logoRotate 20s infinite linear;
}

.hero-logo {
    width: 120px;
    height: 120px;
    filter: brightness(0) invert(1);
}

.logo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(11, 134, 199, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.floating-images {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-img {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatUpDown 6s infinite ease-in-out;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    top: 20%;
    left: -50px;
    animation-delay: 0s;
}

.img-2 {
    bottom: 20%;
    right: -50px;
    animation-delay: 3s;
}

/* مؤشر التمرير الجديد */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    color: white;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
}

.arrow-line {
    width: 100%;
    height: 20px;
    background: white;
    animation: scrollMove 2s infinite;
}

.arrow-head {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid white;
}

/* نقاط التنقل */
.slideshow-dots {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* الأنيميشنز */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes logoRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes scrollMove {
    0% {
        opacity: 0;
        height: 0;
    }
    50% {
        opacity: 1;
        height: 20px;
    }
    100% {
        opacity: 0;
        height: 40px;
    }
}

/* الاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 20px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .title-line-2 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .logo-circle {
        width: 150px;
        height: 150px;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    
    .floating-img {
        width: 60px;
        height: 60px;
    }
    
    .slideshow-dots {
        bottom: 10px;
        right: 20px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .title-line-2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-circle {
        width: 120px;
        height: 120px;
    }
    
    .hero-logo {
        width: 60px;
        height: 60px;
    }
    
    .floating-img {
        display: none;
    }
}

/* أنيميشنات الدخول */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* الأقسام العامة */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* قسم من نحن */
.about {
    background: var(--light-gray);
}

.about-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-description p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: -webkit-auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-color);
    font-weight: 500;
}

/* قسم الرؤية */
.vision {
    background: linear-gradient(184deg, #0b86c7, #f6851f);
    color: var(--light-color);
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: center;
}

.vision-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.vision-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.icon-circle .icon {
    font-size: 32px;
}

.vision-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vision-text p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

/* قسم القيم */
.values {
    background: linear-gradient(184deg, #0b86c7, #f6851f);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* قسم الدعوة للعمل */
.cta {
    background: linear-gradient(184deg, #0b86c7, #f6851f);
    color: var(--light-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--light-color);
    color: var(--secondary-color);
}

.cta .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--light-color);
    backdrop-filter: blur(10px);
}

.cta .btn-secondary:hover {
    background: var(--light-color);
    color: var(--secondary-color);
}

/* الفوتر */
.footer {
    background: linear-gradient(184deg, #0b86c7, #f6851f);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-logo .logo-text span {
    font-size: 12px;
    opacity: 0.7;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* تأثيرات التمرير المتقدمة */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* تأثيرات الانتقال بين الأقسام */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 2s ease;
    z-index: 1;
    pointer-events: none;
}

section.section-animate::before {
    left: 100%;
}

/* تأثيرات الدخول للعناصر */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* تأثيرات الخلفية المتحركة */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(11, 134, 199, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
    background: rgba(40, 167, 69, 0.1);
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
    background: rgba(255, 193, 7, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* الاستجابة للأجهزة */
/* شاشات الكمبيوتر الكبيرة */
@media (min-width: 1200px) {
    .vision-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .vision-item {
        padding: 30px;
    }
    
    .vision-text h3 {
        font-size: 28px;
    }
    
    .vision-text p {
        font-size: 18px;
        line-height: 1.9;
    }
    
    .icon-circle {
        width: 90px;
        height: 90px;
    }
    
    .icon-circle .icon {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .value-card {
        padding: 50px 40px;
    }
    
    .value-card h4 {
        font-size: 22px;
    }
    
    .value-card p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* شاشات الكمبيوتر المتوسطة */
@media (min-width: 992px) and (max-width: 1199px) {
    .vision-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .vision-item {
        padding: 25px;
    }
    
    .vision-text h3 {
        font-size: 26px;
    }
    
    .vision-text p {
        font-size: 17px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .value-card {
        padding: 45px 35px;
    }
}

/* التابلت */
@media (min-width: 769px) and (max-width: 991px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .vision-item {
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .vision-text h3 {
        font-size: 24px;
    }
    
    .vision-text p {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .value-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    /* تحسين الهيدر للجوال */
    .navbar {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
        padding: 0;
    }
    
    .nav-content {
        padding: 10px 0;
        position: relative;
    }
    
    /* تحسين اللوجو للجوال */
    .logo {
        gap: 8px;
        z-index: 1001;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain;
    }
    
    .logo-text h1 {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
    .logo-text span {
        font-size: 10px;
        display: block;
        line-height: 1.2;
    }
    
    /* تحسين قائمة التنقل للجوال */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* تحسين انتقال القائمة */
    @keyframes slideInFromLeft {
        from {
            left: -100%;
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            left: 0;
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* إخفاء القائمة عند الإغلاق */
    .nav-menu:not(.active) {
        left: -100%;
        opacity: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        list-style: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
        text-decoration: none;
        color: var(--dark-color);
    }
    
    .nav-menu a:hover {
        background: rgba(11, 134, 199, 0.1);
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(11, 134, 199, 0.2);
        color: var(--primary-color);
    }
    
    .nav-menu a.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 6px 25px rgba(11, 134, 199, 0.4);
    }
    
    .nav-menu a.active:hover {
        transform: translateY(-2px) scale(1.02);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* تصميم الـ dropdown للجوال */
    .dropdown {
        width: 100%;
        position: relative;
    }
    
    .dropdown > a {
        position: relative;
    }
    
    .dropdown > a::after {
        content: '▼';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
        background: linear-gradient(135deg, rgba(240, 245, 250, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
        border: 1px solid rgba(11, 134, 199, 0.12);
        margin-top: 8px;
        border-radius: 10px;
        padding: 8px;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 8px;
    }
    
    .dropdown-menu a {
        padding: 10px 14px;
        margin: 3px 0;
        font-size: 13px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        border: 1px solid rgba(11, 134, 199, 0.08);
        display: block;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .dropdown-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(11, 134, 199, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(11, 134, 199, 0.08);
        border-color: var(--primary-color);
        transform: translateX(3px);
        box-shadow: 0 3px 12px rgba(11, 134, 199, 0.15);
        color: var(--primary-color);
    }
    
    .dropdown-menu a:hover::before {
        left: 100%;
    }
    
    .dropdown-arrow {
        display: none;
    }
        box-shadow: 0 12px 35px rgba(11, 134, 199, 0.5);
    }

    /* تحسين زر القائمة */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        background: rgba(11, 134, 199, 0.1);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .nav-toggle:hover {
        background: rgba(11, 134, 199, 0.2);
        border-color: var(--primary-color);
        transform: scale(1.05);
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2.5px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 2px 0;
    }

    .nav-toggle.active {
        background: rgba(11, 134, 199, 0.2);
        border-color: var(--primary-color);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--secondary-color);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--secondary-color);
    }
    
    /* إضافة تأثير الخلفية عند فتح القائمة */
     .nav-menu.active::before {
         content: '';
         position: fixed;
         top: 0;
         left: 0;
         width: 100vw;
         height: 100vh;
         background: rgba(0, 0, 0, 0.3);
         z-index: -1;
         animation: fadeIn 0.3s ease;
     }
     
     /* تحسين أزرار الإجراءات للجوال */

     
     /* تحسين زر تغيير اللغة للجوال */
     .language-switcher {
         background: rgba(255, 255, 255, 0.9);
         border: 1px solid rgba(11, 134, 199, 0.2);
         padding: 4px;
         border-radius: 10px;
         width: 100%;
         max-width: 200px;
         justify-content: center;
         gap: 4px;
     }
     
     .lang-btn {
         padding: 8px 12px;
         font-size: 12px;
         border-radius: 6px;
         flex: 1;
         min-width: 0;
         transition: all 0.3s ease;
     }
     
     .lang-btn.active {
         background: var(--primary-color);
         color: white;
         box-shadow: 0 2px 8px rgba(11, 134, 199, 0.3);
     }
     
     .lang-text {
         display: inline;
         font-size: 11px;
         margin-left: 4px;
     }
     
     .lang-flag {
         font-size: 14px;
     }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

    /* تحسين قسم الرؤية للجوال */
    .vision {
        padding: 60px 0;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vision-item {
        flex-direction: column;
        text-align: center !important;
        align-items: center !important;
        gap: 20px;
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        backdrop-filter: blur(15px);
    }
    
    .vision-text h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .vision-text p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle .icon {
        font-size: 28px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* تحسين قسم القيم للجوال */
    .values {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 35px 25px;
        margin: 0 10px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .value-card h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .value-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .partners-slider-container {
        width: 100%;
        overflow: hidden;
        padding: 10px 0;
    }
    
    .partners-track {
        display: flex;
        flex-wrap: nowrap;
        animation: none;
    }
    
    .partner-item {
        width: 150px;
        height: 90px;
        margin: 0 10px;
    }
    
    .partners .section-header h2 {
        font-size: 28px;
    }
    
    .partners .section-header p {
        font-size: 16px;
    }
    
    .partners-nav {
        width: 30px;
        height: 30px;
        margin: 0 5px;
    }
    
    .nav-arrow {
        font-size: 14px;
    }
}

/* الهواتف الصغيرة */
@media (max-width: 480px) {
    .vision {
        padding: 40px 0;
    }
    
    .vision-item {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .vision-text h3 {
        font-size: 20px;
    }
    
    .vision-text p {
        font-size: 14px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle .icon {
        font-size: 24px;
    }
    
    .values {
        padding: 40px 0;
    }
    
    .value-card {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .value-card h4 {
        font-size: 17px;
    }
    
    .value-card p {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

/* الهواتف الصغيرة جداً */
@media (max-width: 360px) {
    .vision-item {
        padding: 15px 10px;
    }
    
    .vision-text h3 {
        font-size: 18px;
    }
    
    .vision-text p {
        font-size: 13px;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .value-card h4 {
        font-size: 16px;
    }
    
    .value-card p {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 22px;
    }
}

/* قسم الشركاء */
.partners {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.partners .section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* تنسيق سلايدر Swiper */
.partners-carousel {
    padding: 20px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partner-item {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 15px;
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* تنسيق أزرار التنقل */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* تنسيق نقاط التنقل */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
     background-color: var(--primary-color);
     width: 25px;
     border-radius: 5px;
 }

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* تم إزالة تنسيقات أزرار التنقل الخاصة بـ Owl Carousel */

/* تنسيق نقاط التنقل */
.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    transition: var(--transition);
    cursor: pointer;
}

.owl-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.owl-dot:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 134, 199, 0.3);
}

/* إزالة الأنماط القديمة */
/* .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* إزالة الأنيميشن القديم */
/* @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
} */

/* تنسيقات متجاوبة للشركاء */
@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }
    
    .partner-item {
        height: 100px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .partners {
        padding: 40px 0;
    }
    
    .partners .section-header h2 {
        font-size: 24px;
    }
    
    .partners .section-header p {
        font-size: 14px;
    }
}

/* قسم الخريطة التفاعلية */
.interactive-map {
    padding: 80px 0;
    background: linear-gradient(184deg, #0b86c7, #f6851f);
    position: relative;
    overflow: hidden;
}

.interactive-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.1;
    z-index: 1;
}

.interactive-map .container {
    position: relative;
    z-index: 2;
}

.interactive-map .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.interactive-map .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.interactive-map .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0b86c7, #28a745, #dc3545);
    border-radius: 2px;
}

.interactive-map .section-header p {
    font-size: 1.2rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(11, 134, 199, 0.05) 0%, transparent 70%);
    animation: mapGlow 8s ease-in-out infinite;
}

@keyframes mapGlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.interactive-svg-map {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.interactive-svg-map:hover {
    transform: scale(1.02);
    box-shadow: inset 0 6px 30px rgba(0, 0, 0, 0.15);
}

/* تصميم الدول */
.country {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    transform-origin: center;
}

.country:hover {
    fill: #e8f4fd !important;
    stroke: #0b86c7 !important;
    stroke-width: 3 !important;
    transform: scale(1.05);
    filter: drop-shadow(4px 4px 12px rgba(11, 134, 199, 0.3));
    animation: countryGlow 2s ease-in-out infinite;
}

@keyframes countryGlow {
    0%, 100% {
        filter: drop-shadow(4px 4px 12px rgba(11, 134, 199, 0.3));
    }
    50% {
        filter: drop-shadow(6px 6px 20px rgba(11, 134, 199, 0.5));
    }
}

.country.turkey:hover {
    fill: #e3f2fd !important;
    stroke: #0b86c7 !important;
}

.country.syria:hover {
    fill: #e8f5e8 !important;
    stroke: #28a745 !important;
}

.country.iraq:hover {
    fill: #fdeaea !important;
    stroke: #dc3545 !important;
}

/* النقاط التفاعلية */
.location-point {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.location-point::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(11, 134, 199, 0.3);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
    pointer-events: none;
}

.location-point::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(11, 134, 199, 0.2);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite 0.5s;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.location-point:hover .point-circle {
    r: 12;
    filter: drop-shadow(0 0 10px currentColor);
    animation: advancedPulse 1.5s ease-in-out infinite;
}

@keyframes advancedPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.location-point:hover .point-ring {
    stroke-width: 3;
    animation: ringGlow 2s ease-in-out infinite;
}

@keyframes ringGlow {
    0%, 100% {
        stroke-opacity: 0.5;
    }
    50% {
        stroke-opacity: 1;
    }
}

.point-circle {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatingPoint 3s ease-in-out infinite;
}

@keyframes floatingPoint {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* تسميات المدن والدول */
.city-label, .country-label {
    font-family: 'Almarai', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-origin: center;
}

.city-label:hover, .country-label:hover {
    font-size: 16px;
    fill: #0b86c7;
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 4px rgba(11, 134, 199, 0.4));
    animation: labelBounce 0.6s ease-out;
}

@keyframes labelBounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.1);
    }
}

/* معلومات المواقع */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    opacity: 0.7;
    transform: translateX(20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-card.active {
    opacity: 1;
    transform: translateX(0);
    border-color: #0b86c7;
    box-shadow: 0 10px 30px rgba(11, 134, 199, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.info-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: #495057;
    padding: 5px 0;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #28a745;
    font-weight: bold;
    transition: all 0.3s ease;
}

.info-card li:hover {
    color: #0b86c7;
    transform: translateX(-5px);
}

.info-card li:hover::before {
    color: #0b86c7;
    transform: scale(1.2);
}

/* إحصائيات المواقع */
.locations-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(11, 134, 199, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0b86c7;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b86c7;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #2c3e50;
    transform: scale(1.1);
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
    font-size: 1rem;
}

/* التصميم المتجاوب */
@media (max-width: 992px) {
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .interactive-svg-map {
        max-height: 300px;
    }
    
    .location-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .interactive-map {
        padding: 60px 0;
    }
    
    .interactive-map .section-header h2 {
        font-size: 2rem;
    }
    
    .map-container {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .locations-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .interactive-map .section-header h2 {
        font-size: 1.8rem;
    }
    
    .interactive-map .section-header p {
        font-size: 1rem;
    }
    
    .map-container {
        padding: 20px;
    }
    
    .locations-stats {
        grid-template-columns: 1fr;
    }
    
    .city-label, .country-label {
        font-size: 12px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card h4 {
        font-size: 1.1rem;
    }
}

/* قسم القطاعات والخدمات */
.sectors {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.sectors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

/* أنماط قسم تواصل معنا */
.contact-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.contact-us .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* شبكة معلومات الاتصال */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(11, 134, 199, 0.2);
}

.contact-card:active {
    transform: translateY(-5px) scale(1.01);
    transition: all 0.1s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.phone-card .contact-icon {
    background: linear-gradient(135deg, #0b86c7, #0056b3);
    color: white;
}

.email-card .contact-icon {
    background: linear-gradient(135deg, #28a745, #155724);
    color: white;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-link {
    color: #495057;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0b86c7, #28a745);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: #0b86c7;
}

.contact-link:hover::after {
    width: 100%;
}

/* قسم وسائل التواصل الاجتماعي */
.social-media-section {
    text-align: center;
    margin-bottom: 50px;
}

.social-media-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.social-media-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0b86c7, #28a745);
    border-radius: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: 1;
}

.social-link svg,
.social-link span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.08) rotate(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(11, 134, 199, 0.3);
    animation: socialBounce 0.6s ease-out;
}

.social-link:active {
    transform: translateY(-3px) scale(1.03);
    transition: all 0.1s ease;
}

@keyframes socialBounce {
    0% { transform: translateY(-8px) scale(1.08) rotate(2deg); }
    50% { transform: translateY(-12px) scale(1.1) rotate(-1deg); }
    100% { transform: translateY(-8px) scale(1.08) rotate(2deg); }
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.social-link:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover svg,
.social-link:hover span {
    color: white;
}

/* ألوان وسائل التواصل */
.facebook::before {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.instagram::before {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.twitter::before {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.linkedin::before {
    background: linear-gradient(135deg, #0077b5, #005885);
}

/* رسالة تشجيعية */
.contact-message {
    background:linear-gradient(45deg, #0b86c7, #f6851f);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: contactGlow 4s ease-in-out infinite;
}

@keyframes contactGlow {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.message-content {
    position: relative;
    z-index: 2;
}

.message-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* تأثيرات الحركة */
@keyframes contactFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.contact-card.animate {
    animation: contactFadeInUp 0.6s ease forwards;
}

.social-link.animate {
    animation: contactBounce 0.8s ease forwards;
}

/* التجاوب مع الشاشات */
@media (max-width: 768px) {
    .contact-us {
        padding: 60px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .contact-card {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .social-link span {
        display: none;
    }
    
    .contact-message {
        padding: 30px 20px;
    }
    
    .message-content h4 {
        font-size: 1.3rem;
    }
    
    .message-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
}

/* نهاية أنماط قسم تواصل معنا */

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.sector-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 134, 199, 0.1);
    transform: translateY(0) scale(1);
}

.sector-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(11, 134, 199, 0.1), transparent, rgba(40, 167, 69, 0.1), transparent);
    animation: rotateGlow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.sector-card:hover::after {
    opacity: 1;
}

@keyframes rotateGlow {
    100% { transform: rotate(360deg); }
}

.sector-card > * {
    position: relative;
    z-index: 2;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.sector-card:hover::before {
    transform: scaleX(1);
}

.sector-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(11, 134, 199, 0.3);
    border-color: var(--primary-color);
}

.sector-card:active {
    transform: translateY(-5px) scale(1.02);
    transition: all 0.1s ease;
}

/* تأثيرات الأيقونات المتحركة */
.sector-card:hover .sector-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 10px 20px rgba(11, 134, 199, 0.3));
}

.sector-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(11, 134, 199, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.sector-card:hover .sector-icon::after {
    width: 80px;
    height: 80px;
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.sector-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: var(--transition);
}

.sector-card:hover .sector-icon::before {
    transform: translateX(100%);
}

.sector-icon .icon {
    font-size: 32px;
    filter: grayscale(1) brightness(0) invert(1);
}

.sector-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.sector-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.sector-objectives {
    list-style: none;
    padding: 0;
}

.sector-objectives li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.5;
    transition: var(--transition);
}

.sector-objectives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 12px;
}

.sector-objectives li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* تأثيرات الحركة للقطاعات */
.sector-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.sector-card:nth-child(1) { animation-delay: 0.1s; }
.sector-card:nth-child(2) { animation-delay: 0.2s; }
.sector-card:nth-child(3) { animation-delay: 0.3s; }
.sector-card:nth-child(4) { animation-delay: 0.4s; }
.sector-card:nth-child(5) { animation-delay: 0.5s; }
.sector-card:nth-child(6) { animation-delay: 0.6s; }
.sector-card:nth-child(7) { animation-delay: 0.7s; }
.sector-card:nth-child(8) { animation-delay: 0.8s; }
.sector-card:nth-child(9) { animation-delay: 0.9s; }
.sector-card:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تنسيقات متجاوبة للقطاعات */
@media (max-width: 768px) {
    .sectors {
        padding: 60px 0;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .sector-card {
        padding: 30px 20px;
    }
    
    .sector-icon {
        width: 60px;
        height: 60px;
    }
    
    .sector-icon .icon {
        font-size: 24px;
    }
    
    .sector-card h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .sectors {
        padding: 40px 0;
    }
    
    .sector-card {
        padding: 25px 15px;
    }
    
    .sector-icon {
        width: 50px;
        height: 50px;
    }
    
    .sector-icon .icon {
        font-size: 20px;
    }
    
    .sector-card h4 {
        font-size: 16px;
    }
    
    .sector-card p {
        font-size: 14px;
    }
    
    .sector-objectives li {
        font-size: 13px;
    }
}

/* صفحة الشراكات */
.partnerships-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 177px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.partnerships-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.partnerships-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.partnerships-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.partnerships-hero .hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

.partners-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    text-align: center;
    margin-bottom: 20px;
}

.partner-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
    background: #f8f9fa;
    padding: 20px;
}

.partner-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.partner-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.partnership-type {
    display: flex;
    justify-content: flex-start;
}

.type-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.type-badge.strategic {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.type-badge.operational {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.type-badge.funding {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.partnership-types {
    padding: 80px 0;
    background: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.type-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.type-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.type-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.type-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.partnerships-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(7, 7, 7);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.become-partner {
    padding: 80px 0;
    background: #f8f9fa;
}

.partner-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-visual {
    text-align: center;
}

.partnership-illustration {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.handshake-icon {
    font-size: 4rem;
    color: white;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* الاستجابة للشاشات الصغيرة - الشراكات */
@media (max-width: 768px) {
    .partnerships-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .partnerships-hero .hero-description {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-cta {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    /* تحسين الهيدر للشاشات الصغيرة جداً */
    .navbar {
        padding: 0 10px;
    }
    
    .nav-content {
        padding: 8px 0;
    }
    
    .logo {
        gap: 6px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text span {
        font-size: 9px;
    }
    
    .nav-toggle {
        width: 40px;
        height: 40px;
    }
    
    .nav-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 20px 15px;
    }
    
    .nav-menu ul {
        max-width: 260px;
        gap: 12px;
    }
    
    .nav-menu a {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .nav-actions {
        max-width: 260px;
        margin-top: 20px;
        gap: 10px;
    }
    
    .language-switcher {
        max-width: 180px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .lang-text {
        font-size: 10px;
    }
    
    .lang-flag {
        font-size: 12px;
    }
    
    .partnerships-hero .hero-title {
        font-size: 2rem;
    }
    
    .partners-section,
    .partnership-types,
    .partnerships-stats,
    .become-partner {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* أنماط نموذج الاتصال */
.contact-form-section {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 134, 199, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-form-section h3 {
        font-size: 1.5rem;
    }
}

/* تأثيرات تفاعلية للنموذج */
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #ced4da;
    transform: translateY(-1px);
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #28a745;
    background-color: #f8fff8;
}
