:root {
            --primary: #00f3ff; /* Cyber Cyan */
            --secondary: #0d6efd; /* Trust Blue */
            --dark-bg: #050a14; /* Deep Navy/Black */
            --card-bg: #0b1221;
            --text-main: #e0e6ed;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-main);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
        }

        /* Navbar */
        .navbar {
            background: rgba(5, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 243, 255, 0.1);
        }
        
        .navbar-brand svg {
            height: 50px;
            width: auto;
            color: var(--primary);
            filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
        }

        .nav-link {
            color: #fff !important;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: var(--primary) !important;
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
        }

        /* Hero Section */
        #hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        #hero canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.4;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            background: -webkit-linear-gradient(#fff, #87cefa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #aab2c0;
            margin-bottom: 2rem;
        }

        .btn-cyber {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 30px;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-cyber:hover {
            background: var(--primary);
            color: #000;
            box-shadow: 0 0 20px var(--primary);
        }

        /* Services Section */
        .service-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 5px;
            transition: transform 0.3s, border-color 0.3s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px -10px rgba(0, 243, 255, 0.2);
        }

        .icon-box {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* About Section */
        .about-img-wrapper {
            position: relative;
        }
        
        .about-img-wrapper::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: -15px;
            bottom: -15px;
            border: 2px solid var(--primary);
            z-index: -1;
        }

        /* Contact Section */
        .form-control {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
            padding: 15px;
        }

        .form-control:focus {
            background: rgba(255,255,255,0.1);
            border-color: var(--primary);
            color: #fff;
            box-shadow: none;
        }

        /* Footer */
        footer {
            border-top: 1px solid rgba(255,255,255,0.1);
            background: #020408;
            padding: 50px 0 20px;
        }

        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            border-radius: 50%;
            margin-right: 10px;
            transition: 0.3s;
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--primary);
            color: #000;
        }
        
        /* Floating WhatsApp */
        .float-wa {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            width: 60px;
            height: 60px;
            line-height: 63px;
            z-index: 100;
            box-shadow: 0px 0px 15px rgba(37, 211, 102, 0.5);
            transition: all 0.3s;
        }
        .float-wa:hover {
            transform: scale(1.1);
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.2rem; }
        }
		
		/* WhatsApp Button (Bottom) */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px; /* Sits 20px from bottom */
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Email Button (Sits ABOVE WhatsApp) */
.float-email {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px; /* 20px base + 60px height + 10px gap = 90px */
    right: 20px;
    background-color: #0ea5e9; /* Professional Blue to match your theme */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px; /* Slightly smaller icon usually looks better */
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: Hover effects for better UX */
.float-wa:hover {
    background-color: #20bd5a;
    color: #FFF;
}
.float-email:hover {
    background-color: #0284c7;
    color: #FFF;
}