    /* ===== Slider Container profile ===== */
    .image-slider {
        width: 100%;
        max-width: 1200px;
        margin: 90px auto 0;
        padding-top: 80px;
        position: relative;
    }

    .slider-container {
        position: relative;
        width: 100%;
        height: 600px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        background: #fff;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
    }

    /* الشرائح */
    .slides {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease;
    }

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(10px);
        transition: filter 0.8s ease;
    }

    .slide img.loaded {
        filter: blur(0);
    }

    /* تسميات الشرائح */
    .slide-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        padding: 40px 30px 30px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.6s ease 0.3s;
    }

    .slide.active .slide-caption {
        transform: translateY(0);
        opacity: 1;
    }

    .slide-caption h3 {
        font-size: 2rem;
        margin-bottom: 10px;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .slide-caption p {
        font-size: 1.1rem;
        opacity: 0.9;
        line-height: 1.6;
    }

    /* أزرار التنقل */
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .slider-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1.1);
    }

    .prev-btn {
        right: 20px;
    }
    .next-btn {
        left: 20px;
    }

    /* نقاط التنقل */
    .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: white;
        transform: scale(1.2);
    }

    .dot:hover {
        background: white;
        transform: scale(1.1);
    }

    /* تجاوب */
    @media (max-width: 768px) {
        .slider-container { height: 400px; border-radius: 15px; }
        .slide-caption { padding: 25px 20px 20px; }
        .slide-caption h3 { font-size: 1.5rem; }
        .slide-caption p { font-size: 1rem; }
        .slider-btn { width: 50px; height: 50px; font-size: 1.2rem; }
        .prev-btn { right: 10px; }
        .next-btn { left: 10px; }
    }

    @media (max-width: 480px) {
        .slider-container { height: 300px; }
        .slide-caption h3 { font-size: 1.2rem; }
        .slide-caption p { font-size: 0.9rem; }
    }

        
        /* قسم الشركة */
        .about-section {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 3rem;
            position: relative;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 2px;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            line-height: 1.8;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #444;
        }
        
        .highlight {
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* ====== زر "المزيد" في قسم عن الشركة ====== */
        .about-btn {
        display: inline-block;
        margin-top: 1rem;
        padding: 12px 28px;
        background: linear-gradient(135deg, #1a3d7c, #ab2424);
        color: #fff;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .about-btn:hover {
        background: linear-gradient(135deg, #ab2424, #1a3d7c);
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
        }

        .about-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }


        /* ===== قسم وكيل الشركة ===== */
        .agent-section {
        padding: 6rem 1.5rem;
        background: linear-gradient(135deg, rgba(26, 61, 124, 0.05), rgba(171, 36, 36, 0.08));
        text-align: center;
        position: relative;
        overflow: hidden;
        }

        /* خطوط زخرفية خفيفة في الخلفية */
        .agent-section::before,
        .agent-section::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(26, 61, 124, 0.1);
        filter: blur(60px);
        z-index: 0;
        }
        .agent-section::before {
        top: 0;
        left: -50px;
        }
        .agent-section::after {
        bottom: 0;
        right: -50px;
        }

        .agent-title {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
        color: #1a3d7c;
        font-weight: 800;
        position: relative;
        z-index: 1;
        }

        .agent-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
        height: 4px;
        background: #ab2424;
        border-radius: 2px;
        }

        /* بطاقة الوكيل */
        .agent-card {
        max-width: 680px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        padding: 2.5rem 2rem;
        border-radius: 22px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
        }

        .agent-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .agent-name {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        color: #1a3d7c;
        font-weight: 700;
        border-bottom: 2px solid rgba(26, 61, 124, 0.15);
        display: inline-block;
        padding-bottom: 0.5rem;
        }

        .agent-info {
        list-style: none;
        padding: 0;
        margin: 2rem 0 2.5rem 0;
        text-align: right;
        direction: rtl;
        }

        .agent-info li {
        font-size: 1.1rem;
        margin: 0.8rem 0;
        color: #444;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0.6rem 1rem;
        border-radius: 8px;
        background: rgba(26, 61, 124, 0.05);
        transition: background 0.3s ease;
        }

        .agent-info li:hover {
        background: rgba(171, 36, 36, 0.08);
        }

        .agent-info i {
        color: #ab2424;
        font-size: 1.3rem;
        }

        /* زر واتساب أنيق */
        .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0.9rem 1.8rem;
        background: linear-gradient(135deg, #25d366, #1ebe5d);
        color: #fff;
        font-weight: 700;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.1rem;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
        background: linear-gradient(135deg, #1ebe5d, #25d366);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-btn i {
        font-size: 1.4rem;
        }

        
        /* قسم الأنشطة */
        .activities-section {
            padding: 5rem 0;
        }
        
        .activities-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .tab-btn {
            padding: 1rem 2rem;
            background: white;
            border: 2px solid var(--primary-blue);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary-blue);
            transition: var(--transition);
        }
        
        .tab-btn.active, .tab-btn:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .activity-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
            border-top: 4px solid var(--primary-blue);
        }
        
        .activity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .activity-icon {
            width: 70px;
            height: 70px;
            background: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary-blue);
            font-size: 1.8rem;
        }
        
        .activity-title {
            font-size: 1.4rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        .activity-desc {
            color: #666;
            line-height: 1.6;
        }
        
/* قسم الرؤية والرسالة */
.vision-mission {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #1a3d7c, #274d9b);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-mission::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite alternate;
}

.vision-mission::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.vm-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vm-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, background 0.4s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.vm-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.vm-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.vm-content {
  line-height: 1.8;
  font-size: 1.05rem;
}

.vm-subtitle {
  font-size: 1.8rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.vm-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.value-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.8rem 1.2rem;
  border-radius: 20px;
  transition: transform 0.4s ease, background 0.4s ease;
  text-align: center;
}

.value-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.value-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.value-item p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* حركة العناصر */
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

        
        /* قسم الإحصائيات */
        .stats-section {
        padding: 5rem 1rem;
        background: linear-gradient(135deg, #1a3d7c, #3a6dd8);
        color: #fff;
        overflow: hidden;
        }

        .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
        }

        .stat-item {
        background: rgba(255, 255, 255, 0.08);
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        transform: translateY(40px);
        opacity: 0;
        transition: all 0.8s ease;
        }

        .stat-item.visible {
        transform: translateY(0);
        opacity: 1;
        }

        .stat-number {
        font-size: 3rem;
        font-weight: 900;
        color: #fff;
        margin-bottom: 0.5rem;
        animation: pulse 2s infinite;
        }

        .stat-label {
        font-size: 1.2rem;
        color: #f1f1f1;
        letter-spacing: 1px;
        }

        /* أنيميشن النبض للأرقام */
        @keyframes pulse {
        0%, 100% {
            text-shadow: 0 0 10px rgba(255,215,0,0.8);
            transform: scale(1);
        }
        50% {
            text-shadow: 0 0 25px rgba(255,215,0,1);
            transform: scale(1.1);
        }
        }
        

          /* وسائط الاستجابة */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                padding: 0 1rem;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 80px;
                right: 0;
                width: 100%;
                background: var(--primary-blue);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .activities-grid {
                grid-template-columns: 1fr;
            }
            
            .vm-container {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
