 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #00ffddd3 0%, #0095ff 100%);
            color: white;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.6);
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-menu a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: white;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 80px;
            align-items: center;
            width: 100%;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 300;
            margin-bottom: 20px;
            color: rgba(32, 88, 184, 0.614);
        }

        .hero-text h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.7);
        }

        .hero-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.8);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-primary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: rgba(0, 0, 0, 0.8);
            color: white;
        }

        .btn-secondary:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: translateY(-2px);
        }

        .hero-image {
            position: relative;
            animation: float 5s ease-in-out infinite;
        }

        .hero-image img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.2);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: translateY(-2px);
        }

        /* Decorative elements */
        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            right: 10%;
            animation-delay: -2s;
        }

        .circle-2 {
            width: 60px;
            height: 60px;
            bottom: 30%;
            left: 10%;
            animation-delay: -4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Skills Section */
        .skills-section {
            background: rgba(0, 0, 0, 0.3);
            padding: 100px 0;
        }

        .skills-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .skills-badge {
            display: inline-block;
            background: rgba(138, 43, 226, 0.8);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .skills-title {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .skills-title .highlight {
            color: #8b5cf6;
        }

        .skills-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .skill-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .skill-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
        }

        .skill-icon {
            width: 60px;
            height: 60px;
            background: rgba(138, 43, 226, 0.3);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .skill-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .skill-card p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .proficiency {
            margin-top: 20px;
        }

        .proficiency-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .proficiency-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .proficiency-fill {
            height: 100%;
            background: linear-gradient(90deg, #8b5cf6, #a855f7);
            border-radius: 3px;
            transition: width 1s ease-in-out;
        }

        /* Projects Section */
        .projects-section {
            background: rgba(0, 0, 0, 0.8);
            padding: 100px 0;
        }

        .projects-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .projects-badge {
            background: rgba(138, 43, 226, 0.8);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            margin-bottom: 30px;
            display: inline-block;
        }

        .projects-title {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #8b5cf6;
        }

        .projects-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .project-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
        }

        .project-year {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .project-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .project-card p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .tech-tag {
            background: rgba(138, 43, 226, 0.3);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            color: white;
        }

        .project-buttons {
            display: flex;
            gap: 15px;
        }

        .project-btn {
            padding: 10px 20px;
            border: 1px solid rgba(138, 43, 226, 0.5);
            background: rgba(138, 43, 226, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .project-btn:hover {
            background: rgba(138, 43, 226, 0.4);
        }

        .view-all-btn {
            display: block;
            margin: 50px auto 0;
            padding: 15px 40px;
            background: rgba(138, 43, 226, 0.8);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            max-width: 250px;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            background: rgba(138, 43, 226, 1);
            transform: translateY(-2px);
        }

        /* Contact Section */
        .contact-section {
            background: #0a0a0a;
            padding: 100px 0;
        }

        .contact-intro {
            text-align: center;
            margin-bottom: 80px;
        }

        .contact-intro p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .contact-item {
            text-align: center;
            padding: 40px 30px;
            background: transparent;
            border-radius: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 25px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .contact-icon.phone { 
            background: rgba(34, 197, 94, 0.15);
            color: #10b981;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        .contact-icon.email { 
            background: rgba(59, 130, 246, 0.15);
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }
        .contact-icon.github { 
            background: rgba(139, 92, 246, 0.15);
            color: #8b5cf6;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }

        .contact-item h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: white;
            font-weight: 500;
        }

        .contact-item p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto 80px;
        }

        .form-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: white;
            font-weight: 500;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input {
            width: 100%;
            padding: 18px 20px;
            background: rgba(30, 30, 35, 0.8);
            border: 1px solid rgba(70, 70, 80, 0.5);
            border-radius: 12px;
            color: white;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #8b5cf6;
            background: rgba(30, 30, 35, 1);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-textarea {
            height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .form-submit {
            width: 100%;
            padding: 18px;
            background: rgba(30, 30, 35, 0.8);
            border: 1px solid rgba(70, 70, 80, 0.5);
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form-submit:hover {
            background: rgba(30, 30, 35, 1);
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-1px);
        }

        .project-cta {
            text-align: center;
            padding: 40px;
            background: transparent;
            border-radius: 0;
            border-top: 1px solid rgba(70, 70, 80, 0.3);
            margin-top: 60px;
        }

        .project-cta h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: white;
            font-weight: 500;
        }

        .project-cta p {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.5;
        }

        .quick-email-btn {
            background: rgba(30, 30, 35, 0.8);
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 500;
            border: 1px solid rgba(70, 70, 80, 0.5);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }

        .quick-email-btn:hover {
            background: rgba(30, 30, 35, 1);
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-text h2 {
                font-size: 2rem;
            }

            .nav-menu {
                gap: 20px;
            }

            .skills-title, .projects-title {
                font-size: 2rem;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation for skill bars */
        .skill-card.animate .proficiency-fill {
            animation: fillBar 2s ease-out forwards;
        }

        @keyframes fillBar {
            from { width: 0%; }
        }