body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #00f0ff;
            --secondary: #ff00ff;
            --accent: #7c3aed;
            --dark: #0a0a0f;
            --light: #ffffff;
            --bg-primary: #0a0a0f;
            --bg-secondary: rgba(0, 240, 255, 0.05);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
        }
        
        [data-theme="light"] {
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #0a0a0f;
            --text-secondary: rgba(10, 10, 15, 0.7);
            --dark: #f5f5f5;
        }
        
        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
        }
        
        /* Intro Animation */
        .intro-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeOut 0.5s ease 3.5s forwards;
        }
        
        @keyframes fadeOut {
            to {
                opacity: 0;
                visibility: hidden;
            }
        }
        
        .intro-content {
            text-align: center;
        }
        
        .intro-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmerText 2s linear infinite, scaleIn 1s ease;
            margin-bottom: 20px;
        }
        
        .intro-subtitle {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 600;
            animation: fadeInUp 1.2s ease;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .intro-loading {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .loading-text {
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .loading-dots {
            display: flex;
            gap: 8px;
        }
        
        .loading-dot {
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            animation: loadingDot 1.4s infinite ease-in-out both;
        }
        
        .loading-dot:nth-child(1) {
            animation-delay: -0.32s;
        }
        
        .loading-dot:nth-child(2) {
            animation-delay: -0.16s;
        }
        
        @keyframes loadingDot {
            0%, 80%, 100% {
                transform: scale(0);
                opacity: 0.5;
            }
            40% {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        @keyframes shimmerText {
            to { background-position: 200% center; }
        }
        
        @keyframes scaleIn {
            from {
                transform: scale(0.5);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .intro-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--primary);
            border-radius: 50%;
            animation: floatParticle 3s ease-in-out infinite;
        }
        
        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
        }
        
        /* Custom Cursor */
        * {
            cursor: none !important;
        }
        
        .custom-cursor {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 999999;
            transition: all 0.1s ease;
            display: block;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
        }
        
        .cursor-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 999999;
            transition: all 0.05s ease;
            display: block;
            box-shadow: 0 0 10px var(--primary);
        }
        
        .custom-cursor.hover {
            transform: scale(1.5);
            background: rgba(0, 240, 255, 0.1);
        }
        
        .cursor-dot.hover {
            transform: scale(1.5);
        }
        
        /* Hologram Effect */
        .hologram {
            position: relative;
            animation: hologramFlicker 0.1s infinite;
        }
        
        @keyframes hologramFlicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.98; }
        }
        
        .scan-line {
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            animation: scanMove 4s linear infinite;
            opacity: 0.3;
            z-index: 10;
        }
        
        @keyframes scanMove {
            from { top: 0; }
            to { top: 100%; }
        }
        
        /* Grid Background */
        .grid-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            z-index: 0;
        }
        
        @keyframes gridMove {
            from { transform: translateY(0); }
            to { transform: translateY(50px); }
        }
        
        [data-theme="light"] .grid-background {
            background-image: 
                linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 10000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 4px 30px rgba(0, 240, 255, 0.1);
            transition: background 0.3s ease;
        }
        
        .navbar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
            background-size: 200% auto;
            animation: shimmerBorder 3s linear infinite;
        }
        
        [data-theme="light"] .navbar {
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 2px solid var(--primary);
        }
        
        .nav-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
            cursor: pointer;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }
        
        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--primary);
        }
        
        .nav-link:hover {
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary);
        }
        
        .nav-link:hover::before {
            width: 100%;
        }
        
        .hiring-nav-btn {
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        
        .hiring-nav-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
        }
        
        .theme-toggle {
            width: 45px;
            height: 45px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            background: transparent;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        .theme-toggle:hover {
            background: var(--primary);
            color: var(--dark);
            box-shadow: 0 0 20px var(--primary);
            transform: rotate(180deg);
        }
        
        /* Hamburger Menu */
        .hamburger-menu {
            display: none;
            width: 45px;
            height: 45px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            gap: 6px;
            background: transparent;
            border: 2px solid var(--primary);
            border-radius: 50%;
            padding: 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .hamburger-menu:hover {
            box-shadow: 0 0 20px var(--primary);
            transform: rotate(90deg);
        }
        
        .hamburger-line {
            width: 22px;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .hamburger-menu.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger-menu.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger-menu.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        .hamburger-menu.active {
            transform: rotate(180deg);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100%;
            display: flex;
            align-items: center;
            padding: 120px 0 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
        }
        
        .profile-container {
            position: relative;
            width: 350px;
            height: 350px;
            margin: 0 auto;
        }
        
        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 4px solid var(--primary);
            object-fit: cover;
            box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .profile-ring {
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            animation: rotate 10s linear infinite;
            opacity: 0.3;
        }
        
        .profile-ring:nth-child(2) {
            animation-duration: 8s;
            animation-direction: reverse;
            border-color: var(--secondary);
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .hero-tag {
            display: inline-block;
            padding: 10px 25px;
            background: var(--bg-secondary);
            border: 1px solid var(--primary);
            color: var(--primary);
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmerText 3s linear infinite;
        }
        
        .hero-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 3px;
            min-height: 70px;
        }
        
        .typing-container {
            display: block;
        }
        
        .typing-text {
            color: var(--primary);
            font-weight: 700;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            padding: 18px 45px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--dark);
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
        }
        
        .btn-secondary {
            padding: 18px 45px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            min-width: 200px;
        }
        
        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s ease, height 0.5s ease;
            z-index: -1;
        }
        
        .btn-secondary:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-secondary:hover {
            color: var(--dark);
            border-color: var(--primary);
            box-shadow: 0 0 20px var(--primary);
            transform: translateY(-3px) scale(1.05);
        }
        
        .social-links-hero {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-link:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 0 20px var(--primary);
        }
        
        /* Section Styling */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: var(--bg-secondary);
            border: 1px solid var(--primary);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }
        
        .about-text {
            font-size: 1.2rem;
            line-height: 2;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }
        
        .about-text strong {
            color: var(--primary);
            font-weight: 700;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .stat-card {
            background: var(--bg-secondary);
            border: 2px solid var(--primary);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
        }
        
        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .skill-category {
            background: var(--bg-secondary);
            border: 2px solid var(--primary);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .skill-category::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }
        
        .skill-category:hover::before {
            left: 100%;
        }
        
        .skill-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
            border-color: var(--secondary);
        }
        
        .skill-category-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
        }
        
        .skill-category-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .skill-items {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .skill-tag {
            padding: 8px 16px;
            background: rgba(0, 240, 255, 0.1);
            border: 1px solid var(--primary);
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--primary);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .skill-tag i {
            font-size: 1rem;
        }
        
        .skill-tag:hover {
            background: var(--primary);
            color: var(--dark);
            transform: scale(1.05);
        }
        
        .skill-filter-btn {
            padding: 12px 25px;
            background: var(--bg-secondary);
            border: 2px solid var(--primary);
            border-radius: 25px;
            color: var(--primary);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .skill-filter-btn:hover {
            background: rgba(0, 240, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
        }
        
        .skill-filter-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
        }
        
        .skill-category.hidden {
            display: none;
        }
        
        /* Journey Section */
        .journey-timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .journey-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            transform: translateX(-50%);
        }
        
        .journey-item {
            display: flex;
            margin-bottom: 60px;
            position: relative;
        }
        
        .journey-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .journey-content {
            width: 45%;
            background: var(--bg-secondary);
            border: 2px solid var(--primary);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .journey-content:hover {
            transform: scale(1.05);
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
        }
        
        .journey-icon {
            position: absolute;
            left: 50%;
            top: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--dark);
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
            border: 3px solid var(--bg-primary);
        }
        
        .journey-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .journey-period {
            font-size: 0.9rem;
            color: var(--secondary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .journey-description {
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        /* Service Cards */
        .service-card {
            background: var(--bg-secondary);
            border: 2px solid var(--primary);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
            border-color: var(--secondary);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
        }
        
        .service-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
        }
        
        .service-description {
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            background: var(--bg-secondary);
            border: 2px solid var(--primary);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }
        
        .portfolio-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 255, 0.2));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .portfolio-item:hover::after {
            opacity: 1;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
        }
        
        .portfolio-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-content {
            padding: 30px;
            position: relative;
            z-index: 10;
        }
        
        .portfolio-category {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(0, 240, 255, 0.2);
            border: 1px solid var(--primary);
            color: var(--primary);
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .portfolio-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }
        
        .portfolio-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 60px;
        }
        
        .testimonials-wrapper {
            overflow: hidden;
            position: relative;
        }
        
        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            min-width: 100%;
            background: var(--bg-secondary);
            border: 2px solid var(--primary);
            border-radius: 20px;
            padding: 50px 40px;
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
            position: relative;
        }
        
        .testimonial-quote {
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--text-primary);
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-weight: 700;
            font-size: 1.5rem;
            border: 2px solid var(--primary);
            font-family: 'Orbitron', sans-serif;
        }
        
        .testimonial-info h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--text-primary);
        }
        
        .testimonial-info p {
            color: var(--primary);
            font-size: 1rem;
        }
        
        .testimonial-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(0, 240, 255, 0.2);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .testimonial-nav:hover {
            background: var(--primary);
            color: var(--dark);
            box-shadow: 0 0 20px var(--primary);
        }
        
        .testimonial-nav.prev {
            left: 0;
        }
        
        .testimonial-nav.next {
            right: 0;
        }
        
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 240, 255, 0.3);
            border: 2px solid var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background: var(--primary);
            box-shadow: 0 0 10px var(--primary);
        }
        
        /* Contact Form */
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary);
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-input {
            width: 100%;
            padding: 16px 20px;
            background: var(--bg-secondary);
            border: 2px solid var(--primary);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
            color: var(--text-primary);
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
            background: rgba(0, 240, 255, 0.1);
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--dark);
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
        }
        
        .submit-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(0, 240, 255, 0.8);
        }
        
        .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .message {
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            display: none;
            animation: slideDown 0.4s ease;
            border: 2px solid;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .success-message {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
            border-color: #10b981;
        }
        
        .error-message {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
            border-color: #ef4444;
        }
        
        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.5);
            border-top: 2px solid var(--primary);
            color: var(--text-primary);
            padding: 60px 0 30px 0;
            position: relative;
        }
        
        [data-theme="light"] .footer {
            background: rgba(255, 255, 255, 0.5);
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
            background-size: 200% auto;
            animation: shimmerBorder 3s linear infinite;
        }
        
        @keyframes shimmerBorder {
            to { background-position: 200% center; }
        }
        
        .footer-content {
            text-align: center;
        }
        
        .footer-brand {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }
        
        .contact-info-footer {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 30px 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
        }
        
        .contact-item i {
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .contact-item a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-item a:hover {
            color: var(--primary);
        }
        
        .datetime-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin: 30px 0;
            padding: 15px 30px;
            background: var(--bg-secondary);
            border: 2px solid var(--primary);
            border-radius: 15px;
            max-width: fit-content;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
        }
        
        .datetime-footer-date {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            color: var(--primary);
        }
        
        .datetime-footer-time {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .footer-text {
            color: var(--text-secondary);
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 240, 255, 0.2);
        }
        
        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Fade In/Out Animations */
        @keyframes fadeInSection {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeOutSection {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(-30px);
            }
        }
        
        .section-fade-in {
            animation: fadeInSection 0.6s ease forwards;
        }
        
        .section-fade-out {
            animation: fadeOutSection 0.6s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 15, 0.95);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                border-bottom: 2px solid var(--primary);
            }
            
            [data-theme="light"] .nav-links {
                background: rgba(255, 255, 255, 0.95);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .hamburger-menu {
                display: flex;
            }
        }
        
        @media (min-width: 993px) {
            .hamburger-menu {
                display: none;
            }
            
            .hero-name {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .profile-container {
                width: 250px;
                height: 250px;
            }
            
            .testimonials-container {
                padding: 0 80px;
            }
            
            .journey-timeline::before {
                left: 30px;
            }
            
            .journey-item,
            .journey-item:nth-child(even) {
                flex-direction: row;
            }
            
            .journey-content {
                width: calc(100% - 80px);
                margin-left: 80px;
            }
            
            .journey-icon {
                left: 30px;
                transform: translateX(0);
            }
        }
        
        @media (max-width: 768px) {
            .intro-logo {
                font-size: 3rem;
            }
            
            .hero-name {
                font-size: 2.5rem;
            }
            
            .hero-title {
                font-size: 1.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .testimonial-nav {
                width: 40px;
                height: 40px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-info-footer {
                flex-direction: column;
                gap: 15px;
            }
        }
/* Base cursor size (normal state) */
.custom-cursor {
    position: fixed;
    width: 26px;
    height: 26px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

/* Small center dot */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transition: transform 0.1s ease, background 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

/* Hover state */
.custom-cursor.hover {
    transform: scale(1.9);
    border-color: var(--secondary);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
}

.cursor-dot.hover {
    transform: scale(2);
    background: var(--secondary);
}

.nav-link.active-section {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}
/* Normal cursor */
.custom-cursor {
    width: 26px;
    height: 26px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.18s ease-out;
    z-index: 999999;
}

/* Normal dot */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.12s ease-out;
    z-index: 999999;
}

/* Hover state → ONLY scale increase */
.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.8) !important;
}

.cursor-dot.hover {
    transform: translate(-50%, -50%) scale(2) !important;
}


