    @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');
        
        :root {
            --primary-blue: #32A2EF; 
            --secondary-blue: #32A2EF;
            --accent-blue: #60A5FA;
            --light-blue: #D7EFFF;
            --dark-navy: #1E293B;
            --darker-navy: #0F172A;
            --text-white: #ffffff;
            --text-light: #CBD5E1;
            --text-muted: #94A3B8;
            --success-green: #10B981;
            --orange-accent: #F59E0B;
            
              --light-bg: #F8F9FA;
            --text-dark: #2C3E50;
            --text-muted: #6C757D;
            --white: #FFFFFF;
            --border-color: #E9ECEF;
            
              --primary-gradient: linear-gradient(135deg, #32A2EF 0%, #2891d9 100%);
            --dark-gradient: linear-gradient(135deg, #3C4C72 0%, #2B3756 100%);
            
               /* Shadows */
            --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            overflow-x: hidden;
            background: white;
        }

        a{
            text-decoration: none;
        }

        /* Main Navigation */
        .main-nav {
            background: var(--dark-navy);
            padding: 8px 0;
            border-top:8px solid var(--secondary-blue);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 1000;
        }

        .nav-brand img {
            height: 75px;
            width: auto;
        }

        .nav-menu {
            
            list-style: none;
            display: flex;
            gap: 0;
            align-items: center;
            margin: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--text-white);
            text-decoration: none;
            padding: 8px 8px;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0 2px;
        }
    
        [dir="rtl"]  .nav-link {
            padding: 8px 5px;
        }
        .nav-link:hover {
            background: var(--primary-blue);
            color: white !important;
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--secondary-blue);
        }

        .hero-pages{
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--darker-navy) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-pages::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
            background-size: 800px 800px, 600px 600px, 400px 400px;
            animation: backgroundMove 20s ease-in-out infinite;
            z-index: 1;
        }

        /* Hero Section */
        .hero-section {
            background-image: url(../images/pattern.jpg);
            background-size: contain;
            background-position: center;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Background Pattern */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #323960f7;
            /* background-image: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%); */
            /* background-size: 800px 800px, 600px 600px, 400px 400px; */
            /* animation: backgroundMove 20s ease-in-out infinite; */
            z-index: 1;
        }

        @keyframes backgroundMove {
            0%, 100% { 
                background-position: 0% 0%, 100% 100%, 50% 50%; 
            }
            33% { 
                background-position: 30% 20%, 70% 80%, 80% 30%; 
            }
            66% { 
                background-position: 70% 80%, 30% 20%, 20% 70%; 
            }
        }

        /* Decorative Elements */
        .hero-decoration {
            position: absolute;
            z-index: 2;
        }

        .deco-circle-1 {
            width: 200px;
            height: 200px;
            border: 2px solid rgba(59, 130, 246, 0.2);
            border-radius: 50%;
            top: 10%;
            left: 5%;
            animation: float 6s ease-in-out infinite;
        }

        .deco-circle-2 {
            width: 150px;
            height: 150px;
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 50%;
            bottom: 15%;
            right: 8%;
            animation: float 8s ease-in-out infinite reverse;
        }

        .deco-dots {
            width: 100px;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="10" cy="2" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="18" cy="2" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="2" cy="10" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="18" cy="10" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="2" cy="18" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="10" cy="18" r="1" fill="rgba(59,130,246,0.3)"/><circle cx="18" cy="18" r="1" fill="rgba(59,130,246,0.3)"/></svg>') repeat;
            top: 11%;
            right: 6%;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Content Container */
        .hero-content {
            position: relative;
            z-index: 10;
            width: 100%;
            /*height:500px;*/
        }

        /* Text Content */
        .hero-text {
            padding-right: 2rem;
        }

        .hero-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.8;
            margin-bottom: 2rem;
            text-shadow: 0 4px 8px rgba(0,0,0,0.3);
            animation: slideInFromRight 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            font-weight: 400;
            animation: slideInFromRight 1s ease-out 0.2s both;
        }

        .hero-stats-text {
            /* backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            animation: slideInFromRight 1s ease-out 0.4s both; */
        }

        .hero-stats-text h6 {
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .hero-stats-text p {
            color: white;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* CTA Button */
        .cta-button {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            padding: 14px 30px;
            border-radius: 10px;
            margin-bottom:2rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            animation: slideInFromRight 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
            color: white;
        }

        /* Profile Section */
        .hero-profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        /* Profile Image Container */
        .profile-container {
            position: relative;
            width: 500px;
            height: 500px;
            margin-bottom: 2rem;
            animation: slideInFromLeft 1s ease-out;
        }

        .profile-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--accent-blue) 100%);
            padding: 8px;
            position: relative;
            box-shadow: 0 10px 50px rgba(59, 130, 246, 0.3);
            animation: profileFloat 6s ease-in-out infinite;
        }

        @keyframes profileFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }

        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Profile Decorations */
        .profile-decoration {
            position: absolute;
            z-index: 5;
        }

        .profile-deco-1 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--orange-accent) 0%, #F97316 100%);
            border-radius: 16px;
            top: -10px;
            right: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
            animation: bounce 2s ease-in-out infinite;
        }

        .profile-deco-2 {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
            border-radius: 50%;
            bottom: 20px;
            left: -20px;
            animation: bounce 2s ease-in-out infinite 0.5s;
        }

        .profile-deco-3 {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            border-radius: 8px;
            top: 50px;
            left: -15px;
            animation: bounce 2s ease-in-out infinite 1s;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Stats Container */
        .stats-container {
            display: flex;
            gap: 2rem;
            justify-content: center;
            animation: slideInFromBottom 1s ease-out 0.8s both;
        }

        .stat-item {
            text-align: center;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 1rem;
            min-width: 120px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item::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 0.5s ease;
        }

        .stat-item:hover::before {
            left: 100%;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Feature Cards at Bottom */
        .feature-cards {
            display: flex;
            gap: 1.5rem;
            animation: slideInFromBottom 1s ease-out 1s both;
        }

        .feature-card {
            flex: 1;
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--success-green), var(--orange-accent));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            /* transform: scaleX(1); */
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.06);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            text-align: center;
            background:var(--light-blue);
            border-radius: 16px;
            display: inline-block;
            transition: all 0.3s ease;
            line-height: 55px;
            padding-top:8px;
        }

        .feature-icon img{
            height:30px;
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, var(--orange-accent) 0%, #F97316 100%);
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(180deg) scale(1.1);
        }

        .feature-icon i {
            color: white;
            font-size: 1.5rem;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1rem;
                display: inline-block;
    margin-right: 10px;
        }

        .feature-description {
            font-size: 1rem;
            color: #6D707C;
            line-height: 1.6;
            text-align: justify;
        }

        /* Social Links */
        .social-links {
            position: fixed;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--secondary-blue);
            backdrop-filter: blur(10px);
            border: 1px solid var(--secondary-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateX(10px);
        }

        /* Wave Separator */
        .wave-separator {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .wave-separator svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        .wave-separator .shape-fill {
            fill: #f8fafc;
        }

        /* Animations */
        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .profile-container {
                width: 250px;
                height: 250px;
            }
            
            .stats-container {
                gap: 1rem;
            }
            
            .stat-item {
                padding: 1.5rem 1rem;
                min-width: 100px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .feature-cards {
                flex-direction: column;
                gap: 1rem;
            }
            
            .social-links {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
                text-align: center;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                text-align: center;
            }
            
            .hero-text {
                padding-right: 0;
                text-align: center;
                margin-bottom: 3rem;
            }
            
            .profile-container {
                width: 200px;
                height: 200px;
            }
            
            .stats-container {
                flex-wrap: wrap;
                gap: 0.8rem;
            }
            
            .stat-item {
                flex: 1;
                min-width: 80px;
                padding: 1rem 0.8rem;
            }
            
            .nav-menu {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(59, 130, 246, 0.3);
            border-top: 3px solid var(--primary-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .title h3{
            position: relative;
            font-size: 1.3rem;
            font-weight: bold;
            color:var(--primary-blue);
        }

        .title h3::before{
            position: absolute;
            bottom: -9px;
            right: 0;
            height:3px;
            width:30px;
            content: '';
            background: #ECA30C;
        }
        .aboutus .description{
            color:#6D707C;
            text-align: justify;
            line-height: 2;
        }

         .about-images {
      position: relative;
    }
    .about-images img {
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .about-images .top-img {
      width: 300px;
    height: 300px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15%;
    z-index: 2;
    }
    .about-images .bottom-img {
        width: 300px;
        height: 300px;
        object-fit: cover;
      position: absolute;
        bottom: -70px;
    left: 35px;
      border: 4px solid white;
      z-index: 1;
    }
    .play-button {
     position: absolute;
    bottom: 10px;
    left: 38%;
    width: 60px;
    height: 60px;
    background-color: #2f92ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transform: translateX(-38%);
    box-shadow: 2px 6px 12px 2px rgba(59, 130, 246, 0.3);
    z-index:3;
    }
    .projects {
        margin-bottom:80px;
    }
   .projects  .swiper {
      padding-bottom: 60px;
    }
    .projects .swiper-slide {
      width: 280px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .projects .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .projects .swiper-slide-active {
      /* transform: scale(1.05); */
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
   
    .projects .swiper-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 15px;
      padding: 0 20px;
    }
    .projects .slider-title {
      font-size: 1.1rem;
      font-weight: bold;
      color: #444;
      text-align: center;
      flex: 1;
    }
    .projects .swiper-button-prev,
    .projects .swiper-button-next {
      position: static !important;
      color: #2196f3;
      background-color: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      flex-shrink: 0;
    }
    .projects .swiper-button-prev::after{
        transform: rotate(180deg);
    }
    .projects .swiper-button-next::after{
        transform: rotate(-180deg);
    }
    .projects .swiper-button-prev::after,
    .projects .swiper-button-next::after {
      font-size: 18px;
    }
    .view-more{
        font-size: 14px;
    }
        .our-new .news-item a{
            text-decoration: none;
        }
        .our-new .news-item {
            margin-bottom: 30px;
            padding: 20px;
            background: #fafbfc;
            border-radius: 10px;
            border-right: 4px solid #60A5FA;
            transition: all 0.3s ease;
        }
        
        .our-new .news-item:hover {
            background: #f1f8ff;
            transform: translateX(-5px);
            box-shadow: 0 5px 20px rgba(93, 173, 226, 0.1);
        }
        
        .our-new .news-tag {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 6px 16px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
        }
        
        .our-new .news-date {
            color: #7f8c8d;
            font-size: 13px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        
        .our-new .news-text {
            color: #2c3e50;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.7;
            margin: 0;
        }
        
    
        .our-new .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        
        .our-new .featured-image:hover {
            transform: scale(1.02);
        }
        
        .our-new .featured-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        
        .our-new .featured-description {
            color: #5a6c7d;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            font-weight: 400;
        }
        
        
        @media (max-width: 576px) {
            .our-new .featured-image {
                /* height: 250px; */
            }
        }

    
        .blog-section .blog-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .blog-section .blog-item {
            background: #fafbfc;
            border-radius: 12px;
            padding: 20px;
            border-right: 4px solid #32A2EF;
            transition: all 0.3s ease;
            display: flex;
            gap: 15px;
            align-items: center;
        }
        .blog-section .featured-title{
            color:var(--primary-blue);
            font-size: 1.2rem;
            font-weight: bold;
        }
        .blog-section .blog-item:hover {
            background: #f1f8ff;
            transform: translateX(-5px);
            box-shadow: 0 5px 20px rgba(82, 196, 240, 0.1);
        }
        
        .blog-section .blog-item-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
       .blog-section  .blog-item-content {
            flex: 1;
        }
        
        .blog-section .blog-item-date {
            color: #7f8c8d;
            font-size: 12px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .blog-section .blog-item-title {
            color: #2c3e50;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
            margin: 0;
        }
        
        .blog-section .featured-article {
            position: relative;
        }
        
        .blog-section .featured-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            margin-bottom: 10px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .blog-section .featured-date {
            color: #7f8c8d;
            font-size: 13px;
            margin-bottom: 10px;
            display: block;
            text-align: left;
            gap: 8px;
        }
  
     .blog-section  .featured-excerpt {
            color: #5a6c7d;
            font-size: 14px;
            line-height: 1.7;
            text-align: justify;
        }
        
        @media (max-width: 992px) {
           .blog-section  .blog-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
         .blog-section    .featured-article {
                order: -1;
            }
   
        }
        
        @media (max-width: 768px) {
            
           .blog-section  .blog-title {
                font-size: 24px;
            }
    
            
           .blog-section  .blog-item {
                flex-direction: column;
                text-align: center;
            }
            
            .blog-section .blog-item-image {
                width: 100%;
                height: 120px;
            }
        }
        
        .partner-logo {
            /*background: white;*/
            /*padding: 25px;*/
            /*border-radius: 12px;*/
            /*box-shadow: 0 5px 20px rgba(0,0,0,0.08);*/
            /*border: 2px solid #f8f9fa;*/
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            /*min-height: 120px;*/
            width: 100%;
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(82, 196, 240, 0.2);
            border-color: #60A5FA;
        }
        
        .partner-logo img {
            max-width: 100%;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
        }

        .description-activit,.details-activites *{
            color:#6D707C;
            font-size: 15px !important;
        }

        .activities-section{
            background-color: #F4F5F8;
        }

    .event-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
    }
    .event-card img {
      width: 850px;
      height: 500px;
      object-fit: cover;
      border-radius: 15px;
    }
    .event-info {
     text-align: right;
      position: absolute;
      top:50%;
      transform: translateY(-50%);
      right: 40px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      padding: 25px 25px;
      max-width: 500px;
    }
    .event-info h5 {
      font-weight: bold;
      font-size: 20px;
      color:var(--primary-blue);
      margin-bottom: 15px;
    }
    .event-info p {
      color: #666;
      line-height: 25px;
      font-size: 14px;
       margin-bottom: 15px;
      text-align: justify;
    }
    .custom-controls {
      text-align: center;
      position: absolute;
        bottom: 7%;
        right: 10%;
    }
    .custom-controls button {
      color:var(--primary-blue);
      background: transparent;
      border: none;
      margin: 0 5px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .custom-controls button span i::before{
      color:var(--primary-blue);
    }
    .custom-controls button span {
      background: unset;
        font-size: 30px;

    }
     .joinus-section {
            background: #00306E;
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .joinus-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%),
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 20%, transparent 50%);
        }
        
        /* الأشكال الهندسية */
        .geometric-decorations {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }
        
        .geo-shape {
            position: absolute;
            opacity: 0.3;
        }
        
        .triangle-1 {
            top: 15%;
            right: 8%;
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-bottom: 25px solid rgba(255,255,255,0.4);
            transform: rotate(20deg);
        }
        
        .plus-1 {
            top: 25%;
            left: 10%;
            font-size: 24px;
            color: rgba(255,255,255,0.4);
            font-weight: 300;
        }
        
        .square-1 {
            bottom: 30%;
            right: 15%;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.4);
            transform: rotate(45deg);
        }
        
        .circle-1 {
            bottom: 40%;
            left: 20%;
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
        }
        
        .triangle-2 {
            bottom: 20%;
            right: 25%;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 15px solid rgba(255,255,255,0.3);
        }
        
        .chart-icon {
            bottom: 15%;
            right: 5%;
            font-size: 20px;
            color: rgba(255,255,255,0.3);
        }
        
        .register-button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.87rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            position: relative;
            z-index: 10;
        }
        
        .register-button:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        .joinus-content {
            position: relative;
            z-index: 5;
            text-align: center;
        }
        .joinus-content *{
            text-align: center;
        }
        .joinus-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 25px 0 15px;
            line-height: 1.4;
        }
        
        .joinus-subtitle {
            font-size: 1rem;
            font-weight: 500;
            opacity: 0.95;
            text-align: center;
            line-height: 2;
        }
        
        /* القسم الأبيض الرئيسي */
        .main-footer {
            background: white;
            padding: 60px 0 40px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        /* قسم بيانات التواصل */
        .contact-section {
            text-align: right;
        }
        
        .section-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #00002D;
            margin-bottom: 25px;
            text-align: right;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: #6D707C;
            font-size: 0.95rem;
        }
        
        .contact-icon {
            color: #3b82f6;
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }
        
        .address-block {
            text-align: right;
            color: #6D707C;
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 20px;
        }
        
        /* قسم الروابط الوسطى */
        .links-section {
            text-align: center;
        }
        
        .dimension-badge {
            background: var(--primary-blue);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 25px;
        }
        
        .links-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .links-list li {
            margin-bottom: 15px;
            text-align: right;
        }
        
        .links-list a {
            color: #6b7280;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        
        .links-list a:hover {
            color: #3b82f6;
        }
        
        .logo-section {
            text-align: center;
        }
        
        .logo-circle {
            width: 120px;
            height: 120px;
            position: relative;
        }
     
        .organization-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #00002D;
            margin-bottom: 10px;
            line-height: 1.4;
            max-width: 280px;
            text-align: right;
        }
        
        .organization-subtitle {
            font-size: 0.95rem;
            color: #6b7280;
            margin-bottom: 30px;
        }
        
        .social-media {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            background:var(--primary-blue);
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        /* .social-icon.facebook { background: #1877f2; }
        .social-icon.twitter { background: #000000; }
        .social-icon.linkedin { background: #0077b5; }
        .social-icon.instagram { 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
        }
        .social-icon.youtube { background: #ff0000; }
         */

        .bottom-footer {
            background: #FFF;
        }

        .bottom-footer .container{
            border-top: 1px solid #B9CBE1;
            padding: 8px 0;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright-text {
            color: #00306E;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .design-credit {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #00306E;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .designer-name {
            color: #00306E;
            font-weight: bold;
        }
        
        .heart-icon {
            color: #ef4444;
            font-size: 0.8rem;
        }
        
        /* استجابة للشاشات المختلفة */
        @media (max-width: 1024px) {
            .footer-grid {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 9px;
                text-align: center;
            }
            
            .contact-section {
                text-align: center;
            }
            
            .contact-item {
                justify-content: center;
            }
            
            .hero-title {
                font-size: 1.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .register-button {
                padding: 12px 25px;
                font-size: 0.95rem;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .social-media {
                gap: 12px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .joinus-section {
                padding: 40px 0;
            }
            
            .main-footer {
                padding: 40px 0 30px;
            }
            
            .logo-circle {
                width: 100px;
                height: 100px;
            }
            
            .logo-circle::before {
                width: 70px;
                height: 70px;
            }
            
            .logo-circle::after {
                width: 50px;
                height: 50px;
            }
            
            .logo-symbol {
                font-size: 1.6rem;
            }
        }

        .breadcrumb-item{
            font-weight: bold;
        }
    .active.breadcrumb-item{
        color:var(--secondary-blue);
    }
    .aboutus {
            padding-top: 7rem !important;
    }
    .aboutus-page .container{
        padding: 30px;
        background: #F4F4F6;
        border-radius: 10px;
    }

    .aboutus-page .about-images .bottom-img{
            bottom: -110px;

    }
        .project-content {
            position: relative;
            z-index: 2;
        }
        
        .project-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 0;
        }
        
        .news-card {
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: none;
            overflow: hidden;
            margin-bottom: 5px;
        }
        
        .news-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .news-card .card-body {
            padding: 4px 20px;
            background: #f4f4f6;
        }
        .news-card .card-body p{
            line-height: 25px;
        }
        .news-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            padding: 20px 20px;
            background: #f4f4f6;
            transition: background 0.3s ease;
        }
        
        .news-header:hover {
            background: linear-gradient(135deg, #e9ecef, #dee2e6);
        }
        
        .collapse-icon {
            transition: transform 0.3s ease;
            color: #6c757d;
            font-size: 1.1rem;
        }
        
        .collapse-icon.rotated {
            transform: rotate(180deg);
        }
        
        .project-details {
            transition: all 0.3s ease;
        }

        .project-details *,.description *{
            font-family: 'Cairo' !important;
        }
        
        .news-title {
            font-weight: bold;
            font-size: 1rem;
            color: #252839;
            margin-bottom: 10px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .news-title:hover {
            color: var(--primary-blue);
            cursor: pointer;
        }
        
        .news-excerpt {
            font-size: 0.9rem;
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #95a5a6;
        }
        
        .news-icon {
            width: 20px;
            height: 20px;
            background: var(--primary-blue);
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 8px;
        }
        
        .news-icon i {
            color: white;
            font-size: 0.7rem;
        }
        
        
        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        @media (max-width: 768px) {
            .project-title {
                font-size: 1.8rem;
            }
            
            .news-title {
                font-size: 1rem;
            }
        }
        
        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .footer-page{
            border-top: 1px solid #dedede;
            padding:30px 0 10px;
        }

        .cotent-page{
            color:#6D707C;
        }
       

        .content-page .form-control::placeholder{
            color:#C1C1C1;
        }
          .form-container {
            /* box-shadow: 0 10px 40px rgba(0,0,0,0.05); */
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            display: block;
            font-size: 15px;
        }
        .form-select option{
              color:#C1C1C1;
        }
        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #F4F5F8;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.1);
            outline: none;
        }
        
        .form-control::placeholder {
            color: #95a5a6;
            font-size: 14px;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .btn-primary {
            background: var(--primary-blue);
            border: none;
            border-radius: 10px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
            background: var(--primary-blue);
        }
        
        .btn-outline-secondary {
            border: 2px solid #6c757d;
            border-radius: 10px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
        }
        
        .wave-decoration {
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 50px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>') no-repeat;
            background-size: cover;
        }
        
        @media (max-width: 768px) {
            .content-wrapper {
                padding: 60px 15px 40px;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .info-block {
                padding: 20px;
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }

         .image-container {
            position: relative;
            background: #504A5E4D;
            border-radius: 10px;
            height: 400px;
            margin-bottom: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .background-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            background-repeat: no-repeat;
        }
        
        .content-overlay {
            position: absolute;
            bottom: 10px;
            left: 10px;
            right: 10px;
            background: #9f9f9fd4;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        
        .notification-header {
            padding:15px;
            position: relative;
            display: flex;
            justify-content: space-between;
        }
        .notification-date i{
            color:#ff7b25
        }
        .notification-date {
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 12px;
        }
        
        .notification-title {
            font-size: 0.95rem;
            font-weight: 500;
            color: white;
            margin: 0;
            line-height: 1.4;
        }
        
        .notification-footer {
            padding: 15px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }
        
        .notification-footer h4{
            font-size: 1.1rem;
            font-weight: bold;
            color:#fff;
        }
        .footer-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.4;
            flex: 1;
        }
        
        .view-details-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        
        .view-details-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(-2px);
        }
        
        .arrow-icon {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }
        
        .view-details-btn:hover .arrow-icon {
            transform: translateX(-3px);
        }
        
        .image-container.no-date .notification-date {
            display: none;
        }
        
        .image-container.no-date .notification-header {
            padding-top: 20px;
        }
        
        @media (max-width: 768px) {
            .image-container {
                height: 350px;
                margin-bottom: 20px;
            }
            
            .content-overlay {
                bottom: 15px;
                left: 15px;
                right: 15px;
            }
            
            .notification-header {
                padding: 15px;
            }
            
            .notification-footer {
                padding: 12px 20px;
                flex-direction: column;
                gap: 10px;
                align-items: stretch;
            }
            
            .view-details-btn {
                justify-content: center;
            }
            
            .page-title {
                font-size: 1.3rem;
                text-align: center;
            }
            
            .footer-text {
                font-size: 0.85rem;
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }


        .map-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            padding: 20px;
            margin: 40px auto 0px;
            position: relative;
            z-index: 10;
            max-width: 1200px;
        }
        
        #map {
            height: 600px;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .legend {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 15px;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border-radius: 25px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            font-weight: 500;
        }
        
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        #locationModal .modal-header .btn-close {
            color: var(--primary-blue);
            margin-left:0;
        }
        #locationModal .modal-footer button{
            font-size:14px;
        }
        #locationModal .modal-footer{
            border-top:1px solid #f8f8f8 !important;
        }
        #locationModal .modal-header {
            border-bottom:1px solid #f8f8f8 !important;
            background: #fff;
            color: var(--primary-blue);
            border: none;
        }
        
        #locationModal .modal-body {
            padding: 20px;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 20px;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            content: "«";
            margin: 0 5px;
        }
        
        .leaflet-popup-content-wrapper {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .custom-popup {
            font-family: 'Cairo';
            text-align: center;
            padding: 10px;
        }

        .custom-popup p{
            font-family: 'Cairo';
        }

        .custom-popup h6 {
            font-family: 'Cairo';
            color: #2c3e50;
            font-weight: bold;
            margin-bottom: 8px;
        }
        
        .custom-popup .btn {
            font-size: 12px;
            padding: 4px 12px;
        }
        
        .location-info {
            background: rgba(52, 152, 219, 0.1);
            border-right: 4px solid #3498db;
            padding: 15px;
            border-radius: 5px;
        }
        
        @media (max-width: 768px) {
            .map-container {
                margin: 20px 15px 0px;
                padding: 15px;
            }
            
            #map {
                height: 400px;
            }
            
            .legend {
                flex-direction: column;
                align-items: center;
            }
        }

        .filter-btn{
            font-size: 14px;
            padding: 10px 20px;
        }



   .team-card {
        background: #ffffff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        margin-bottom: 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #32A2EF 0%, #60A5FA 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .team-card:hover::before {
        transform: scaleX(1);
    }

    .team-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 60px rgba(50, 162, 239, 0.25);
    }

    .team-image {
        position: relative;
        overflow: hidden;
        height: 350px;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    }

    .team-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to top, #1E293B 0%, transparent 100%);
        pointer-events: none;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        filter: grayscale(20%);
    }

    .team-card:hover .team-image img {
        transform: scale(1.15);
        filter: grayscale(0%);
    }

    .team-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        color: #32A2EF;
        box-shadow: 0 4px 15px rgba(50, 162, 239, 0.2);
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .team-badge i {
        font-size: 0.75rem;
    }

    .team-content {
        padding: 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .team-name {
        font-size: 1.2rem;
        font-weight: 800;
        color: #1E293B;
        margin-bottom: 12px;
        transition: all 0.3s ease;
        line-height: 1.3;
    }

    .team-card:hover .team-name {
        color: #32A2EF;
    }

    .team-position {
        color: #64748B;
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.6;
        padding-bottom: 20px;
        border-bottom: 2px solid #f1f5f9;
    }

    .team-position i {
        font-size: 1rem;
        color: #32A2EF;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .team-description {
        color: #475569;
        font-size: 1rem;
        line-height: 1.9;
        flex: 1;
        text-align: justify;
        margin-bottom: 25px;
    }

    .team-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 20px;
        border-top: 2px solid #f1f5f9;
    }

    .team-stats {
        display: flex;
        gap: 20px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
    }

    .stat-label {
        font-size: 0.75rem;
        color: #94a3b8;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .stat-value {
        font-size: 1.1rem;
        font-weight: 800;
        color: #32A2EF;
        margin-top: 2px;
    }

    /* Decorative Elements */
    .team-decoration {
        position: absolute;
        pointer-events: none;
    }

    .deco-circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 2px dashed rgba(50, 162, 239, 0.2);
        position: absolute;
        animation: rotate 20s linear infinite;
    }

    .deco-circle-1 {
        top: 10%;
        right: 5%;
    }

    .deco-circle-2 {
        bottom: 15%;
        left: 8%;
        width: 80px;
        height: 80px;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* No Data State */
    .no-data-container {
        text-align: center;
        padding: 100px 20px;
    }

    .no-data-icon {
        font-size: 5rem;
        color: #cbd5e1;
        margin-bottom: 30px;
    }

    .no-data-text {
        font-size: 1.5rem;
        color: #64748b;
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 992px) {
      
        .team-image {
            height: 320px;
        }

        .team-content {
            padding: 30px 25px;
        }

        .team-name {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .team-section {
            padding: 60px 0;
        }

        .team-image {
            height: 280px;
        }

        .team-content {
            padding: 25px 20px;
        }

        .team-name {
            font-size: 1.3rem;
        }

        .team-position {
            font-size: 0.95rem;
        }

        .team-description {
            font-size: 0.95rem;
        }

        .team-badge {
            top: 15px;
            right: 15px;
            padding: 6px 15px;
            font-size: 0.8rem;
        }
    }

    /* Animation */
    .fade-in-up {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Pagination Styling */
    .pagination {
        gap: 8px;
    }

    .page-link {
        border: 2px solid #e2e8f0;
        color: #64748b;
        font-weight: 600;
        border-radius: 10px !important;
        padding: 10px 18px;
        transition: all 0.3s ease;
    }

    .page-link:hover {
        background: #32A2EF;
        color: white;
        border-color: #32A2EF;
        transform: translateY(-2px);
    }

    .page-item.active .page-link {
        background: #32A2EF;
        border-color: #32A2EF;
        box-shadow: 0 4px 15px rgba(50, 162, 239, 0.3);
    }
    
    
    /* Hero Swiper Styles */
.heroSwiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.heroSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Buttons */
.hero-swiper-button-prev,
.hero-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-swiper-button-prev:hover,
.hero-swiper-button-next:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.hero-swiper-button-prev {
    left: 20px;
}

.hero-swiper-button-next {
    right: 20px;
}

.hero-swiper-button-prev i,
.hero-swiper-button-next i {
    font-size: 20px;
    color: #333;
}

/* Pagination */
.hero-swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* RTL Support */
[dir="rtl"] .hero-swiper-button-prev {
    left: auto;
    right: 20px;
}

[dir="rtl"] .hero-swiper-button-next {
    right: auto;
    left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-swiper-button-prev,
    .hero-swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-swiper-button-prev {
        left: 10px;
    }
    
    .hero-swiper-button-next {
        right: 10px;
    }
    
    .hero-swiper-button-prev i,
    .hero-swiper-button-next i {
        font-size: 16px;
    }
}


.stats-container-home {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem 0;
}

.stat-item-home {
    text-align: center;
    background: linear-gradient(135deg, rgba(50, 162, 239, 0.05) 0%, rgba(50, 162, 239, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(50, 162, 239, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-width: 180px;
    flex: 1;
    max-width: 250px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(50, 162, 239, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-item-home:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, rgba(50, 162, 239, 0.1) 0%, rgba(50, 162, 239, 0.15) 100%);
    box-shadow: 0 20px 50px rgba(50, 162, 239, 0.3);
    border-color: var(--primary-blue);
}

.stat-item-home:hover::before {
    left: 100%;
}

.stat-icon-home {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(50, 162, 239, 0.4);
    transition: all 0.3s ease;
}

.stat-item-home:hover .stat-icon-home {
    transform: rotateY(360deg) scale(1.1);
}

.stat-icon-home i {
    color: white;
    font-size: 1.8rem;
}

.stat-number-home {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label-home {
    font-size: 1.1rem;
    color: var(--dark-navy);
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-container-home {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-item-home {
        min-width: 150px;
        padding: 1.5rem 1rem;
    }
    
    .stat-number-home {
        font-size: 2rem;
    }
    
    .stat-label-home {
        font-size: 1rem;
    }
    
    .stat-icon-home {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon-home i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-container-home {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item-home {
        max-width: 100%;
        width: 100%;
    }
}

/* Animation on Scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item-home {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stat-item-home:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item-home:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item-home:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item-home:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item-home:nth-child(5) {
    animation-delay: 0.5s;
}

/* RTL Support */
[dir="rtl"] .stats-container-home {
    direction: rtl;
}

[dir="rtl"] .stat-item-home:hover {
    transform: translateY(-10px) scale(1.05);
}




/* News Image Container with Advanced Effects */
.news-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInScale 0.8s ease-out;
}

/* Featured Image with Smooth Opacity Transitions */
.featured-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    animation: imageReveal 1s ease-out;
}

/* Keyframe Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Animated Overlay with Opacity */
.news-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    border-radius: 20px;
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.4s ease;
    animation: overlayFade 1.2s ease-out;
}

@keyframes overlayFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.8;
    }
}

.news-image-container:hover::before {
    opacity: 0.5;
}

/* Pulsing Border Effect */
.news-image-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(50, 162, 239, 0.3), 
        rgba(16, 185, 129, 0.3), 
        rgba(245, 158, 11, 0.3),
        rgba(50, 162, 239, 0.3)
    );
    border-radius: 22px;
    z-index: 0;
    opacity: 0;
    animation: borderPulse 3s ease-in-out infinite;
    background-size: 300% 300%;
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0;
        background-position: 0% 50%;
    }
    50% {
        opacity: 0.6;
        background-position: 100% 50%;
    }
}

.news-image-container:hover::after {
    animation-play-state: paused;
    opacity: 0.8;
}

/* News Item with Staggered Animations */
.news-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease-out forwards;
}

/* Staggered Animation Delays */
.news-item:nth-child(1) {
    animation-delay: 0.1s;
}

.news-item:nth-child(2) {
    animation-delay: 0.2s;
}

.news-item:nth-child(3) {
    animation-delay: 0.3s;
}

.news-item:nth-child(4) {
    animation-delay: 0.4s;
}

.news-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RTL Animation */
[dir="rtl"] .news-item {
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Shine Effect with Opacity */
.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(50, 162, 239, 0.15),
        transparent
    );
    transition: right 0.6s ease, opacity 0.3s ease;
    opacity: 0;
}

.news-item:hover::before {
    right: 100%;
    opacity: 1;
}

[dir="rtl"] .news-item::before {
    right: auto;
    left: -100%;
}

[dir="rtl"] .news-item:hover::before {
    left: 100%;
    right: auto;
}

/* Hover State with Smooth Opacity */
.news-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-blue);
    transform: translateX(5px);
    box-shadow: 
        0 5px 20px rgba(50, 162, 239, 0.25),
        5px 0 15px rgba(50, 162, 239, 0.15);
    opacity: 1;
}

[dir="rtl"] .news-item:hover {
    transform: translateX(-5px);
    box-shadow: 
        0 5px 20px rgba(50, 162, 239, 0.25),
        -5px 0 15px rgba(50, 162, 239, 0.15);
}

/* Active State with Pulsing Animation */
.news-item-active {
    background: rgba(50, 162, 239, 0.12) !important;
    border-color: var(--primary-blue) !important;
    transform: translateX(8px) !important;
    box-shadow: 
        0 8px 25px rgba(50, 162, 239, 0.35),
        8px 0 20px rgba(50, 162, 239, 0.2) !important;
    opacity: 1 !important;
    animation: activePulse 1.5s ease-in-out infinite;
}

[dir="rtl"] .news-item-active {
    transform: translateX(-8px) !important;
    box-shadow: 
        0 8px 25px rgba(50, 162, 239, 0.35),
        -8px 0 20px rgba(50, 162, 239, 0.2) !important;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(50, 162, 239, 0.35),
            8px 0 20px rgba(50, 162, 239, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(50, 162, 239, 0.45),
            12px 0 25px rgba(50, 162, 239, 0.3);
    }
}

[dir="rtl"] @keyframes activePulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(50, 162, 239, 0.35),
            -8px 0 20px rgba(50, 162, 239, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(50, 162, 239, 0.45),
            -12px 0 25px rgba(50, 162, 239, 0.3);
    }
}

.news-item-active .news-text {
    color: var(--primary-blue);
    font-weight: 600;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(50, 162, 239, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(50, 162, 239, 0.6);
    }
}

/* Side Indicator with Animated Width */
.news-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: linear-gradient(
        180deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    border-radius: 10px 0 0 10px;
    transition: width 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: -5px 0 15px rgba(50, 162, 239, 0.4);
}

.news-item:hover::after {
    width: 5px;
    opacity: 1;
}

.news-item-active::after {
    width: 8px !important;
    opacity: 1 !important;
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: -5px 0 15px rgba(50, 162, 239, 0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow: -8px 0 25px rgba(50, 162, 239, 0.6);
    }
}

[dir="rtl"] .news-item::after {
    right: auto;
    left: 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 5px 0 15px rgba(50, 162, 239, 0.4);
}

[dir="rtl"] @keyframes indicatorPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 5px 0 15px rgba(50, 162, 239, 0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow: 8px 0 25px rgba(50, 162, 239, 0.6);
    }
}

/* News Date with Fade In */
.news-date {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.8;
    }
}

.news-item:hover .news-date {
    color: var(--primary-blue);
    opacity: 1;
}

/* News Tag with Bounce Animation */
.news-tag {
    background: rgba(50, 162, 239, 0.1);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.9;
    animation: fadeInBounce 0.6s ease-out forwards;
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    60% {
        opacity: 1;
        transform: translateY(2px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.news-item:hover .news-tag {
    background: rgba(50, 162, 239, 0.2);
    opacity: 1;
    transform: scale(1.05);
}

.news-item-active .news-tag {
    background: var(--primary-blue);
    color: white;
    opacity: 1;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* News Text with Fade and Slide */
.news-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1F2937;
    line-height: 1.6;
    margin: 0.8rem 0 0 0;
    transition: all 0.3s ease;
    opacity: 0.9;
    animation: textSlideIn 0.7s ease-out forwards;
}

@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.news-item:hover .news-text {
    color: var(--dark-navy);
    opacity: 1;
    transform: translateX(3px);
}

[dir="rtl"] .news-item:hover .news-text {
    transform: translateX(-3px);
}

/* Image Zoom Effect */
.news-image-container:hover .featured-image {
    transform: scale(1.08);
    opacity: 0.95;
}

/* Loading Animation for Image Change */
@keyframes imageChange {
    0% {
        opacity: 0;
        transform: scale(1.1) rotate(1deg);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }
}

.featured-image.changing {
    animation: imageChange 0.5s ease-out;
}

/* Floating Animation for Container */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.news-image-container:hover {
    animation: float 3s ease-in-out infinite;
}

/* Number Badge with Bounce */
.news-item {
    counter-increment: news-counter;
}

.news-item .news-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0);
    animation: numberReveal 0.6s ease-out forwards;
    animation-delay: calc(var(--item-index) * 0.1s);
    box-shadow: 0 4px 15px rgba(50, 162, 239, 0.3);
}

@keyframes numberReveal {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    70% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
}

.news-item:hover .news-number {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(50, 162, 239, 0.5);
}

.news-item-active .news-number {
    opacity: 1 !important;
    animation: numberPulse 1.5s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 4px 15px rgba(50, 162, 239, 0.3);
    }
    50% {
        transform: scale(1.25) rotate(10deg);
        box-shadow: 0 8px 25px rgba(50, 162, 239, 0.6);
    }
}

[dir="rtl"] .news-item .news-number {
    left: auto;
    right: 1rem;
}

/* Section Title Enhancement */


@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}



/* Particle Effect Background */
.our-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(50, 162, 239, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0;
    animation: particleFade 2s ease-out forwards;
    pointer-events: none;
}

@keyframes particleFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .featured-image {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .news-item {
        padding: 1rem;
        transform: translateY(20px);
        animation: slideInUp 0.6s ease-out forwards;
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .news-item:hover {
        transform: translateY(-5px);
    }
    
    .news-item-active {
        transform: translateY(-8px) !important;
    }
}

@media (max-width: 480px) {
    .featured-image {
        min-height: 250px;
    }
}

/* Scroll-triggered Animation Class */
.news-section-visible .news-item {
    animation-play-state: running;
}

.news-section-visible .news-image-container {
    animation-play-state: running;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}





/* ============================================
   NEW PROJECTS SECTION - MODERN DESIGN
   ============================================ */

.projects-new {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.projects-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(50, 162, 239, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 20s ease-in-out infinite;
}

.projects-new::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 25s ease-in-out infinite reverse;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Section Title */
/*.projects-new .title h3 {*/
/*    color: var(--dark-navy);*/
/*    font-weight: 700;*/
/*    font-size: 2.2rem;*/
/*    margin-bottom: 0.5rem;*/
/*    position: relative;*/
/*    display: inline-block;*/
/*}*/

.section-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Projects Grid */
.projects-grid {
    position: relative;
    z-index: 2;
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s ease-out forwards;
}

/* Staggered Animation */
.project-card[data-index="0"] {
    animation-delay: 0.1s;
}

.project-card[data-index="1"] {
    animation-delay: 0.2s;
}

.project-card[data-index="2"] {
    animation-delay: 0.3s;
}

.project-card[data-index="3"] {
    animation-delay: 0.4s;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(50, 162, 239, 0.2);
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Project Image Wrapper */
.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f1f5f9;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.15);
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(50, 162, 239, 0.9) 0%,
        rgba(16, 185, 129, 0.85) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
}

.overlay-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Project Number Badge */
.project-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(50, 162, 239, 0.4);
    transition: all 0.4s ease;
    z-index: 2;
}

.project-card:hover .project-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 20px rgba(50, 162, 239, 0.6);
}

/* Project Info */
.project-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--primary-blue);
}

.project-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Project Footer */
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid #f1f5f9;
    transition: border-color 0.3s ease;
}

.project-card:hover .project-footer {
    border-color: rgba(50, 162, 239, 0.2);
}

.project-category {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.project-card:hover .project-category {
    color: var(--primary-blue);
}

.project-category i {
    font-size: 1rem;
}

.project-arrow {
    width: 35px;
    height: 35px;
    background: rgba(50, 162, 239, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.project-card:hover .project-arrow {
    background: var(--primary-blue);
    color: white;
    transform: translateX(-5px);
}

/* RTL Support */
[dir="rtl"] .project-arrow {
    transform: rotate(180deg);
}

[dir="rtl"] .project-card:hover .project-arrow {
    transform: translateX(5px) rotate(180deg);
}

[dir="rtl"] .overlay-icon {
    transform: rotate(180deg);
}

[dir="rtl"] @keyframes iconBounce {
    0%, 100% {
        transform: translateX(0) rotate(180deg);
    }
    50% {
        transform: translateX(10px) rotate(180deg);
    }
}

[dir="rtl"] .project-number {
    right: auto;
    left: 1.5rem;
}

/* Enhanced Hover Effects */
.project-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue),
        #10b981
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.project-card:hover::before {
    opacity: 0.3;
}

/* Shine Effect */
.project-image-wrapper::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s ease;
}

.project-card:hover .project-image-wrapper::after {
    top: 100%;
    left: 100%;
}

/* Loading State */
.project-card.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Empty State */
.projects-empty {
    text-align: center;
    padding: 4rem 0;
    color: #94a3b8;
}

.projects-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 991px) {
    .project-image-wrapper {
        height: 250px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .project-info {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .modern-header .hero-badges{
        display:block !important;
    }
    .video-hero{
        padding-bottom: 0 !important;
    }
    .hero-badge{
        margin-bottom: 15px;
    }
    .related-modern .section-header {
        margin-bottom: 20px !important;
    }
    .related-modern{
        padding-top:0 !important;
    }
    .modern-header{
        padding:30px 0 150px !important;
    }
    .modern-header .hero-badges{
        margin-top:20px
    }
    .links-list li{
        text-align: center;
    }
    .social-media{
        justify-content: center;
    }
    .logo-circle{
        margin:0 auto;
        height:120px;
        width: 120px;
    }
    /*body .slide-content .row.align-items-center{*/
    /*    align-items:unset;*/
    /*    padding: 5rem 0 !important;*/
    /*}*/
    body .custom-controls{
        bottom: -14% !important;
        right: 50%;
        transform: translateX(50%);
    }
    body .activities-section {
        padding-bottom: 60px !important;
    }
    body .event-info {
        position: relative;
         top: none; 
         transform: none; 
         right: unset; 
        /* max-width: 500px; */
    }
    .event-card img{
        display: none;
    }
    body .our-new {
        padding-top:1rem!important;
    }
    .cta-button{
        gap:8px;
        display: inline-block;
        padding: 10px 11px !important;
    }
    .projects-new {
        padding: 2rem 0 !important;
    }
    
    /*.projects-new .title h3 {*/
    /*    font-size: 1.8rem;*/
    /*}*/
    
    .project-card {
        margin-bottom: 1.5rem;
    }
    
    .project-image-wrapper {
        height: 220px;
    }
    
    .project-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 1rem;
        right: 1rem;
    }
    
    [dir="rtl"] .project-number {
        right: auto;
        left: 1rem;
    }
    
    .project-info {
        padding: 1.5rem;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .project-description {
        font-size: 0.9rem;
    }
    
    .overlay-icon {
        font-size: 2rem;
    }
    
    .overlay-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .project-image-wrapper {
        height: 200px;
    }
    
    .project-info {
        padding: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .project-overlay {
        display: none;
    }
    
    .project-card {
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
}

/* Accessibility */
.project-link:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 4px;
}

.project-card:focus-within {
    transform: translateY(-5px);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .project-card {
        border: 2px solid currentColor;
    }
    
    .project-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .project-card,
    .project-image,
    .project-overlay,
    .project-number,
    .overlay-icon {
        animation: none !important;
        transition: none !important;
    }
}

/* Additional Enhancements */
.project-card {
    position: relative;
}

/* Pulse Animation on Load */
@keyframes cardPulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 8px 30px rgba(50, 162, 239, 0.15);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
}

.project-card.highlight {
    animation: cardPulse 2s ease-in-out infinite;
}

/* Gradient Text for Titles */
.project-title.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}





/*////////////////////////////*/

/* ============================================
   HERO VIDEO SECTION - FULL SCREEN WITH OVERLAY
   ============================================ */

.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Swiper Container */
.heroVideoSwiper {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.heroVideoSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Video Background for Each Slide */
.slide-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Video Fallback Image */
.video-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Black Gradient Overlay */
.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 2;
}

/* Alternative Gradient Options */
.video-overlay-gradient.gradient-top {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.video-overlay-gradient.gradient-center {
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Content Over Video and Overlay */
.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Title */
.hero-video-title {
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

/* Hero Details/Description */
.hero-video-details {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16pxl
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size:28px;
    max-width: 800px;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Hero Buttons */
.hero-video-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-video-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-video-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-video-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-video-btn span {
    position: relative;
    z-index: 1;
}

.hero-video-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-video-btn:hover i {
    transform: translateX(-5px);
}

[dir="rtl"] .hero-video-btn:hover i {
    transform: translateX(5px);
}

/* Primary Button */
.hero-video-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: 2px solid transparent;
}

.hero-video-btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(50, 162, 239, 0.4);
}

/* Secondary Button */
.hero-video-btn.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-video-btn.btn-secondary:hover {
    background: white;
    color: var(--dark-navy);
    transform: translateY(-3px);
}

/* Swiper Navigation Buttons */
.hero-swiper-button-next,
.hero-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-swiper-button-next {
    left: 2rem;
}

.hero-swiper-button-prev {
    right: 2rem;
}

.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Swiper Pagination */
.hero-swiper-pagination {
    position: absolute;
    bottom: 3rem !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 40px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    animation: bounce 2s infinite;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 10px;
        opacity: 1;
    }
    50% {
        top: 25px;
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-down-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-video-title {
        font-size: 3rem;
    }
    
    .hero-video-details {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .hero-video-title {
        font-size: 2.5rem;
    }
    
    .hero-video-details {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-video-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-swiper-button-next,
    .hero-swiper-button-prev {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-swiper-button-next {
        left: 1rem;
    }
    
    .hero-swiper-button-prev {
        right: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-video-section {
        min-height: auto;
        height:85vh !important;
    }
    
    .heroVideoSwiper {
        min-height: 500px;
    }
    
    .hero-video-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-video-details {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-video-buttons {
        gap: 1rem;
    }
    
    .hero-video-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .hero-swiper-button-next,
    .hero-swiper-button-prev {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .scroll-down-indicator {
        bottom: 4rem;
        /*display: none;*/
    }
}

@media (max-width: 480px) {
    .hero-video-title {
        font-size: 1.6rem;
    }
    
    .hero-video-details {
        font-size: 1.4rem;
    }
    
    .hero-video-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-video-btn {
        width: 100%;
        justify-content: center;
    }
}

/* RTL Support */
[dir="rtl"] .hero-swiper-button-next {
    left: auto;
    right: 2rem;
}

[dir="rtl"] .hero-swiper-button-prev {
    right: auto;
    left: 2rem;
}

[dir="rtl"] .hero-video-btn i {
    transform: rotate(180deg);
}

[dir="rtl"] .hero-video-btn:hover i {
    transform: rotate(180deg) translateX(-5px);
}

/* Video Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .hero-video-title,
    .hero-video-details,
    .hero-video-buttons,
    .scroll-down-indicator {
        animation: none !important;
    }
    
    .mouse-wheel,
    .mouse-icon {
        animation: none !important;
    }
}

/* Loading State */
.slide-video-background.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 5;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Optional: Add particles effect */
.hero-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    z-index: 5;
    pointer-events: none;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}




/* ============================================
   SOCIAL SHARE & LIKE BUTTONS
   ============================================ */

.social-actions-section {
    background: transparent;
  margin-bottom: 20px;
}

.actions-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Share Section */
.share-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: end;
}

.share-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-navy);
    white-space: nowrap;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Social Buttons */
.social-btn {
        align-items: center;
    gap: 8px;
    border-color: transparent;
    text-align: center;
    padding: 10px 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s 
ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.2);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-btn:hover::before {
    width: 300px;
    height: 300px;
}

.social-btn:active {
    transform: scale(0.95);
}

/* Facebook Button */
.facebook-btn {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
    color: white;
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #0c63d4, #1877f2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* Twitter Button */
.twitter-btn {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.twitter-btn:hover {
    background: linear-gradient(135deg, #0d8bd9, #1da1f2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

/* LinkedIn Button */
.linkedin-btn {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.linkedin-btn:hover {
    background: linear-gradient(135deg, #005885, #0077b5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Telegram Button */
.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #006ba6);
    color: white;
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #006ba6, #0088cc);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

/* Copy Link Button */
.copy-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #495057, #6c757d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Button Text (hidden on small screens) */
.btn-text {
    display: inline-block;
}

/* Like Section */
.like-section {
    display: flex;
    align-items: center;
}

.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.like-btn i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.like-count {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.like-text {
    font-weight: 600;
}

.like-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

.like-btn:hover i {
    transform: scale(1.2);
}

/* Liked State */
.like-btn.liked {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #ef4444;
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.like-btn.liked i {
    color: white;
    animation: heartBeat 0.6s ease;
}

.like-btn.pulse {
    animation: pulse 0.6s ease;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.25);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: bottom 0.3s ease;
    z-index: 9999;
}

.copy-notification.show {
    bottom: 30px;
}

.copy-notification i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .actions-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .share-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .share-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .like-section {
        justify-content: center;
        padding-top: 1rem;
        border-top: 2px solid #f3f4f6;
    }
}

@media (max-width: 767px) {
    .address-block{
        text-align: center;
    }
    body .links-section .section-title,body .contact-section  .section-title{
        font-size:1.1rem !important;
        text-align: center !important;
    }
    body .organization-title{
        max-width: 100%;
        text-align: center !important;
    }
    bdoy .main-footer{
        margin:20px 0 20px !important;
    }
    .partner-logo{
        margin-bottom: 25px;
    }
    body .partners {
        padding-top: 1rem !important;
    }
    .col-news-image-container{
        margin-bottom: 20px;
    }
    body .hero-video-details{
        font-size: 1.2rem;
    }
    body .stats-container-home{
        padding-top:0;
        margin-top:0;
    }
    body .about-images {
        display: none;
    }
    body .aboutus {
        padding-top: 2rem !important;
    }
    .social-actions-section {
        padding: 1.5rem;
    }
    
    .share-buttons {
        gap: 0.5rem;
    }
    
    .social-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .btn-text {
        display: none;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    
    .like-btn {
        padding: 10px 25px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .share-label {
        font-size: 1rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-btn i {
        font-size: 1rem;
    }
}

/* RTL Support */
[dir="ltr"] .share-section {
    /*flex-direction: row-reverse;*/
}

[dir="ltr"] .share-buttons {
    flex-direction: row-reverse;
}

[dir="ltr"] .actions-container {
    flex-direction: row-reverse;
}

/* Print Styles */
@media print {
    .social-actions-section {
        display: none;
    }
}

/* Accessibility */
.social-btn:focus,
.like-btn:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 3px;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .social-actions-section {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }
    
    .share-label {
        color: #f3f4f6;
    }
    
    .like-btn {
        background: #374151;
        border-color: #4b5563;
        color: #e5e7eb;
    }
}

/* Loading State */
.social-btn.loading {
    pointer-events: none;
    opacity: 0.6;
}

.social-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Counter Animation */
.like-count {
    display: inline-block;
    transition: transform 0.3s ease;
}

.like-btn.liked .like-count {
    animation: countUp 0.3s ease;
}

@keyframes countUp {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hover Effects Enhancement */
.social-btn {
    position: relative;
}

.social-btn::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-btn:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* Success Animation for Like */
@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.like-btn.liked {
    animation: successPulse 0.6s ease;
}


[dir="ltr"] .fa-arrow-left,[dir="ltr"] .fa-arrow-left{
    transform: rotate(180deg);
}

[dir="ltr"] #eventsCarousel .fa-arrow-right{
     transform: rotate(180deg);
}

[dir="ltr"] .section-title,[dir="ltr"] .organization-title,[dir="ltr"] .links-list li,[dir="ltr"] .address-block{
    text-align:left;
}




 body .dropdown-item.active,body .dropdown-item:active{
                background: #32A2EF !important;
            }
            
            /* Language Switcher Dropdown */
            .language-switcher {
                position: relative;
                margin-right: 15px;
            }
            
            .lang-dropdown-toggle {
                background: rgba(255,255,255,0.1);
                border: 1px solid rgba(255,255,255,0.2);
                color: var(--text-white);
                padding: 8px 16px;
                border-radius: 8px;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                min-width: 100px;
                justify-content: space-between;
            }
            
            .lang-dropdown-toggle:hover {
                background: rgba(255,255,255,0.15);
                border-color: rgba(255,255,255,0.3);
                transform: translateY(-2px);
            }
            
            .lang-dropdown-toggle i.globe-icon {
                font-size: 16px;
            }
            
            .lang-dropdown-toggle i.chevron {
                font-size: 12px;
                transition: transform 0.3s ease;
            }
            
            .lang-dropdown-toggle.active i.chevron {
                transform: rotate(180deg);
            }
            
            .lang-dropdown-menu {
                position: absolute;
                top: calc(100% + 8px);
                right: 0;
                background: white;
                border-radius: 12px;
                box-shadow: 0 10px 40px rgba(0,0,0,0.15);
                padding: 8px;
                min-width: 160px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
            }
            
            .lang-dropdown-menu.show {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            .lang-dropdown-item {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 10px 14px;
                border-radius: 8px;
                text-decoration: none;
                color: #1E293B;
                font-weight: 500;
                transition: all 0.2s ease;
                position: relative;
            }
            
            .lang-dropdown-item:hover {
                background: #f1f5f9;
                color: var(--primary-blue);
                transform: translateX(-3px);
            }
            
            .lang-dropdown-item.active {
                background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
                color: white;
            }
            
            .lang-dropdown-item.active:hover {
                transform: translateX(-3px);
            }
            
            .lang-flag {
                width: 24px;
                height: 24px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                flex-shrink: 0;
            }
            
            .lang-name {
                flex: 1;
                font-size: 14px;
            }
            
            .lang-code {
                font-size: 12px;
                opacity: 0.7;
                text-transform: uppercase;
                font-weight: 700;
            }
            
            .lang-dropdown-item.active .lang-code {
                opacity: 1;
            }
            
            .lang-dropdown-item i.check-icon {
                font-size: 14px;
                margin-left: auto;
            }
            
            .lang-dropdown-item:not(.active) i.check-icon {
                display: none;
            }
            
            /* RTL Support */
            [dir="rtl"] .lang-dropdown-menu {
                right: auto;
                left: 0;
            }
            
            [dir="rtl"] .lang-dropdown-item:hover {
                transform: translateX(3px);
            }
            
            [dir="rtl"] .lang-dropdown-item.active:hover {
                transform: translateX(3px);
            }
            
            /* Mobile Responsive */
            @media (max-width: 768px) {
                .language-switcher {
                    margin-right: 10px;
                }
                
                .lang-dropdown-toggle {
                    padding: 6px 12px;
                    min-width: 80px;
                    font-size: 13px;
                }
                
                .lang-dropdown-menu {
                    min-width: 140px;
                }
            }

            }
            
            @media (max-width: 768px) {
                .language-switcher {
                    margin-right: 0;
                    margin-top: 10px;
                    justify-content: center;
                }
            }
            
            
            
            
            
            .filter-tab {
            padding: 12px 30px;
            border-radius: 25px;
            border: 2px solid #E2E8F0;
            background: white;
            color: #64748B;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-tab:hover {
            border-color: #32A2EF;
            color: #32A2EF;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(50, 162, 239, 0.2);
        }

        .filter-tab.active {
            background: #1E293B;
            color: white;
            border-color: #1E293B;
        }

        .filter-tab.active:hover {
            background: #32A2EF;
            border-color: #32A2EF;
        }

        .filter-tab i {
            font-size: 14px;
        }

        /* Activity Cards - New Design */
        .activity-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .activity-card {
            background: white;
            border-radius: 20px;
            border: 2px solid #32A2EF;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            gap: 20px;
        }

        .activity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #32A2EF, #60A5FA);
        }

        .activity-card:hover {
            box-shadow: 0 10px 30px rgba(50, 162, 239, 0.25);
            transform: translateY(-5px);
        }

        /* Card Left Content */
        .card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-self: end;
            gap: 20px;
        }

        /* Link Icon */
        .link-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: #F1F5F9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #32A2EF;
            transition: all 0.3s ease;
            cursor: pointer;
            align-self: flex-end;
        }

        .link-icon:hover {
            background: #32A2EF;
            color: white;
            transform: rotate(45deg);
        }

        /* Card Title */
        .card-title-new {
            color: #1E293B;
            font-size: 19px;
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
        }

        /* Card Info Grid */
        .card-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .info-box {
            background: #F8FAFC;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
        }

        .info-label {
            color: #1E293B;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .info-value {
            color: #94A3B8;
            font-size: 13px;
            display: block;
        }

        /* Card Image */
        .card-image-new {
            width: 190px;
            height: 190px;
            border-radius: 15px;
            object-fit: cover;
            background: #F1F5F9;
            flex-shrink: 0;
        }

        /* Hidden class for filtering */
        .hidden {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .activity-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
         
            .activity-card {
                flex-direction: column-reverse;
            }

            .card-image-new {
                width: 100%;
                height: 220px;
            }

            .card-info-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .filter-tabs {
                gap: 10px;
            }

            .filter-tab {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .hero-pages {
                /*padding: 60px 0 80px;*/
            }

        }
        
        
        
      
        .modern-header {
            background: var(--dark-gradient);
            padding: 50px 0 150px;
            position: relative;
            overflow: hidden;
        }

        .modern-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(50, 162, 239, 0.08);
            border-radius: 50%;
        }

        .modern-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(50, 162, 239, 0.05);
            border-radius: 50%;
        }

        .breadcrumb-modern {
            background: transparent;
            padding: 0;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            z-index: 2;
        }

        .breadcrumb-modern a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 12px;
            border-radius: 20px;
        }

        .breadcrumb-modern a:hover {
            background: rgba(50, 162, 239, 0.2);
            color: white;
        }

        .breadcrumb-modern .separator {
            color: rgba(255,255,255,0.4);
        }

        .breadcrumb-modern .active {
            color: white;
            background: rgba(50, 162, 239, 0.3);
            padding: 5px 12px;
            border-radius: 20px;
        }

        .modern-header .hero-title {
            font-size: 1.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 20px;
            line-height: 1.3;
            position: relative;
            z-index: 2;
        }

        .modern-header .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .modern-header .hero-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            background: rgba(50, 162, 239, 0.2);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 30px;
            color: white;
            font-size: 0.95rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(50, 162, 239, 0.3);
        }

        .hero-badge i {
            font-size: 1.2rem;
            color: var(--primary-blue);
        }

        /* ============================================
           VIDEO HERO SECTION
           ============================================ */
        .video-hero {
            margin-top: -100px;
            padding-bottom: 55px;
            position: relative;
            z-index: 10;
        }

        .video-modern-container {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
            background: #000;
        }

        .video-modern-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
        }
        .video-modern-wrapper{
            width:90%;
            margin:0 auto;
            border-radius: 30px;
            margin-top: -115px;
        }
        .video-modern-wrapper iframe{
                border-radius: 30px;
        }
        .video-modern-wrapper iframe,
        .video-modern-wrapper video,
        .video-modern-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-play-modern {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 10;
            box-shadow: 0 10px 40px rgba(50, 162, 239, 0.5);
        }

        .video-play-modern:hover {
            transform: translate(-50%, -50%) scale(1.15);
            box-shadow: 0 15px 60px rgba(50, 162, 239, 0.7);
        }

        .video-play-modern i {
            font-size: 2.5rem;
            color: white;
            margin-left: 8px;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
            z-index: 1;
        }

        .video-info-badge {
            position: absolute;
            top: 25px;
            right: 25px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 5;
            box-shadow: var(--shadow-md);
        }

        .video-info-badge i {
            color: var(--primary-blue);
            font-size: 1.1rem;
        }

        .video-info-badge span {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        /* ============================================
           CONTENT SECTION
           ============================================ */
        .content-section {
            padding: 40px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            background: var(--primary-gradient);
            color: white;
            padding: 8px 25px;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-title-activity {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .content-text {
            font-size: 1.15rem;
            line-height: 2;
            color: var(--text-muted);
            text-align: justify;
        }

        .content-text p {
            margin-bottom: 25px;
        }

        /* ============================================
           MODERN CARDS
           ============================================ */
        .modern-card {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .modern-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(50, 162, 239, 0.2);
        }

        .modern-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(50, 162, 239, 0.3);
        }

        .card-icon i {
            font-size: 2rem;
            color: white;
        }

        .card-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.4;
        }

        /* ============================================
           TESTIMONIALS MODERN
           ============================================ */
        .testimonials-modern {
            padding: 50px 0 20px 0;
            background: var(--dark-gradient);
            position: relative;
            overflow: hidden;
        }

        .testimonials-modern::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(50, 162, 239, 0.15) 0%, transparent 70%);
        }

        .testimonials-modern::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(50, 162, 239, 0.1) 0%, transparent 70%);
        }

        .testimonials-modern .container {
            position: relative;
            z-index: 2;
        }

        .testimonials-modern .section-label {
            background: rgba(50, 162, 239, 0.3);
            color: white;
        }

        .testimonials-modern .section-title {
            color: white;
        }

        .testimonials-modern .section-description {
            color: rgba(255,255,255,0.8);
        }

        .testimonials-swiper-modern {
            padding: 40px 0 80px;
        }
        body .testimonials-swiper-modern .swiper-wrapper{
            height:auto !important;
        }
        .testimonial-modern-card {
            background: white;
            border-radius: 30px;
            padding: 45px;
            /*height:365px;*/
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-modern-card::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 200px;
            height: 200px;
            background: var(--primary-gradient);
            opacity: 0.05;
            border-radius: 50%;
        }

        .testimonial-modern-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        }

        .testimonial-header-modern {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .testimonial-avatar-modern {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-blue);
            box-shadow: 0 8px 25px rgba(50, 162, 239, 0.4);
        }

        .testimonial-author-modern h4 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .testimonial-author-modern p {
            font-size: 1rem;
            color: var(--text-muted);
            margin: 0;
        }

        .testimonial-rating-modern {
            display: flex;
            gap: 5px;
            margin-bottom: 25px;
        }

        .testimonial-rating-modern i {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .testimonial-quote-modern {
            font-size: 1rem;
            line-height: 1.9;
            text-align: justify;
            color: var(--text-muted);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: -20px;
            right: -10px;
            font-size: 6rem;
            color: var(--primary-blue);
            opacity: 0.08;
            font-family: Georgia, serif;
        }

        /* Swiper Custom */
        .testimonials-swiper-modern .swiper-button-next,
        .testimonials-swiper-modern .swiper-button-prev {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            color: var(--primary-blue);
            box-shadow: var(--shadow-lg);
            transition: all 0.3s;
        }

        .testimonials-swiper-modern .swiper-button-next:hover,
        .testimonials-swiper-modern .swiper-button-prev:hover {
            transform: scale(1.1);
            background: var(--primary-gradient);
            color: white;
        }

        .testimonials-swiper-modern .swiper-button-next {
            left: 20px;
        }

        .testimonials-swiper-modern .swiper-button-prev {
            right: 20px;
        }

        .testimonials-swiper-modern .swiper-button-next::after,
        .testimonials-swiper-modern .swiper-button-prev::after {
            font-size: 1.3rem;
            font-weight: 900;
        }

        .testimonials-swiper-modern .swiper-pagination {
            bottom: 30px;
        }

        .testimonials-swiper-modern .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            opacity: 1;
            transition: all 0.3s;
        }

        .testimonials-swiper-modern .swiper-pagination-bullet-active {
            width: 40px;
            border-radius: 6px;
            background: white;
        }

        /* ============================================
           INTERACTIVE SECTION
           ============================================ */
        .interactive-section {
            padding: 80px 0;
            background: var(--primary-gradient);
            position: relative;
            overflow: hidden;
        }

        .interactive-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .interactive-box {
            background: white;
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.2);
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .interactive-icon {
            width: 100px;
            height: 100px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 15px 40px rgba(50, 162, 239, 0.4);
        }

        .interactive-icon i {
            font-size: 3rem;
            color: white;
        }

        .interactive-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .interactive-text {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .interactive-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .interactive-btn {
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-md);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .interactive-btn i {
            font-size: 1.3rem;
        }

        .btn-yes-modern {
            background: var(--primary-gradient);
            color: white;
        }

        .btn-yes-modern:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(50, 162, 239, 0.5);
        }

        .btn-no-modern {
            background: var(--dark-gradient);
            color: white;
        }

        .btn-no-modern:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(60, 76, 114, 0.5);
        }

        /* ============================================
           RELATED EVENTS MODERN
           ============================================ */
        .related-modern {
            padding: 40px 0;
            /*background: var(--light-bg);*/
        }

        .related-card-modern {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
        }

        .related-card-modern:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
        }

        .related-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .related-image-modern {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .related-card-modern:hover .related-image-modern {
            transform: scale(1.1);
        }

        .related-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .related-card-modern:hover .related-image-overlay {
            opacity: 1;
        }

        .related-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-gradient);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: var(--shadow-md);
            z-index: 2;
        }

        .related-content-modern {
            padding: 35px;
        }

        .related-title-modern {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .related-meta-modern {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }

        .meta-item-modern {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-muted);
            font-size: 1rem;
        }

        .meta-icon-modern {
            width: 40px;
            height: 40px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .related-link-modern {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-blue);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
        }

        .related-link-modern:hover {
            gap: 15px;
            color: var(--dark-navy);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title-activity {
                font-size: 1.5rem;
            }

            .interactive-box {
                padding: 40px 30px;
            }
        }

        @media (max-width: 767px) {
            .card-content{
                width: 100% !important;
            }
            .card-image-new{
                width:100%;
                display: block !important;
            }
            .filter-tabs{
                display: block !important;
            }
            .filter-tab{
                width: 100%;
                display: block;
                margin:0 0 15px 0 !important;
            }
            .filter-section {
                padding: 2rem 0 !important;
            }
            .hero-text{
                margin-bottom: 1rem !important;
            }
            .hero-title{
                margin-bottom: 0 !important;
                font-size: 1.2rem !important;
            }
            .hero-content {
                padding: 0 !important;
            }
            .hero-pages{
                padding:26px 0 !important;
            }
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title-activity {
                font-size: 1.7rem;
            }

            .interactive-buttons {
                flex-direction: column;
            }

            .interactive-btn {
                width: 100%;
                justify-content: center;
            }

            .testimonial-header-modern {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .pulse-animation {
            animation: pulse 2s ease-in-out infinite;
        }
     
     


.speakers-modern {
    background: #f8f9fa;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* العنوان الرئيسي */
.speakers-modern .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.speakers-modern .section-label {
    background: #8B4545;
    color: white;
    padding: 10px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
}

/* ============================================
   البطاقة - Speaker Card
   ============================================ */

.speaker-card-modern {
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effect - رفع البطاقة بشكل سلس */
.speaker-card-modern:hover {
    transform: translateY(-8px);
}

/* ============================================
   الصورة - Image Wrapper
   ============================================ */

.speaker-image-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 280px;
    height: 280px !important;
    padding-top: 0 !important;
    padding: 0;
    overflow: hidden;
    background: #e9ecef;
    border-radius: 20px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover على الصورة - ظل أقوى وبوردر خفيف */
.speaker-card-modern:hover .speaker-image-wrapper {
    box-shadow: 0 12px 35px rgba(139, 69, 69, 0.25);
    border: 2px solid #8B4545;
}

/* ============================================
   الصورة نفسها
   ============================================ */

.speaker-image-modern {
    /*position: absolute !important;*/
    width:100%;
    height:100%;
    object-fit: cover !important;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hover على الصورة - تكبير خفيف جداً + سطوع */
.speaker-card-modern:hover .speaker-image-modern {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Overlay خفيف جداً عند الـ hover */
.speaker-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 69, 0.1) 0%, rgba(139, 69, 69, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.speaker-card-modern:hover .speaker-image-wrapper::before {
    opacity: 1;
}

/* ============================================
   إخفاء العناصر غير المطلوبة
   ============================================ */

.speaker-overlay-modern,
.speaker-social-modern,
.social-icon-modern {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ============================================
   معلومات المتحدث
   ============================================ */

.speaker-info-modern {
    padding: 0;
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

/* الاسم */
.speaker-name-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B4545;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover على الاسم - لون أغمق */
.speaker-card-modern:hover .speaker-name-modern {
    color: #6d3636;
    transform: translateY(-2px);
}

/* خط تحتي يظهر عند الـ hover */
.speaker-name-modern::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50px;
    height: 2px;
    background: #8B4545;
    transition: transform 0.3s ease;
}

.speaker-card-modern:hover .speaker-name-modern::after {
    transform: translateX(-50%) scaleX(1);
}

/* الوصف */
.speaker-bio-modern {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Hover على الوصف - لون أوضح شوي */
.speaker-card-modern:hover .speaker-bio-modern {
    color: #5a6268;
}

/* ============================================
   إصلاح المحاذاة
   ============================================ */

.speakers-modern [class*="col-"] {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* ============================================
   التصميم المتوازي - Zigzag
   ============================================ */

@media (min-width: 992px) {
    .speakers-modern .row > .col-lg-4:nth-child(3n+2) .speaker-card-modern {
        margin-top: 40px;
    }
}

/* ============================================
   الشاشات المتوسطة
   ============================================ */

@media (min-width: 768px) and (max-width: 991px) {
    .speaker-image-wrapper {
        max-width: 240px;
        height: 240px !important;
    }
    
    .speaker-info-modern {
        max-width: 240px;
    }
}

/* ============================================
   الموبايل
   ============================================ */

@media (max-width: 767px) {
    .speakers-modern {
        padding: 40px 0;
    }
    
    .speaker-card-modern {
        margin-bottom: 40px;
    }
    
    .speaker-image-wrapper {
        max-width: 220px;
        height: 220px !important;
    }
    
    .speaker-info-modern {
        max-width: 220px;
    }
    
    .speaker-name-modern {
        font-size: 1.2rem;
    }
    
    .speaker-bio-modern {
        font-size: 0.9rem;
    }
    
    .speakers-modern .row > .col-lg-4:nth-child(3n+2) .speaker-card-modern {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .speaker-image-wrapper {
        max-width: 200px;
        height: 200px !important;
    }
    
    .speaker-info-modern {
        max-width: 200px;
    }
    
    .speaker-name-modern {
        font-size: 1.1rem;
    }
}

/* ============================================
   الأنيميشن
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.speaker-card-modern {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

/*.speaker-card-modern:nth-child(1) { animation-delay: 0.1s; }*/
/*.speaker-card-modern:nth-child(2) { animation-delay: 0.2s; }*/
/*.speaker-card-modern:nth-child(3) { animation-delay: 0.3s; }*/
/*.speaker-card-modern:nth-child(4) { animation-delay: 0.4s; }*/
/*.speaker-card-modern:nth-child(5) { animation-delay: 0.5s; }*/
/*.speaker-card-modern:nth-child(6) { animation-delay: 0.6s; }*/

/* ============================================
   RTL Support
   ============================================ */

[dir="rtl"] .speaker-card-modern {
    direction: rtl;
}

/* ============================================
   تحسين الأداء - Performance
   ============================================ */

.speaker-card-modern {
    will-change: transform;
}

.speaker-image-modern {
    will-change: transform, filter;
}

/* إيقاف التحسينات بعد انتهاء الـ hover */
.speaker-card-modern:not(:hover) {
    will-change: auto;
}

.speaker-card-modern:not(:hover) .speaker-image-modern {
    will-change: auto;
}

/* ============================================
   Smooth Scrolling للموبايل
   ============================================ */

@media (max-width: 767px) {
    /* hover أخف على الموبايل */
    .speaker-card-modern:hover {
        transform: translateY(-5px);
    }
    
    .speaker-card-modern:hover .speaker-image-modern {
        transform: scale(1.05);
    }
}

/* ============================================
   الطباعة
   ============================================ */

@media print {
    .speaker-card-modern {
        page-break-inside: avoid;
        animation: none !important;
    }
    
    .speakers-modern .row > .col-lg-4:nth-child(3n+2) .speaker-card-modern {
        margin-top: 0;
    }
    
    .speaker-card-modern:hover {
        transform: none;
    }
    
    .speaker-image-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   Accessibility - إمكانية الوصول
   ============================================ */

/* Focus للوحة المفاتيح */
.speaker-card-modern:focus-within {
    outline: 3px solid #8B4545;
    outline-offset: 5px;
    border-radius: 20px;
}

/* Reduced Motion للمستخدمين اللي ما يحبون الحركة */
@media (prefers-reduced-motion: reduce) {
    .speaker-card-modern,
    .speaker-image-modern,
    .speaker-name-modern,
    .speaker-bio-modern {
        transition: none !important;
        animation: none !important;
    }
    
    .speaker-card-modern:hover {
        transform: none;
    }
    
    .speaker-card-modern:hover .speaker-image-modern {
        transform: none;
        filter: none;
    }
}




