  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:"Tajawal","Amiri",system-ui,-apple-system,"Segoe UI",Roboto,Arial; 
        }
        :root {
            --primary-color: #0a192f;
            --secondary-color: #64ffda;
            --accent-color: #ffd700;
            --text-color: #e6f1ff;
            --text-secondary: #8892b0;
            --bg-color: #020c1b;
            --card-bg: rgba(17, 34, 64, 0.7);
            --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --glow: rgba(100, 255, 218, 0.3);
        }

        @media (prefers-reduced-motion: reduce) {
            :root {
                --transition: none;
            }
        }
       
         body {
             font-family:"Tajawal","Amiri",system-ui,-apple-system,"Segoe UI",Roboto,Arial; 
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--bg-color);
            transition: background-color 0.5s, color 0.5s;
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
            letter-spacing: 0.3px;
           font-size: 14px;
        }
        /* Enhanced Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Tajawal', 'Amiri', serif;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.5px;
            text-rendering: optimizeLegibility;
        }
        
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 0.8px;
        }
        
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: 0.6px;
        }
        
        h4 {
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        p, span, div {
            font-family: 'Tajawal', sans-serif;
            font-weight: 400;
            line-height: 1.8;
            letter-spacing: 0.2px;
        }
        
        .text-large {
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.9;
        }
        
        .text-medium {
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.8;
        }
        
        .text-small {
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.7;
        }
        
        /* Particle Background */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        @media (prefers-reduced-motion: reduce) {
            .particle {
                animation: none;
            }
        }

        @media (max-width: 768px) {
            .fog {
                opacity: 0.5;
            }
        }

        @media (max-width: 480px) {
            .fog {
                opacity: 0.4;
            }
        }

        @media (max-width: 768px) {
            .particles-container {
                display: none;
            }

            .fog {
                display: none;
            }
        }

        @media (max-width: 768px) {
            section {
                content-visibility: auto;
                contain-intrinsic-size: 800px;
            }
        }
        .particle {
            position: absolute;
            background-color: var(--secondary-color);
            border-radius: 50%;
            opacity: 0;
            animation: twinkle var(--duration) ease-in-out infinite;
            animation-delay: var(--delay);
        }
        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: var(--opacity); transform: scale(1); }
        }
        /* Cinematic Fog Effect */
        .fog {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 0%, var(--bg-color) 70%);
            opacity: 0.7;
            z-index: 1;
            pointer-events: none;
        }
        /* Header Styling */
        header {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1000;
            background-color: rgba(10, 25, 47, 0.9);
            backdrop-filter: blur(10px);
            color: var(--text-color);
        }

        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            header {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* تنسيقات زر القائمة المنسدلة */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }
        
        .hamburger {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--text-color);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .hamburger::before {
            transform: translateY(-8px);
        }
        
        .hamburger::after {
            transform: translateY(8px);
        }
        
        /* حالة القائمة المفتوحة */
        .menu-toggle[aria-expanded="true"] .hamburger {
            background: transparent;
        }
        
        .menu-toggle[aria-expanded="true"] .hamburger::before {
            transform: rotate(45deg);
        }
        
        .menu-toggle[aria-expanded="true"] .hamburger::after {
            transform: rotate(-45deg);
        }
        
        /* تنسيقات القائمة */
       .main-nav {
           display: flex;
           gap: 15px;
           align-items: center;
           justify-content: center;
           flex-wrap: wrap;
       }
       
       .main-nav a {
           color: var(--text-color);
           text-decoration: none;
           font-size: 1.0rem;
           font-weight: 600;
           font-family: 'Tajawal', sans-serif;
           transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
           padding: 10px 16px;
           border-radius: 8px;
           position: relative;
           display: flex;
           align-items: center;
           justify-content: center;
           text-align: center;
           line-height: 1.5;
           min-width: 100px;
       }
       
       .main-nav a:hover {
           color: var(--secondary-color);
           background: rgba(100, 255, 218, 0.1);
           transform: translateY(-2px);
       }
       
       .main-nav a::before {
           content: '';
           position: absolute;
           bottom: 4px;
           right: 16px;
           left: 16px;
           height: 2px;
           background: var(--secondary-color);
           transform: scaleX(0);
           transform-origin: center;
           transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       }
       
       .main-nav a:hover::before {
           transform: scaleX(1);
       }
       
       .nav-inquiry-btn {
           background: linear-gradient(135deg, var(--secondary-color), #4fd1c5) !important;
           color: var(--primary-color) !important;
           padding: 10px 24px !important;
           border-radius: 50px !important;
           font-weight: 700 !important;
           display: inline-flex !important;
           align-items: center;
           gap: 10px;
           transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
           box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
           border: none !important;
           min-width: auto;
           margin-right: 5px;
       }
       
       .nav-inquiry-btn:hover {
           transform: translateY(-3px) !important;
           box-shadow: 0 8px 25px rgba(100, 255, 218, 0.5) !important;
           background: linear-gradient(135deg, #7dffe0, #5fd9d0) !important;
       }
       
       .nav-inquiry-btn i {
           font-size: 1.2rem;
       }

       /* Responsive adjustments */
       @media (max-width: 1200px) {
           .main-nav {
               gap: 12px;
           }
           
           .main-nav a {
               font-size: 1rem;
               padding: 8px 12px;
               min-width: 80px;
           }
           
           .nav-inquiry-btn {
               padding: 8px 18px !important;
               font-size: 0.95rem !important;
           }
       }
        header a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            margin-left: 20px;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
            letter-spacing: 0.3px;
        }
        header a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        header a:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }
        header a:hover::after {
            width: 100%;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            /* font-family: 'Amiri', serif; */
            background: linear-gradient(to right, var(--text-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
            letter-spacing: 1px;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        /* Main Hero Section */
        .main {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(2, 12, 27, 0.8), rgba(10, 25, 47, 0.9)),
                         url('https://images.unsplash.com/photo-1556388158-158ea5ccacbd?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover;
            padding: 0 20px;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        .main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
            animation: pulse 8s infinite alternate;
        }
        @keyframes pulse {
            0% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.05); }
            100% { opacity: 0.2; transform: scale(1); }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .main-content {
            background: linear-gradient(135deg, rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.9));
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            padding: 45px;
            border-radius: 20px;
            max-width: 600px;
            border: 1px solid rgba(100, 255, 218, 0.25);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 
                        0 0 40px rgba(100, 255, 218, 0.15),
                        inset 0 0 20px rgba(100, 255, 218, 0.05);
            animation: fadeIn 1.5s ease-out, float 6s ease-in-out infinite;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .main-content {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .main-content {
                animation: none;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
            }
        }

        @media (max-width: 768px) {
            .main-content::before {
                animation: none;
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .main-content:hover {
                transform: none;
                box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 
                            0 0 40px rgba(100, 255, 218, 0.15),
                            inset 0 0 20px rgba(100, 255, 218, 0.05);
                border-color: rgba(100, 255, 218, 0.25);
            }
        }
        
        .main-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
                       0 0 50px rgba(100, 255, 218, 0.25),
                       inset 0 0 30px rgba(100, 255, 218, 0.1);
            border-color: rgba(100, 255, 218, 0.35);
        }
        .main-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(
                circle at center,
                var(--glow) 0%,
                rgba(100, 255, 218, 0.1) 20%,
                transparent 60%
            );
            opacity: 0.15;
            animation: rotate 20s linear infinite;
            pointer-events: none;
            animation: rotate 15s linear infinite;
        }
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        .main h2 {
            font-size: 3.2rem;
            color: var(--text-color);
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
            margin-bottom: 15px;
            font-weight: 900;
            letter-spacing: 2px;
            font-family: 'Amiri', serif;
        }
        .main span {
            display: block;
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            text-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .main h3 {
            font-size: 1.6rem;
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-weight: 400;
            line-height: 1.6;
        }
        .btn {
            display: inline-block;
            background-color: transparent;
            color: var(--secondary-color);
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid var(--secondary-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
            cursor: pointer;
            letter-spacing: 0.5px;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(100, 255, 218, 0.1);
            transition: width 0.3s ease;
            z-index: -1;
        }
        .btn:hover {
            box-shadow: 0 0 15px var(--glow);
            transform: translateY(-3px);
        }
        .btn:hover::before {
            width: 100%;
        }
        /* Section Styling */
        section {
            padding: 100px 5%;
            position: relative;
            z-index: 2;
        }
        section h2 {
            font-size: 2.8rem;
            margin-bottom: 50px;
            color: var(--text-color);
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            font-weight: 800;
            font-family: 'Amiri', serif;
            letter-spacing: 1px;
        }
        section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            box-shadow: 0 0 10px var(--glow);
        }
        section p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.9;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        /* Services Cards */
        .services {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        .service-card {
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 35px;
            width: 300px;
            box-shadow: var(--card-shadow);
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(100, 255, 218, 0.1);
            position: relative;
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
        }

        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .service-card {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }

        @media (max-width: 768px) {
            .service-card {
                backdrop-filter: blur(6px);
                -webkit-backdrop-filter: blur(6px);
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
            }
            .service-card:hover {
                transform: translateY(-6px);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .service-card,
            .service-card:hover,
            .service-card:hover .service-icon {
                transition: none;
                transform: none;
                box-shadow: var(--card-shadow);
            }
        }

        .service-card.animated {
            transform: translateY(0);
            opacity: 1;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow);
            border-color: rgba(100, 255, 218, 0.3);
        }
        .service-card:hover::before {
            opacity: 1;
        }
        .service-card h3 {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.4s ease;
        }
        .service-card:hover h3::after {
            width: 100%;
        }
        .service-card p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.8;
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            transition: all 0.5s ease;
            width: 80px;
            height: 80px;
            background: rgba(10, 25, 47, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 1px solid rgba(100, 255, 218, 0.3);
            position: relative;
        }
        .service-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 1px solid var(--secondary-color);
            opacity: 0;
            transition: all 0.5s ease;
        }
        .service-card:hover .service-icon {
            transform: rotate(15deg) scale(1.1);
            box-shadow: 0 0 20px var(--glow);
        }
        .service-card:hover .service-icon::after {
            opacity: 1;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
        }
        /* Tourism Section */
        .tourism {
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            margin: 40px auto;
            max-width: 1000px;
            text-align: center;
        }

        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .tourism {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }

        @media (max-width: 768px) {
            .tourism {
                backdrop-filter: blur(6px);
                -webkit-backdrop-filter: blur(6px);
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
            }
        }

        }
        .tourism::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(100, 255, 218, 0.2) 0%, transparent 100%);
            transition: all 0.6s ease;
        }
        .tourism:hover::before {
            top: 0;
            left: 0;
        }
        .tourism:hover {
            border-color: rgba(100, 255, 218, 0.3);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow);
        }
        .tourism h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 1.8rem;
        }
        .tourism h1 {
           color: var(--text-color);
           margin-bottom: 20px;
           font-size: 2.4rem;
           position: relative;
           display: inline-block;
           font-weight: 800;
           font-family: 'Amiri', serif;
        }
        .tourism h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.4s ease;
        }
        .tourism:hover h1::after {
            width: 100%;
        }
        .tourism p {
            font-size: 1.15rem;
            line-height: 1.9;
            font-weight: 400;
        }
        /* Image Slideshow */
        .image-slideshow {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 40px auto;
            overflow: hidden;
            position: relative;
            height: 500px;
            width: 90%;
            max-width: 1200px;
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(100, 255, 218, 0.1);
            transition: var(--transition);
        }
        .image-slideshow:hover {
            border-color: rgba(100, 255, 218, 0.3);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 30px var(--glow);
        }
        .image-slideshow img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateX(100%);
            display: block;
            border-radius: 15px;
            filter: brightness(0.8) contrast(1.1);
        }
        .image-slideshow img.active {
            transform: translateX(0);
            animation: zoomEffect 8s infinite alternate;
        }

        @media (prefers-reduced-motion: reduce) {
            .image-slideshow img.active {
                animation: none;
            }
        }
        @keyframes zoomEffect {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }
        .slideshow-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        .slideshow-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .slideshow-dot.active {
            background-color: var(--secondary-color);
            transform: scale(1.2);
            box-shadow: 0 0 10px var(--glow);
            border-color: var(--secondary-color);
        }
        .slideshow-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(10, 25, 47, 0.7);
            color: var(--text-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
            border: 1px solid rgba(100, 255, 218, 0.2);
        }
        .slideshow-arrow:hover {
            background-color: rgba(100, 255, 218, 0.2);
            color: var(--secondary-color);
            border-color: var(--secondary-color);
            box-shadow: 0 0 15px var(--glow);
        }
        .slideshow-arrow.prev {
            left: 20px;
        }
        .slideshow-arrow.next {
            right: 20px;
        }
        /* نافذة منبثقة */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            overflow-y: auto;
            padding: 40px 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        
        .modal-content {
            background: linear-gradient(145deg, #0a192f, #0f2742);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            margin: 20px auto;
            border: 1px solid rgba(100, 255, 218, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(100, 255, 218, 0.1);
            transform: translateY(0);
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .modal-scrollable {
            overflow-y: auto;
            max-height: 60vh;
            margin: 15px -10px;
            padding: 0 15px;
            scrollbar-width: thin;
            scrollbar-color: var(--secondary-color) rgba(100, 255, 218, 0.1);
        }
        
        /* تخصيص شريط التمرير */
        .modal-scrollable::-webkit-scrollbar {
            width: 6px;
        }
        
        .modal-scrollable::-webkit-scrollbar-track {
            background: rgba(100, 255, 218, 0.1);
            border-radius: 10px;
        }
        
        .modal-scrollable::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 10px;
        }
        
        .modal-scrollable::-webkit-scrollbar-thumb:hover {
            background: #52d3aa;
        }
        
        .modal-overlay.active .modal-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .modal-icon {
            font-size: 3.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }
        
        .modal-content h3 {
            color: var(--text-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .modal-content p {
            color: var(--text-secondary);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .modal-btn {
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .modal-btn:hover {
            background: #52d3aa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 1.8rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--secondary-col