  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'El Messiri', sans-serif;
        }
        
        :root {
            --primary: #4a6cf7;
            --secondary: #ff6b6b;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --blur-bg: rgba(255, 255, 255, 0.1);
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            min-height: 100vh;
            font-family: 'El Messiri', sans-serif;
        }  
        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            z-index: 1000;
            background: transparent;
            transition: all 0.4s ease;
        }
        
        .header.scrolled {
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .site-name {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }
        .hamburger-menu {
            width: 40px;
            height: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            z-index: 1001;
        }
        
        .hamburger-menu span {
            height: 4px;
            width: 100%;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .hamburger-menu.active span:nth-child(1) {
            transform: translateY(13px) rotate(45deg);
        }
        
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger-menu.active span:nth-child(3) {
            transform: translateY(-13px) rotate(-45deg);
        }
        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: var(--blur-bg);
            backdrop-filter: blur(15px);
            z-index: 999;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            padding: 100px 40px 40px;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            overflow-y: auto;
        }
        
        .sidebar.open {
            right: 0;
        }
        
        .sidebar-menu {
            list-style: none;
        }
        
  
        
        .sidebar-menu a {
            color: white;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            padding: 10px 15px;
            margin: 10px;
            display: block;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .sidebar-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .sidebar-menu a:before {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 0;
            width: 4px;
            background: var(--primary);
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .sidebar-menu a:hover:before {
            height: 70%;
        }
    .main-title {
  font-family: 'El Messiri', sans-serif;
  font-size: 48px;
  font-weight: bold;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
  text-align: center;
}
.main-description {
    font-family: 'El Messiri', sans-serif; /* نفس الخط */
    font-size: clamp(1rem, 2.5vw, 1.5rem); /* حجم متجاوب */
    color: #ffffff;                           /* لون رمادي هادئ */
    text-align: center;                     /* في منتصف الصفحة */
    max-width: 800px;                       /* يمنع امتداد النص على كامل الصفحة */
    margin: 10px auto 40px auto;           /* مسافة مناسبة بين العنوان والوصف وبقية الصفحة */
    line-height: 1.6;                       /* مسافة بين الأسطر */
}

        /* Slideshow Styles */
        .slideshow {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
            transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .slide-content {
            text-align: center;
            max-width: 800px;
            width: 100%;
        }  
        /* Social Icons */
        .social-icons {
            position: fixed;
            left: 20px;
            top: 90%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: row;
            gap: 20px;
            z-index: 100;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--blur-bg);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-icon:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary);
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .social-icon:hover:before {
            height: 100%;
        }
        
        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
        }
        
        .social-icon:nth-child(1):before { background: #3b5998; } /* Facebook */
        .social-icon:nth-child(2):before { background: #e1306c; } /* Instagram */
        .social-icon:nth-child(3):before { background: #ff0000; } /* YouTube */
        
        /* Contact Icons */
        .contact-icons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 100;
        }
        
        .contact-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--blur-bg);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .contact-icon:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .contact-icon:hover:before {
            height: 100%;
        }
        
        .contact-icon:nth-child(1):before { background: #25d366; } /* WhatsApp */
        .contact-icon:nth-child(2):before { background: #4a6cf7; } /* Call */        
        .contact-icon:hover {
            transform: scale(1.1);
        }  
        /* Responsive Styles */
        @media (max-width: 992px) {
            .sidebar {
                width: 300px;
            }
            
            .slide-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }
            
            .sidebar {
                width: 100%;
                right: -100%;
            }
            
            .slide-title {
                font-size: 2.5rem;
            }
            
            .social-icons {
                left: 10px;
            }
            
            .contact-icons {
                right: 10px;
                bottom: 10px;
            }
            
            .social-icon,
            .contact-icon {
                width: 25px;
                height: 25px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .site-name {
                font-size: 20px;
            }
            
            .logo-img {
                width: 60px;
                height: 60px;
                font-size: 16px;
            }
            
            .slide-title {
                font-size: 2rem;
            }
            
            .slide-text {
                font-size: 1.2rem;
            }
            
            .welcome-title {
                font-size: 2.2rem;
            }
            
            .welcome-text {
                font-size: 1.1rem;
            }
            
            .social-icons {
                display: none;
            }
        }
    