/* --- THEME CONFIGURATION --- */
        :root {
            /* Logo Gradient Extraction */
            --primary: #00c6ff;      /* Cyan */
            --secondary: #9d50bb;    /* Violet */
            --accent: #d946ef;       /* Pinkish Purple */
            
            --grad-main: linear-gradient(135deg, var(--primary), var(--secondary));
            --grad-text: linear-gradient(to right, #00c6ff, #d946ef);
            --grad-dark: linear-gradient(to bottom, #050510, #0a0a1a);

            /* Backgrounds */
            --bg-dark: #050510;
            --bg-card: #0f1020;
            --bg-white: #ffffff;
            --bg-light: #f8fafc;

            /* Typography */
            --text-white: #ffffff;
            --text-dark: #1e293b;
            --text-gray: #64748b;
            --text-gray-dark: #94a3b8;
        }

        /* --- GLOBAL RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
        body { font-family: 'Outfit', sans-serif; overflow-x: hidden; }
        h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }
        img { width: 100%; height: auto; }
        a { text-decoration: none; transition: 0.3s; }
        ul { list-style: none; }

        /* --- UTILITIES --- */
        .container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }
        .gradient-text { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        
        .section-padding { padding: 100px 0; }
        
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
        .section-title p { max-width: 600px; margin: 0 auto; color: var(--text-gray); }

        .btn {
            display: inline-block;
            padding: 14px 35px;
            background: var(--grad-main);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 5px 20px rgba(0, 198, 255, 0.3);
            border: none;
            cursor: pointer;
        }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(157, 80, 187, 0.4); }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: rgba(5, 5, 16, 0.9); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05); padding: 15px 0;
        }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo img { height: 60px; width: auto; border-radius: 6px; } /* Logo Sizing */
        
        .nav-links { display: flex; gap: 30px; }
        .nav-links a { color: var(--text-white); font-weight: 500; font-size: 0.95rem; }
        .nav-links a:hover { color: var(--primary); }
        .menu-btn { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

        /* --- HERO SECTION (DARK) --- */
        #home {
            min-height: 100vh;
            background: radial-gradient(circle at top right, rgba(0,198,255,0.1), transparent 40%),
                        radial-gradient(circle at bottom left, rgba(157,80,187,0.15), transparent 40%),
                        var(--bg-dark);
            display: flex; align-items: center; justify-content: center;
            text-align: center; padding-top: 80px; position: relative;
        }
        .hero-content h1 { font-size: 4.5rem; color: white; line-height: 1.1; margin-bottom: 25px; }
        .hero-content p { color: var(--text-gray-dark); font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; }
        
        /* Stats Floating Box */
        .stats-float {
            position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
            width: 90%; max-width: 1000px; background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 15px;
            display: flex; justify-content: space-around; padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5); z-index: 2;
        }
        .stat h3 { font-size: 2.5rem; color: var(--primary); }
        .stat p { color: white; font-size: 0.9rem; }

        /* --- ABOUT (WHITE) --- */
        #about { background: var(--bg-white); padding-top: 150px; padding-bottom: 100px; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-text h2 { font-size: 3rem; color: var(--text-dark); margin-bottom: 20px; }
        .about-text p { color: var(--text-gray); margin-bottom: 20px; line-height: 1.7; }
        .about-img img { border-radius: 20px; box-shadow: 30px 30px 0 var(--bg-light); }
        
        /* --- SERVICES (DARK) --- */
        #services { background: var(--bg-dark); color: white; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .service-card {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
            padding: 40px; border-radius: 15px; transition: 0.4s;
        }
        .service-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.05); border-color: var(--secondary); }
        .service-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 25px; }
        .service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
        .service-card p { color: var(--text-gray-dark); line-height: 1.6; }

        /* --- WHY US (WHITE) --- */
        #why-us { background: var(--bg-light); }
        .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .feature-box { background: white; padding: 30px; border-radius: 15px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .feature-icon { width: 70px; height: 70px; background: rgba(0,198,255,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; }
        .feature-box h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-dark); }
        
        /* --- TECH STACK (DARK) --- */
        #tech { background: #020205; text-align: center; padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.05); }
        .tech-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 40px; }
        .tech-badge { padding: 10px 25px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; color: var(--text-gray-dark); font-weight: 500; }
        .tech-badge:hover { border-color: var(--primary); color: white; box-shadow: 0 0 15px rgba(0,198,255,0.3); }

        /* --- PROCESS (WHITE) --- */
        #process { background: var(--bg-white); }
        .process-steps { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; text-align: center; }
        .step { flex: 1; min-width: 200px; position: relative; }
        .step-num { font-size: 4rem; font-weight: 700; color: rgba(0,0,0,0.05); margin-bottom: -20px; display: block; }
        .step h4 { color: var(--text-dark); font-size: 1.3rem; margin-bottom: 10px; }
        .step p { color: var(--text-gray); font-size: 0.9rem; }

        /* --- PORTFOLIO (DARK) --- */
        #portfolio { background: var(--bg-dark); }
        .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 20px; }
        .work-item { position: relative; border-radius: 15px; overflow: hidden; height: 300px; group: cursor; }
        .work-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .work-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, black, transparent);
            display: flex; flex-direction: column; justify-content: end; padding: 30px;
            opacity: 0; transition: 0.3s;
        }
        .work-item:hover img { transform: scale(1.1); }
        .work-item:hover .work-overlay { opacity: 1; }
        .work-overlay h3 { color: white; margin-bottom: 5px; }
        .work-overlay span { color: var(--primary); font-size: 0.9rem; }

        /* --- CONTACT (GRADIENT/DARK) --- */
        #contact { background: linear-gradient(to bottom, #050510, #1a0b2e); color: white; }
        .contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 50px; border-radius: 20px; }
        
        .contact-info-item { display: flex; gap: 20px; margin-bottom: 30px; }
        .info-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
        .info-content h4 { font-size: 1.1rem; margin-bottom: 5px; }
        .info-content p, .info-content a { color: var(--text-gray-dark); font-size: 0.95rem; }
        .info-content a:hover { color: var(--primary); }

        .social-links { margin-top: 30px; }
        .social-links a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; justify-content: center; align-items: center; margin-right: 10px; color: white; }
        .social-links a:hover { background: var(--grad-main); }

        .form-group { margin-bottom: 20px; }
        input, textarea { width: 100%; padding: 15px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: white; font-family: inherit; }
        input:focus, textarea:focus { outline: none; border-color: var(--primary); }

        /* --- FOOTER --- */
        footer { background: black; padding: 40px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); color: var(--text-gray-dark); }
        
        /* --- FLOATING WHATSAPP --- */
        .float-wa {
            position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px;
            background: #25d366; color: white; border-radius: 50%; display: flex;
            align-items: center; justify-content: center; font-size: 35px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 9999;
        }
        .float-wa:hover { transform: scale(1.1); }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .hero-content h1 { font-size: 3rem; }
            .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
            .stats-float { position: relative; width: 100%; margin-top: 40px; bottom: 0; flex-wrap: wrap; gap: 20px; }
            .menu-btn { display: block; }
            .nav-links {
                position: absolute; top: 75px; left: 0; width: 100%; background: #050510;
                flex-direction: column; align-items: center; padding: 40px 0;
                transform: translateY(-150%); transition: 0.5s;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links.active { transform: translateY(0); }
        }