* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
            color: white;
            overflow-x: hidden;
        }

        /* Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #0a0a0a, #1a1a2e);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s ease;
        }

        .loader-content {
            text-align: center;
        }

        .loader-sphere {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            margin: 0 auto 20px;
            animation: float 2s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotateY(0deg); }
            50% { transform: translateY(-20px) rotateY(180deg); }
        }

        .loader-text {
            font-size: 24px;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #00ff88;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #00ff88, #0066ff, #ff6b6b);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: titleFloat 3s ease-in-out infinite;
        }

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

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Button container styles */
        .button-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .cta-button, .resume-button {
            padding: 15px 40px;
            min-width: 200px;  /* Set fixed minimum width for both buttons */
            font-size: 18px;
            border: none;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
            display: inline-flex;  /* Use flexbox for better content alignment */
            align-items: center;
            justify-content: center;
        }

        .cta-button {
            background: linear-gradient(45deg, #00ff88, #0066ff);
        }

        .resume-button {
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
            margin-left: 0;  /* Remove margin since we're using gap in container */
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.6s ease;
            transform: translate(-50%, -50%);
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Resume Button Styles */
        .resume-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
        }

        .resume-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.6s ease;
            transform: translate(-50%, -50%);
        }

        .resume-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .resume-button i {
            margin-right: 8px;
        }

        /* Floating particles */
        .particle {
            position: absolute;
            background: #00ff88;
            border-radius: 50%;
            pointer-events: none;
            animation: particleFloat 6s linear infinite;
        }

        @keyframes particleFloat {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
        }

        /* About Section */
        .about {
            padding: 100px 50px;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 50px;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            animation: rotate3d 10s linear infinite;
        }

        @keyframes rotate3d {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        /* Stats Section */
        .stats {
            padding: 100px 50px;
            background: linear-gradient(135deg, #16213e, #0a0a0a);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .stat-card:hover::before {
            left: 100%;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #00ff88;
            margin-bottom: 10px;
        }

        /* Projects Section */
        .projects {
            padding: 100px 50px;
            background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
        }

        .project-header {
            height: 200px;
            background: linear-gradient(45deg, #00ff88, #0066ff, #ff6b6b);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .project-content {
            padding: 30px;
        }

        .project-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #00ff88;
        }

        /* Carousel */
        .carousel {
            padding: 100px 50px;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-top: 50px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            height: 400px;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            position: relative;
        }

        .carousel-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 255, 136, 0.2);
            border: none;
            color: white;
            font-size: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .carousel-nav:hover {
            background: rgba(0, 255, 136, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav.prev {
            left: 20px;
        }

        .carousel-nav.next {
            right: 20px;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 50px;
            background: linear-gradient(135deg, #16213e, #0a0a0a);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px) rotateY(5deg);
            box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .testimonial-author {
            font-weight: bold;
            color: #00ff88;
        }


        @keyframes buttonPop {
            0% { transform: scale(0.95); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

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

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        /* Ripple Effect */
        .ripple {
            position: relative;
            overflow: hidden;
        }

        .ripple::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .ripple:active::before {
            width: 300px;
            height: 300px;
        }

        /* Footer */
        .footer {
            padding: 50px;
            background: #0a0a0a;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            font-size: 20px;
        }

        .social-link:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
        }

        .social-link.linkedin:hover {
            background: linear-gradient(45deg, #0077b5, #004d7a);
        }

        .social-link.twitter:hover {
            background: linear-gradient(45deg, #1da1f2, #0d8bd9);
        }

        .social-link.github:hover {
            background: linear-gradient(45deg, #333, #000);
        }

        .social-link.instagram:hover {
            background: linear-gradient(45deg, #e4405f, #833ab4);
        }

        /* Mobile Menu Button */
        .menu-btn {
            display: none;
            position: relative;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            cursor: pointer;
            transition: all .5s ease-in-out;
            z-index: 2000;
        }
        
        .menu-btn-burger {
            width: 25px;
            height: 3px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(255,101,47,.2);
            transition: all .5s ease-in-out;
        }
        
        .menu-btn-burger::before,
        .menu-btn-burger::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 3px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(255,101,47,.2);
            transition: all .5s ease-in-out;
        }
        
        .menu-btn-burger::before {
            transform: translateY(-8px);
        }
        
        .menu-btn-burger::after {
            transform: translateY(8px);
        }
        
        /* Menu Animation */
        .menu-btn.open .menu-btn-burger {
            transform: translateX(-50px);
            background: transparent;
            box-shadow: none;
        }
        
        .menu-btn.open .menu-btn-burger::before {
            transform: rotate(45deg) translate(35px, -35px);
        }
        
        .menu-btn.open .menu-btn-burger::after {
            transform: rotate(-45deg) translate(35px, 35px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-btn {
                display: flex;
            }

            .navbar {
                padding: 15px 20px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .nav-links {
                display: flex;
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: transform 0.3s ease-in-out;
                z-index: 1500;
            }

            .nav-links.active {
                transform: translateX(0);
            }
            
            .nav-links li {
                margin: 20px 0;
                opacity: 0;
                transform: translateX(50px);
                transition: all 0.3s ease;
            }
            
            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
                transition: all 0.5s ease 0.2s;
            }
            
            .nav-links a {
                font-size: 1.5rem;
            }

            .button-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .resume-button {
                margin-left: 0;
            }

            .spotlight-logo {
                font-size: 2.5rem;
            }

            .feature-card {
                padding: 20px;
            }
        }

        /* Hide loader after page loads */
        .loaded .loader {
            opacity: 0;
            pointer-events: none;
        }

        /* Custom Alert Styles */
        .custom-alert {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 20px;
            border-radius: 10px;
            color: white;
            max-width: 400px;
            z-index: 10000;
            transform: translateX(150%);
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .custom-alert.success {
            background: rgba(0, 255, 136, 0.9);
            border-left: 5px solid #00ff88;
        }

        .custom-alert.error {
            background: rgba(255, 68, 68, 0.9);
            border-left: 5px solid #ff4444;
        }

        .custom-alert.show {
            transform: translateX(0);
        }

        .custom-alert .alert-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .custom-alert .alert-message {
            font-size: 14px;
            line-height: 1.5;
        }

        /* Spotlight Section */
        .spotlight {
            padding: 100px 50px;
            background: linear-gradient(135deg, #1a1a2e, #0a0a0a);
            position: relative;
            overflow: hidden;
        }

        .spotlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .spotlight-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .spotlight-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .spotlight-logo {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
        }

        .spotlight-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .spotlight-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 255, 136, 0.3);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #00ff88;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .spotlight-achievements {
            margin-top: 50px;
            padding: 30px;
            background: rgba(0, 255, 136, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 136, 0.1);
        }

        .achievement-title {
            text-align: center;
            font-size: 1.5rem;
            color: #00ff88;
            margin-bottom: 30px;
        }

        .achievements-list {
            list-style: none;
            padding: 0;
        }

        .achievement-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .achievement-item:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.08);
        }

        .achievement-icon {
            font-size: 1.5rem;
            margin-right: 15px;
        }

        @keyframes glow {
            0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
            50% { text-shadow: 0 0 40px rgba(0, 255, 136, 0.8); }
        }

        @media (max-width: 768px) {
            .spotlight {
                padding: 50px 20px;
            }

            .spotlight-logo {
                font-size: 2.5rem;
            }

            .feature-card {
                padding: 20px;
            }
        }

        /* Contact Section */
        .contact {
            padding: 100px 50px;
            background: linear-gradient(135deg, #16213e, #0a0a0a);
            position: relative;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 50px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #00ff88;
            font-size: 1.1rem;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #00ff88;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #00ff88, #0066ff);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }