    * {
            font-family: 'Cairo', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a0a0a 100%);
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }
        
        /* AI Background Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
            z-index: -1;
        }
        
        /* Animated particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #3b82f6;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            opacity: 0.6;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }
        
        /* Header Styles */
        .navbar-custom {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .navbar-brand {
            color: #3b82f6 !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        /* .logo-placeholder {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        } */

        .logo-placeholder {
    display: none;
}

        
        /* Move navigation to left */
        .navbar-nav {
            margin-right: auto !important;
            margin-left: 0 !important;
        }
        
        .nav-link {
            color: #d1d5db !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: #3b82f6 !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-email {
         background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border: none;
            color: white;
            font-weight: 500;
            padding: 8px 20px;
            border-radius: 0px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-email:hover {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        /* Hero Section with Enhanced Visuals */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero-visual {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            opacity: 0.1;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            margin-top: 145px; /* Adjusted for moved logo */
        }

        
        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 2rem;
            text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3)); }
            to { filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4)); }
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: #d1d5db;
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero-icons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        
        .hero-icon {
            width: 80px;
            height: 80px;
            background: rgba(59, 130, 246, 0.1);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #3b82f6;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .hero-icon:hover {
            background: rgba(59, 130, 246, 0.2);
            border-color: #3b82f6;
            transform: translateY(-5px);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
            100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
        }
        
        .btn-discover {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border: none;
            color: white;
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 0px;
            font-size: 1.1rem;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-discover::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-discover:hover::before {
            left: 100%;
        }
        
        .btn-discover:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
            color: white;
        }
        
        /* Section Styles */
        .section-about {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            padding: 5rem 0;
            border-top: 1px solid rgba(59, 130, 246, 0.1);
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        }
        
        .section-products {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            padding: 5rem 0;
        }
        
        .section-vision {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.9));
            backdrop-filter: blur(10px);
            padding: 5rem 0;
            border-top: 1px solid rgba(59, 130, 246, 0.1);
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 2rem;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .section-icon {
            font-size: 4rem;
            color: #3b82f6;
            margin-bottom: 2rem;
            filter: drop-shadow(0 4px 15px rgba(59, 130, 246, 0.3));
        }
        
        /* Product Cards */
        .product-card {
            background: rgba(26, 26, 26, 0.8);
            border: 1px solid rgba(59, 130, 246, 0.2);
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .product-card:hover::before {
            transform: scaleX(1);
        }
        
        .product-card:hover {
            border-color: #3b82f6;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
        }
        
        .product-card h3 {
            color: #fff;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .product-card p {
            color: #d1d5db;
            margin-bottom: 1.5rem;
        }
        
        .product-card ul {
            color: #9ca3af;
            list-style: none;
            padding: 0;
        }
        
        .product-card ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 20px;
        }
        
        .product-card ul li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #3b82f6;
            font-size: 0.8rem;
        }
        
        /* Stats */
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            color: #d1d5db;
            font-weight: 500;
        }
        
        /* Vision Box */
        .vision-box {
            background: rgba(31, 41, 55, 0.6);
            border: 1px solid rgba(59, 130, 246, 0.3);
            padding: 3rem;
            backdrop-filter: blur(15px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .vision-quote {
            font-size: 1.5rem;
            color: #d1d5db;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-style: normal;
        }
        
        .vision-item h4 {
            color: #3b82f6;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .vision-item p {
            color: #d1d5db;
        }
        .vision-item{
            text-align: right !important;
        }
        
        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.9);
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            padding: 3rem 0;
            backdrop-filter: blur(10px);
        }
        
        /* Responsive */

@media (max-width: 576px) {
    .logo-circle-container {
        width: 110px;
        height: 110px;
        top: 70px;
       display: block;  /* Keep visible on small screens */
    }
    
    .logo-content {
        width: 65px;
        height: 65px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .logo-content img {
        width: 50px;
        height: 50px;
    }
    
    .hero-content {
        margin-top: 65px;
    }
}


    @media (max-width: 768px) {
    .logo-circle-container {
        width: 140px;
        height: 140px;
        top: 25px;
        display: block; /* Ensure it stays visible */
    }
    
    .logo-content {
        width: 85px;
        height: 85px;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .logo-content img {
        width: 65px;
        height: 65px;
    }
    
    .hero-content {
        margin-top: 85px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-icons {
        gap: 1rem;
    }
    
    .hero-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Responsive Design - Keep logo visible */
@media (max-width: 1200px) {
    .logo-circle-container {
        width: 220px;
        height: 220px;
        top: 35px;
    }
    
    .logo-content {
        width: 130px;
        height: 130px;
        background: rgba(255, 255, 255, 0.18);
    }
    
    .logo-content img {
        width: 100px;
        height: 100px;
    }
    
    .hero-content {
        margin-top: 125px;
    }
}

@media (max-width: 992px) {
    .logo-circle-container {
        width: 180px;
        height: 180px;
        top: 70px;
    }
    
    .logo-content {
        width: 110px;
        height: 110px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .logo-content img {
        width: 85px;
        height: 85px;
    }
    
    .hero-content {
        margin-top: 105px;
    }
}

/* Only show header logo on very small screens (below 480px) */
@media (max-width: 480px) {
    .logo-placeholder {
        display: flex;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        border: 2px solid rgba(59, 130, 246, 0.5);
        position: relative;
        overflow: hidden;
    }
    
    .logo-placeholder::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #3b82f6, #8b5cf6, #10b981, #3b82f6);
        background-size: 200% 200%;
        border-radius: 14px;
        z-index: -1;
        animation: gradientRotate 2s ease-in-out infinite;
    }
    
    .logo-placeholder img {
        width: 35px;
        height: 35px;
        object-fit: contain;
        border-radius: 8px;
        filter: brightness(1.2);
    }
    
    .hero-content {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .logo-circle-container {
        width: 120px;
        height: 120px;
    }
    
    .logo-content {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .logo-content img {
        width: 50px;
        height: 50px;
    }
    
    .hero-content {
        margin-top: 60px;
    }
    
    /* Enhanced mobile logo placeholder */
    .logo-placeholder {
        display: flex;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        border: 2px solid rgba(59, 130, 246, 0.5);
        position: relative;
        overflow: hidden;
    }
    
    .logo-placeholder::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #3b82f6, #8b5cf6, #10b981, #3b82f6);
        background-size: 200% 200%;
        border-radius: 14px;
        z-index: -1;
        animation: gradientRotate 2s ease-in-out infinite;
    }
    
    .logo-placeholder img {
        width: 35px;
        height: 35px;
        object-fit: contain;
        border-radius: 8px;
        filter: brightness(1.2);
    }
    
    .logo-circle-container {
        display: none;
    }
}

@media (max-width: 360px) {
    .logo-circle-container {
        display: none;
    }
    
    .hero-content {
        margin-top: 10px;
    }
}

        /* Additional enhancement for logo visibility */
.logo-content {
    /* Add a subtle inner glow */
    box-shadow: 
        inset 0 2px 10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(59, 130, 246, 0.3),
        0 0 40px rgba(139, 92, 246, 0.2);
}

/* Make the logo image pop more */
.logo-content img {
    /* Add subtle drop shadow to the logo image itself */
    filter: 
        brightness(1.1) 
        contrast(1.1) 
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 10px rgba(59, 130, 246, 0.2));
}
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }