
        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #0f172a;
            --accent: #06b6d4;
            --light: #f8fafc;
            --gray: #64748b;
            --dark: #1e293b;
            --tech-gradient: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(15, 23, 42, 0.9);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #cbd5e1;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        .nav-links a:hover {
            color: white;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--accent);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
            z-index: -1;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 500px;
        }
        
        .hero-text h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 10px;
            font-weight: 300;
        }
        
        .typed-text {
            color: var(--primary);
            font-weight: 700;
        }
        
        .cursor {
            display: inline-block;
            width: 3px;
            background-color: var(--accent);
            margin-left: 2px;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }
        
        .hero-text p {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .btn {
            display: inline-block;
            background: var(--tech-gradient);
            color: white;
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn: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.7s;
            z-index: -1;
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background: var(--accent);
            color: var(--secondary);
        }
       
        .image-area img {
    filter: brightness(50%); /* 50% brightness darkens it */
    width: 100%;
    height: 100%;
    object-fit: cover;
}
        .image-area {
            position: relative;
            width: 120%;
            height: 100%;
            min-height: 500px;
            display: flex;
            overflow: hidden;
            border-radius: 2%;
        }
        
        .image-area img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position:right center;
            border-radius: 8px;
            transition: transform 0.5s ease;
        }
        
        .image-area:hover img {
            transform: scale(1.02);
        }
        
        .image-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
            pointer-events: none;
        }
        
        .tech-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 65%, rgba(99, 102, 241, 0.05) 100%),
                linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background: rgba(15, 23, 42, 0.7);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            background: linear-gradient(to right, var(--accent), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 12px;
            padding: 40px 30px;
            transition: all 0.4s;
            border: 1px solid rgba(99, 102, 241, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .product-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--tech-gradient);
            transition: width 0.4s;
        }
        
        .product-card:hover:before {
            width: 100%;
            opacity: 0.1;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--accent);
        }
        
        .product-icon {
            font-size: 50px;
            color: var(--accent);
            margin-bottom: 25px;
        }
        
        .product-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: white;
            position: relative;
            z-index: 2;
        }
        
        .product-card p {
            color: #cbd5e1;
            position: relative;
            z-index: 2;
        }
        
        /* Footer */
        footer {
            background-color: rgba(15, 23, 42, 0.95);
            padding: 70px 0 30px;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-links h4, .footer-contact h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4:after, .footer-contact h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--tech-gradient);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            color: #cbd5e1;
        }
        
        .footer-contact i {
            color: var(--accent);
            margin-right: 10px;
            width: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .hero-text h1 {
                font-size: 3rem;
            }
            
            .image-area {
                min-height: 400px;
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(15, 23, 42, 0.95);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
                backdrop-filter: blur(10px);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-outline {
                margin-left: 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .image-area {
                min-height: 350px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 2.2rem;
            }
            
            .products {
                padding: 70px 0;
            }
            
            .image-area {
                min-height: 300px;
            }
        }
        
        /* Animation for floating effect */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .floating {
            animation: float 5s ease-in-out infinite;
        }

        .newsletter {
    padding: 60px 20px;
    text-align: center;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    margin: 50px ;
}
.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.newsletter p {
    color: #cbd5e1;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.newsletter input[type="email"] {
    padding: 12px 15px;
    width: 250px;
    border-radius: 8px 0 0 8px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.newsletter button {
    padding: 12px 25px;
    border-radius: 0 8px 8px 0;
    border: none;
    background: var(--accent);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 9px;
}

.newsletter button:hover {
    background: var(--primary);
}

