
        :root {
            --primary: #00f7ff;
            --secondary: #ff00e4;
            --dark: #0a0a14;
            --light: #ffffff;
            --gray: #2a2a3c;
            --neon-glow: 0 0 10px rgba(0, 247, 255, 0.8);
            --transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        [data-theme="light"] {
            --dark: #f5f5f7;
            --light: #1a1a2e;
            --gray: #e0e0e8;
            --primary: #6a00f4;
            --secondary: #ff6b00;
            --neon-glow: 0 0 10px rgba(106, 0, 244, 0.6);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html, body {
            overflow-x: hidden;
            width: 100%;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            transition: var(--transition);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

  /* Modern Loader Styles */
  /* .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.5s ease-out;
}


.loader-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #00d1ff;
    border-right-color: #00d1ff;
    animation: spin 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.2);
}

.loader-spinner-inner {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #ff2d75;
    border-right-color: #ff2d75;
    animation: spinReverse 4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.loader-logo {
    width: 40px;
    height: 40px;
    opacity: 0.9;
    animation: pulse 3.5s ease-in-out infinite;
}

.loader-text {
    margin-top: 30px;
    font-family: 'Segoe UI', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: textFade 5s ease-in-out infinite;
}

.progress-bars {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    border-radius: 3px;
    overflow: hidden;
}

.progres {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00d1ff, #ff2d75);
    border-radius: 3px;
    transition: width 0.8s ease;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-720deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes textFade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
} */

/* Content Styles */
/* .content {
    display: none;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to { opacity: 1; }
} */
        
        /* Particles Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.3;
        }

        /* Animated Robot Character */
        .robot-character {
            position: fixed;
            top: 117px;
            right: 20px;
            width: 80px;
            height: 100px;
            z-index: 1000;
            transition: all 0.5s ease;
            animation: float 6s ease-in-out infinite;
            cursor: pointer;
        }

        .robot-body {
            width: 60px;
            height: 80px;
            background: var(--primary);
            border-radius: 20px 20px 10px 10px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
        }

        [data-theme="light"] .robot-body {
            background: var(--primary);
            box-shadow: 0 5px 15px rgba(106, 0, 244, 0.4);
        }

        .robot-head {
            width: 40px;
            height: 30px;
            background: var(--primary);
            border-radius: 15px 15px 5px 5px;
            position: absolute;
            top: -20px;
            left: 10px;
            box-shadow: 0 2px 10px rgba(0, 247, 255, 0.3);
        }

        .robot-eye {
            width: 8px;
            height: 8px;
            background: var(--light);
            border-radius: 50%;
            position: absolute;
            top: 10px;
            animation: blink 5s infinite;
        }

        .robot-eye.left {
            left: 8px;
        }

        .robot-eye.right {
            right: 8px;
        }

        .robot-arm {
            width: 10px;
            height: 30px;
            background: var(--primary);
            position: absolute;
            top: 20px;
            border-radius: 5px;
            animation: wave 3s infinite;
        }

        .robot-arm.left {
            left: -10px;
            transform-origin: top right;
        }

        .robot-arm.right {
            right: -10px;
            transform-origin: top left;
        }

        .robot-leg {
            width: 10px;
            height: 20px;
            background: var(--primary);
            position: absolute;
            bottom: -15px;
            border-radius: 0 0 5px 5px;
        }

        .robot-leg.left {
            left: 15px;
            animation: walk-left 1s infinite;
        }

        .robot-leg.right {
            right: 15px;
            animation: walk-right 1s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes wave {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(20deg); }
            75% { transform: rotate(-20deg); }
        }

        @keyframes walk-left {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(15deg); }
        }

        @keyframes walk-right {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(-15deg); }
        }

        @keyframes blink {
            0%, 48%, 52%, 100% { height: 8px; }
            50% { height: 2px; }
        }

        /* Navigation */
        .navbar {
            background: rgba(10, 10, 20, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 247, 255, 0.2);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        [data-theme="light"] .navbar {
            background: rgba(245, 245, 247, 0.8);
            border-bottom: 1px solid rgba(106, 0, 244, 0.2);
        }

        /* Futuristic Logo Styles */
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary);
            position: relative;
            padding-left: 0;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .hextech-logo {
            position: relative;
            display: flex;
            align-items: center;
        }

        .hexagon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            position: relative;
            margin-right: 15px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            box-shadow: 0 0 15px rgba(0, 247, 255, 0.7);
            animation: hex-pulse 3s infinite;
        }

        [data-theme="light"] .hexagon {
            box-shadow: 0 0 15px rgba(106, 0, 244, 0.7);
        }

        .hexagon::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: var(--dark);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .logo-text {
            position: relative;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
            letter-spacing: 2px;
        }

        [data-theme="light"] .logo-text {
            text-shadow: 0 0 10px rgba(106, 0, 244, 0.3);
        }

        .logo-pulse {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            box-shadow: 0 0 10px var(--secondary);
            animation: pulse 1.5s infinite;
        }

        @keyframes hex-pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        @keyframes pulse {
            0% { transform: translateY(-50%) scale(1); opacity: 1; }
            70% { transform: translateY(-50%) scale(1.3); opacity: 0.7; }
            100% { transform: translateY(-50%) scale(1); opacity: 1; }
        }

        /* Enhanced Mobile Navigation */
        .navbar-toggler {
                /* position: relative;
    left: -68px; */
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0.5rem;
            border: none;
            outline: none;
            box-shadow: none;
            color: var(--primary);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 247, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            transition: var(--transition);
            width: 1.5em;
            height: 1.5em;
            margin-bottom: 0.25rem;
        }

        [data-theme="light"] .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28106, 0, 244, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar-toggler-text {
            font-size: 0.75rem;
            font-family: 'Orbitron', sans-serif;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-item {
            position: relative;
            margin: 0 5px;
        }

        .nav-link {
            color: var(--light);
            font-weight: 500;
            position: relative;
            padding: 8px 15px;
            transition: var(--transition);
            border-radius: 20px;
            overflow: hidden;
            z-index: 1;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
            border-radius: 20px;
            transform: scale(0.9);
        }

        .nav-link:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        .nav-link:hover {
            color: var(--dark);
            transform: translateY(-3px);
        }

        .dropdown-menu {
            background: rgba(10, 10, 20, 0.9);
            border: 1px solid var(--primary);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 10px;
            overflow: hidden;
            transform-origin: top center;
            transform: scaleY(0);
            opacity: 0;
            transition: var(--transition);
            display: block;
        }

        .dropdown:hover .dropdown-menu {
            transform: scaleY(1);
            opacity: 1;
        }

        .dropdown-item {
            color: var(--light);
            transition: var(--transition);
            padding: 8px 15px;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .dropdown-item:hover::before {
            left: 100%;
        }

        .dropdown-item:hover {
            background: transparent;
            color: var(--dark);
            transform: translateX(5px);
        }


        @media (max-width: 991.98px) {
            .navbar-collapse {
                max-height: 80vh;
                overflow-y: auto;
                padding: 15px;
                background: rgba(10, 10, 20, 0.98);
                margin-top: 10px;
                border-radius: 10px;
                border: 1px solid var(--primary);
            }
            
            .nav-item {
                margin: 5px 0;
            }
            
            .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
            }
            
            .dropdown-menu {
                margin-top: 5px;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 10, 20, 0.9), rgba(0, 30, 40, 0.7));
            padding-top: 80px;
        }

        [data-theme="light"] .hero {
            background: linear-gradient(135deg, rgba(240, 240, 255, 0.9), rgba(220, 230, 255, 0.7));
        }

        .hero-content {
            z-index: 2;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
        }

        [data-theme="light"] .hero-title {
            text-shadow: 0 0 20px rgba(106, 0, 244, 0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .typewriter {
            border-right: 3px solid var(--primary);
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            animation: blink-caret 0.75s step-end infinite;
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--primary); }
        }

        /* 3D Cube */
        .cube-container {
            perspective: 1000px;
            margin: 3rem auto;
            width: 200px;
            height: 200px;
        }

        .cube {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: rotate 15s infinite linear;
        }

        .cube-face {
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(0, 247, 255, 0.1);
            border: 1px solid rgba(0, 247, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
        }

        [data-theme="light"] .cube-face {
            background: rgba(106, 0, 244, 0.1);
            border: 1px solid rgba(106, 0, 244, 0.3);
            box-shadow: 0 0 20px rgba(106, 0, 244, 0.1);
        }

        .cube-face i {
            filter: drop-shadow(0 0 5px var(--primary));
        }

        .front { transform: translateZ(100px); }
        .back { transform: rotateY(180deg) translateZ(100px); }
        .right { transform: rotateY(90deg) translateZ(100px); }
        .left { transform: rotateY(-90deg) translateZ(100px); }
        .top { transform: rotateX(90deg) translateZ(100px); }
        .bottom { transform: rotateX(-90deg) translateZ(100px); }

        @keyframes rotate {
            from { transform: rotateX(0) rotateY(0); }
            to { transform: rotateX(360deg) rotateY(360deg); }
        }

        /* Buttons */
        .btn-hextech {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 12px 30px;
            margin-top: 50px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-hextech:hover {
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
        }

        [data-theme="light"] .btn-hextech:hover {
            box-shadow: 0 5px 15px rgba(106, 0, 244, 0.4);
        }

        .btn-hextech::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .btn-hextech:hover::before {
            left: 100%;
        }

        .btn-hextech-pulse {
            animation: pulse 2s infinite;
        }



        .btn-pulse {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 12px 30px;
            margin-top: 50px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            animation: pulse 2s infinite;
        }
    
        .btn-pulse:hover {
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
        }
    
        [data-theme="light"] .btn-pulse:hover {
            box-shadow: 0 5px 15px rgba(106, 0, 244, 0.4);
        }
    
        .btn-pulse::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            transition: 0.5s;
            z-index: -1;
        }
    
        .btn-pulse:hover::before {
            left: 100%;
        }
    
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 247, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(0, 247, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 247, 255, 0);
            }
        }
    
        [data-theme="light"] .btn-pulse {
            animation-name: pulse-light;
        }
    
        @keyframes pulse-light {
            0% {
                box-shadow: 0 0 0 0 rgba(106, 0, 244, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(106, 0, 244, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(106, 0, 244, 0);
            }
        }
        /* Sections */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        /* About Section */
        .profile-card {
            background: rgba(42, 42, 60, 0.5);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(0, 247, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 247, 255, 0.1);
        }

        [data-theme="light"] .profile-card {
            background: rgba(224, 224, 232, 0.5);
            border: 1px solid rgba(106, 0, 244, 0.2);
            box-shadow: 0 10px 30px rgba(106, 0, 244, 0.1);
        }

        .profile-header {
            display: flex;
            padding: 30px;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(255, 0, 228, 0.1));
        }

        [data-theme="light"] .profile-header {
            background: linear-gradient(135deg, rgba(106, 0, 244, 0.1), rgba(255, 107, 0, 0.1));
        }

        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary);
            margin-right: 30px;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-info h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .text-primary {
            color: var(--primary);
        }

        .profile-stats {
            display: flex;
            margin-top: 15px;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .profile-bio {
            padding: 30px;
            padding-top: 0;
        }

        .profile-footer {
            padding: 20px 30px;
            border-top: 1px solid rgba(0, 247, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: var(--light);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        .skill-item {
            margin-bottom: 20px;
        }

        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }

        .progress {
            height: 10px;
            background-color: var(--gray);
            border-radius: 5px;
            overflow: hidden;
        }

        .progress-bar {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 1.5s ease;
        }

        /* Services Section */
        .service-card {
            background: rgba(42, 42, 60, 0.3);
            border: 1px solid rgba(0, 247, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            height: 100%;
            transform-style: preserve-3d;
            transform: perspective(1000px);
        }

        [data-theme="light"] .service-card {
            background: rgba(224, 224, 232, 0.3);
            border: 1px solid rgba(106, 0, 244, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px) perspective(1000px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0, 247, 255, 0.1);
            border-color: var(--primary);
        }

        [data-theme="light"] .service-card:hover {
            box-shadow: 0 20px 40px rgba(106, 0, 244, 0.1);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: rotate(15deg) scale(1.1);
            color: var(--secondary);
        }

        /* Video Editing Section */
        .video-editing {
            background: linear-gradient(135deg, rgba(0, 10, 20, 0.7), rgba(0, 30, 40, 0.5));
            border-radius: 15px;
            padding: 40px;
            margin: 60px 0;
            border: 1px solid rgba(0, 247, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        [data-theme="light"] .video-editing {
            background: linear-gradient(135deg, rgba(240, 240, 255, 0.7), rgba(220, 230, 255, 0.5));
            border: 1px solid rgba(106, 0, 244, 0.2);
        }

        .video-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .video-skill {
            background: rgba(0, 247, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid rgba(0, 247, 255, 0.3);
        }

        [data-theme="light"] .video-skill {
            background: rgba(106, 0, 244, 0.1);
            border: 1px solid rgba(106, 0, 244, 0.3);
        }

        /* Projects Section */
        .project-card {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            position: relative;
            transition: var(--transition);
            border: 1px solid rgba(0, 247, 255, 0.1);
            height: 300px;
        }

        [data-theme="light"] .project-card {
            border: 1px solid rgba(106, 0, 244, 0.1);
        }

        .project-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 10, 20, 0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transition: var(--transition);
        }

        [data-theme="light"] .project-overlay {
            background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-card:hover .project-img {
            transform: scale(1.1);
        }

        .project-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .project-card:hover .project-title {
            transform: translateY(0);
        }

        .project-description {
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.1s;
            opacity: 0;
        }

        .project-card:hover .project-description {
            transform: translateY(0);
            opacity: 1;
        }

        /* Management System Section */
        .management-system {
            background: rgba(0, 10, 20, 0.5);
            border-radius: 15px;
            padding: 40px;
            margin: 60px 0;
            border: 1px solid rgba(0, 247, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        [data-theme="light"] .management-system {
            background: rgba(240, 240, 255, 0.5);
            border: 1px solid rgba(106, 0, 244, 0.2);
        }

        .system-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .system-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-right: 20px;
            flex-shrink: 0;
        }

        .system-content h4 {
            margin-bottom: 10px;
        }

        /* Classes Section */


        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -12px;
            background-color: var(--primary);
            border: 4px solid var(--dark);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }

        .left {
            left: 0;
        }

        .right {
            /* left: 50%; */
        }

        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid var(--gray);
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent var(--gray);
        }

        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid var(--gray);
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--gray) transparent transparent;
        }

        .right::after {
            left: -12px;
        }

        .timeline-content {
            padding: 20px 30px;
            background: rgba(42, 42, 60, 0.5);
            border-radius: 15px;
            border: 1px solid rgba(0, 247, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        [data-theme="light"] .timeline-content {
            background: rgba(224, 224, 232, 0.5);
            border: 1px solid rgba(106, 0, 244, 0.2);
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 247, 255, 0.1);
            border-color: var(--primary);
        }

        [data-theme="light"] .timeline-content:hover {
            box-shadow: 0 10px 20px rgba(106, 0, 244, 0.1);
        }

        /* UI/UX Portfolio */
        .uiux-carousel {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 247, 255, 0.2);
        }

        [data-theme="light"] .uiux-carousel {
            box-shadow: 0 10px 30px rgba(106, 0, 244, 0.2);
        }

        .uiux-item {
            position: relative;
            overflow: hidden;
        }

        .uiux-img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }

        .uiux-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 10, 20, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        [data-theme="light"] .uiux-overlay {
            background: rgba(26, 26, 46, 0.7);
        }

        .uiux-item:hover .uiux-overlay {
            opacity: 1;
        }

        .uiux-item:hover .uiux-img {
            transform: scale(1.1);
        }

        /* Graphic Design Section */
        .design-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.1);
            transition: var(--transition);
            height: 300px;
        }

        [data-theme="light"] .design-card {
            box-shadow: 0 5px 15px rgba(106, 0, 244, 0.1);
        }

        .design-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .design-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 10, 20, 0.8);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: var(--transition);
            padding: 20px;
            text-align: center;
        }

        [data-theme="light"] .design-overlay {
            background: rgba(26, 26, 46, 0.8);
        }

        .design-card:hover .design-overlay {
            opacity: 1;
        }

        .design-card:hover img {
            transform: scale(1.1);
        }

        .design-overlay h3 {
            color: var(--primary);
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .design-overlay p {
            transform: translateY(20px);
            transition: var(--transition);
            transition-delay: 0.1s;
        }

        .design-card:hover .design-overlay h3,
        .design-card:hover .design-overlay p {
            transform: translateY(0);
        }

        /* Contact Section */
        .contact-form {
            background: rgba(42, 42, 60, 0.5);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(0, 247, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        [data-theme="light"] .contact-form {
            background: rgba(224, 224, 232, 0.5);
            border: 1px solid rgba(106, 0, 244, 0.2);
        }

        .form-control {
            background: rgba(10, 10, 20, 0.5);
            border: 1px solid rgba(0, 247, 255, 0.2);
            color: var(--light);
            padding: 15px;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        [data-theme="light"] .form-control {
            background: rgba(245, 245, 247, 0.5);
            color: var(--light);
            border: 1px solid rgba(106, 0, 244, 0.2);
        }

        .form-control:focus {
            background: rgba(10, 10, 20, 0.8);
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(0, 247, 255, 0.2);
            color: var(--light);
        }

        [data-theme="light"] .form-control:focus {
            background: rgba(245, 245, 247, 0.8);
            box-shadow: 0 0 10px rgba(106, 0, 244, 0.2);
        }

        .form-label {
            position: relative;
            transition: var(--transition);
            transform-origin: left center;
        }

        .form-control:focus + .form-label,
        .form-control:not(:placeholder-shown) + .form-label {
            transform: translateY(-30px) scale(0.8);
            color: var(--primary);
        }

        /* Chat Modal Styles */
        .chat-container {
            height: 400px;
            display: flex;
            flex-direction: column;
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 15px;
            background: rgba(42, 42, 60, 0.3);
            border-radius: 10px;
            margin-bottom: 15px;
        }

        [data-theme="light"] .chat-messages {
            background: rgba(224, 224, 232, 0.3);
        }

        .message {
            display: flex;
            margin-bottom: 15px;
        }

        .message-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }

        .message-content {
            max-width: 80%;
        }

        .message-content p {
            background: rgba(0, 247, 255, 0.1);
            padding: 10px 15px;
            border-radius: 15px;
            margin: 0;
        }

        .ai-message .message-content p {
            border-bottom-left-radius: 0;
        }

        .user-message {
            justify-content: flex-end;
        }

        .user-message .message-content {
            order: -1;
            margin-right: 10px;
        }

        .user-message .message-content p {
            background: rgba(0, 247, 255, 0.3);
            border-bottom-right-radius: 0;
        }

        .user-message .message-avatar {
            background: var(--secondary);
            margin-right: 0;
            margin-left: 10px;
        }

        .chat-input {
            display: flex;
            gap: 10px;
        }

        .chat-input input {
            flex: 1;
            background: rgba(42, 42, 60, 0.5) !important;
        }

        /* Chat Button */
        .chat-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 247, 255, 0.4);
            cursor: pointer;
            z-index: 999;
            animation: jiggle 10s infinite;
        }

        [data-theme="light"] .chat-btn {
            box-shadow: 0 5px 20px rgba(106, 0, 244, 0.4);
        }

        @keyframes jiggle {
            0%, 96%, 100% { transform: rotate(0); }
            98% { transform: rotate(-5deg); }
            99% { transform: rotate(5deg); }
        }

        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: rgba(42, 42, 60, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            border: 1px solid rgba(0, 247, 255, 0.3);
            transition: var(--transition);
        }

        [data-theme="light"] .theme-toggle {
            background: rgba(224, 224, 232, 0.7);
            border: 1px solid rgba(106, 0, 244, 0.3);
        }

        .theme-toggle:hover {
            background: rgba(0, 247, 255, 0.2);
            transform: rotate(30deg);
        }

        [data-theme="light"] .theme-toggle:hover {
            background: rgba(106, 0, 244, 0.2);
        }

        /* Footer */
        footer {
            background: rgba(10, 10, 20, 0.8);
            padding: 30px 0;
            border-top: 1px solid rgba(0, 247, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        [data-theme="light"] footer {
            background: rgba(245, 245, 247, 0.8);
            border-top: 1px solid rgba(106, 0, 244, 0.2);
        }

        .social-icons a {
            color: var(--light);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            color: var(--primary);
            transform: translateY(-5px);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
        }

        .slide-up {
            transform: translateY(50px);
        }

        .slide-up.visible {
            transform: translateY(0);
        }

        .slide-left {
            transform: translateX(-50px);
        }

        .slide-left.visible {
            transform: translateX(0);
        }

        .slide-right {
            transform: translateX(50px);
        }

        .slide-right.visible {
            transform: translateX(0);
        }

        /* ==================== */
        /* RESPONSIVE ADJUSTMENTS */
        /* ==================== */

        /* Mobile First Adjustments */
        @media (max-width: 767.98px) {
            /* Hero Section */
            .hero {
                padding-top: 100px;
                text-align: center;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 0.6rem;
            }
            
            .cube-container {
                margin: 2rem auto;
            }
            
            /* About Section */
            .profile-header {
                flex-direction: column;
                text-align: center;
            }
            
            .profile-image {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .profile-stats {
                justify-content: center;
            }
            
            /* Services Section */
            .service-card {
                margin-bottom: 20px;
            }
            
            /* Video Editing Section */
            .video-editing {
                padding: 20px;
                margin: 30px 0;
            }
            
            /* Timeline */
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::after {
                left: 18px;
            }
            
            .left::before, .right::before {
                left: 60px;
                border: medium solid var(--gray);
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--gray) transparent transparent;
            }
            
            .left::after, .right::after {
                left: 18px;
            }
            
            .right {
                left: 0%;
            }
            
            /* Contact Section */
            .contact-form {
                margin-bottom: 30px;
            }
            
            /* Footer */
            .footer .col-lg-4, 
            .footer .col-lg-3, 
            .footer .col-lg-2 {
                margin-bottom: 30px;
            }

            /* Sections padding */
            section {
                padding: 60px 0;
            }
        }

        /* Tablet Adjustments */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .profile-header {
                flex-direction: row;
                text-align: left;
            }
            
            .profile-image {
                margin-right: 20px;
                margin-bottom: 0;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
            
            /* Adjust timeline for tablet */
            .timeline::after {
                left: 50%;
            }
            
            .timeline-item {
                width: 50%;
            }
            
            .left::before {
                right: 30px;
                border-width: 10px 0 10px 10px;
                border-color: transparent transparent transparent var(--gray);
            }
            
            .right::before {
                left: 30px;
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--gray) transparent transparent;
            }
            
            .right::after {
                left: -12px;
            }
        }

     @media (min-width: 575.98px) {

        .rights.visible {
    transform: translateX(100%);
}
     }
        /* Small Mobile Adjustments */
        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .hexagon {
                width: 30px;
                height: 30px;
                margin-right: 10px;
            }
            
            .profile-stats {
                flex-direction: column;
                gap: 10px;
            }
            
            .profile-footer {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-hextech {
                width: 100%;
            }
            
            .video-skills {
                justify-content: center;
            }
            
            .video-skill {
                margin-bottom: 10px;
            }
            
            .chat-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 20px;
                right: 10px;
            }
            
            .theme-toggle {
                width: 40px;
                height: 40px;
                bottom: 20px;
                left: 20px;
            }

            /* Sections padding */
            section {
                padding: 40px 0;
            }
        }


        
        /* Navigation Specific Fixes */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(10, 10, 20, 0.95);
                backdrop-filter: blur(10px);
                padding: 1rem;
                margin-top: 0.5rem;
                border-radius: 10px;
                border: 1px solid rgba(0, 247, 255, 0.2);
            }
            
            [data-theme="light"] .navbar-collapse {
                background: rgba(245, 245, 247, 0.95);
                border-color: rgba(106, 0, 244, 0.2);
            }
            
            .nav-item {
                margin: 0.5rem 0;
            }
            
            .dropdown-menu {
                position: static !important;
                transform: none !important;
                opacity: 1 !important;
                background: rgba(20, 20, 30, 0.8);
                margin-top: 0.5rem;
            }
            
            [data-theme="light"] .dropdown-menu {
                background: rgba(245, 245, 247, 0.8);
            }
            
            .nav-link {
                padding: 8px 15px;
            }

            /* Hide robot on mobile */
            .robot-character {
                display: none;
            }

            
        }
        .btn-chatbox{
            padding: 20px;
            background-color: #ff00e4;
            color: #ffffff;
            border-radius: 5px;
        }
        .btn-chatbox:hover{
            background-color: #6a00f4;
            border-radius: 5px;
        }

        .btn-subscribe {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-left: none;
            padding: 0 20px; /* Adjusted padding */
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            white-space: nowrap;
            height: 100%; /* Make button full height */
            display: flex;
            align-items: center; /* Center text vertically */
        }
    
    /* Custom input group */
    .newsletter-group {
        height: 46px;
        align-items: center;
    }
    
    /* Input styling */
    .newsletter-input {
        height: 100%;
        border: 2px solid var(--primary);
        border-right: none;
        border-radius: 30px 0 0 30px;
        padding: 0 20px;
    }
    
    /* Button styling */
    
 
    /* Container for perfect alignment */
    .newsletter-container {
        display: flex;
        height: 46px;
        width: 100%;
    }
    
    /* Input field styling */
    .newsletter-input {
        width: 92px;
        flex-grow: 1;
        height: 100%;
        border: 2px solid var(--primary);
        border-right: none;
        border-radius: 30px 0 0 30px;
        padding: 0 20px;
        margin: 0;
        outline: none;
        font-size: 14px;
    }
    
    /* Button styling */
    .btn-subscribe.newsletter-btn {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        border-left: none;
        height: 100%;
        padding: 0 25px;
        border-radius: 0 30px 30px 0;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        margin: 0;
        font-size: 14px;
        line-height: 1;
    }

    .btn-subscribe:hover {
        color: var(--light);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
    }

    [data-theme="light"] .btn-subscribe:hover {
        box-shadow: 0 5px 15px rgba(106, 0, 244, 0.4);
    }
    
    /* Fix for any potential misalignment */
    .newsletter-input,
    .newsletter-btn {
        box-sizing: border-box;
        vertical-align: top;
    }
