        :root {
            --bg-dark: #080808;
            --purple: #8B5CF6;
            --neon-green: #22C55E;
            --zinc: #18181b;
            --card-bg: #111111;
        }

        body {
            background-color: var(--bg-dark);
            color: white;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, .nav-link, .navbar-brand { font-family: 'Space Grotesk', sans-serif; }

        .navbar.sticky-top {
            background-color: rgba(8, 8, 8, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .btn-neon {
            background: var(--purple);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
            transition: all 0.3s ease-in-out;
            text-decoration: none;
            display: inline-block;
        }

        .btn-neon:hover {
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
            transform: translateY(-3px);
            color: white;
        }

        /* .glitch-text {
            background: linear-gradient(90deg, #fff, var(--purple), var(--neon-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        } */

        /* Hero Image Box Styling */
        .image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .img-bg-box {
            position: absolute;
            width: 85%;
            height: 85%;
            background: linear-gradient(135deg, var(--purple), #3b82f6);
            border-radius: 30px;
            filter: blur(50px);
            opacity: 0.25;
            z-index: 1;
            animation: pulse-glow 4s infinite alternate;
        }

        .hero-img {
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease;
        }

        .hero-img:hover {
            transform: translateY(-10px) scale(1.02);
        }

        @keyframes pulse-glow {
            from { opacity: 0.15; transform: scale(0.9); }
            to { opacity: 0.35; transform: scale(1.1); }
        }

        /* Services Cards */
        .service-card {
            background: var(--card-bg);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 40px 25px;
            border-radius: 24px;
            transition: all 0.4s ease-in-out;
            height: 100%;
            text-align: left;
        }

        .service-card:hover {
            border-color: var(--purple);
            transform: translateY(-10px);
            background: #161616;
        }

        /* Portfolio */
        .filter-btn {
            border: 1px solid rgba(255,255,255,0.2) !important;
            color: #ccc !important;
            transition: all 0.3s ease;
        }

        .filter-btn.active {
            background-color: var(--purple) !important; 
            color: white !important;
            border: none !important;
        }

        .portfolio-item {
            border-radius: 18px;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: #000;
            border: 2px solid #1a1a1a;
            transition: all 0.3s ease;
        }

        /* Shorts special ratio */
        .portfolio-card.shorts .portfolio-item {
            aspect-ratio: 9/16;
            max-width: 300px;
            margin: 0 auto;
        }

        .portfolio-item:hover {
            border-color: var(--purple);
            transform: scale(1.02);
        }

        .portfolio-item iframe { width: 100%; height: 100%; border: none; }

        /* Social Icons Styling */
        .social-link {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #1a1a1a;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--purple);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
        }

        /* Marquee */
        .marquee {
            display: flex;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            padding: 40px 0;
            background: #0f0f0f;
            width: 100%;
        }

        .marquee-content {
            display: flex;
            gap: 2rem;
            animation: seamless-loop 30s linear infinite;
            width: max-content;
        }

        .marquee:hover .marquee-content {
            animation-play-state: paused;
        }

        @keyframes seamless-loop {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); } 
        }

        .marquee-item {
            background: var(--zinc);
            padding: 30px;
            border-radius: 20px;
            min-width: 350px;
            border: 1px solid rgba(255,255,255,0.05);
            flex-shrink: 0;
        }

        .form-control {
            background-color: #1a1a1a !important;
            border: 1px solid rgba(255,255,255,0.1) !important;
            color: white !important;
        }





 /* --- ABOUT/PORTFOLIO PAGE STYLES --- */
:root {
    --bg-dark: #080808;
    --purple: #8B5CF6;
    --zinc: #18181b;
}

/* Dropdown Customization */
.dropdown-menu::-webkit-scrollbar { width: 5px; }
.dropdown-menu::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

.dropdown-item {
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--purple) !important;
    color: white !important;
    padding-left: 30px !important;
}

.btn-outline-purple {
    border: 2px solid var(--purple) !important;
    transition: 0.3s;
}

.btn-outline-purple:hover {
    background-color: var(--purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* Video Card Styling */
.video-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.4s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-title-box {
    padding: 12px;
    background: #18181b;
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-top: 1px solid #222;
}

/* --- GRID SYSTEM FIX --- */

/* PC View: 4 Videos in 1 Row */
@media (min-width: 992px) {
    #video-grid .video-col {
        width: 25%; /* 4 columns */
    }
}

/* Tablet View: 3 Videos in 1 Row */
@media (min-width: 768px) and (max-width: 991px) {
    #video-grid .video-col {
        width: 33.33%; 
    }
}

/* Mobile View: 2 Videos in 1 Row */
@media (max-width: 767px) {
    #video-grid .video-col {
        width: 50%; /* 2 columns */
    }
    .display-6 { font-size: 1.8rem; } /* Text adjust for mobile */
}




/* --- CONTACT PAGE STYLES --- */
:root { 
    --bg-dark: #080808; 
    --purple: #8B5CF6; 
    --zinc: #18181b; 
}

.glitch-text { 
    background: linear-gradient(90deg, #fff, var(--purple), #22C55E); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: 800; 
}

.contact-card {
    background: #111; 
    border-radius: 30px; 
    border: 1px solid #222; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.contact-icon { 
    width: 50px; 
    height: 50px; 
    background: rgba(139, 92, 246, 0.1); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #8B5CF6; 
    border: 1px solid rgba(139, 92, 246, 0.2); 
}

.social-box { 
    flex: 1; 
    background: #111; 
    border: 1px solid #222; 
    padding: 15px 10px; 
    border-radius: 15px; 
    text-align: center; 
    color: #888; 
    text-decoration: none; 
    transition: 0.3s; 
}

.social-box:hover { 
    background: var(--purple); 
    color: white; 
    border-color: var(--purple); 
    transform: translateY(-5px); 
}

.custom-input { 
    background: #18181b !important; 
    border: 1px solid #222 !important; 
    color: white !important; 
    padding: 15px !important; 
    border-radius: 12px !important; 
    font-size: 14px;
}

.custom-input:focus { 
    border-color: var(--purple) !important; 
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.1) !important; 
    outline: none;
}

.custom-input::placeholder { color: #444; }

.btn-neon {
    background: var(--purple);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    transition: 0.3s ease;
    text-decoration: none;
}

.btn-neon:hover {
    background: #7C3AED;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
    color: white;
}