* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif, Nunito, Work;
        }

        body {
            min-height: 100vh;
            color: white;
            overflow-x: hidden;
            scroll-behavior: smooth;
            position: relative;
        }
		
		body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(180deg, #000000 0%, #0a0a1a 50%, #000000 100%);
        }
		
		.stars {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 0;
          pointer-events: none;
          overflow: hidden;
        }

        .star {
          position: absolute;
          background: white;
	      opacity: 0.9;
          border-radius: 50%;
          box-shadow: 0 0 15px rgba(255, 255, 255, 1);
        }

            .star.small {
              animation: twinkle 4s ease-in-out infinite, floatSlow 40s linear infinite;
            }

            .star.medium {
              animation: twinkle 3s ease-in-out infinite, floatMedium 30s linear infinite;
            }

           .star.large {
              animation: twinkle 2s ease-in-out infinite, floatFast 25s linear infinite;
            }

           @keyframes softGlow {
             0%, 100% { opacity: 0.85; transform: scale(1); }
             50%      { opacity: 1;    transform: scale(1.15); }
            }
			
			@keyframes twinkle { 
			0%, 100% { opacity: 0.3; transform: scale(1); } 
			50% { opacity: 1; transform: scale(1.3); } 
			}
       

        /* Nav-Bar */
        nav {
            position: fixed;
            top: 1rem;
            right: 1rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            font-family: monospace;
            font-size: 1.1rem;
            z-index: 10;
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(15px);
            padding: 0.75rem 1rem;
            border-radius: 50px;
			animation: cosmicGlow 4s ease-in-out infinite;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav a {
            color: white;
            text-decoration: none;
            position: relative;
            transition: all 0.3s;
            padding: 0.5rem;
			animation: cosmicGlow 4s ease-in-out infinite;
        }

        nav a:hover {
            background: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            color: white;
            transform: scale(1.3);
			animation: cosmicGlow 4s ease-in-out infinite;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: transparent;
            transition: width 0.3s;
			animation: cosmicGlow 4s ease-in-out infinite;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Section */
        section {
            min-height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5rem 1.5rem;
            scroll-margin-top: 2rem;
            opacity: 0;
            transform: translateY(50px);
			animation: cosmicGlow 4s ease-in-out infinite;
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
            animation: cosmicGlow,sectionBounce 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes sectionBounce {
            0% { transform: translateY(50px) scale(0.9); opacity: 0; }
            60% { transform: translateY(-10px) scale(1.02); }
            100% { transform: translateY(0) scale(1); opacity: 1; }
        }

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

        .section-title {
            font-size: 2.8rem;
            font-weight: bold;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            font-family: monospace;
            background: linear-gradient(135deg,#f8fafc 0%,#93c5fd 45%,#c4b5fd 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: cosmicGlow 4s ease-in-out infinite;
            display: inline-block;
            will-change: filter, transform;
        }

    @keyframes cosmicGlow {
       0%, 100% {
        filter: drop-shadow(0 0 6px rgba(147, 197, 253, 0.35))
                drop-shadow(0 0 12px rgba(196, 181, 253, 0.15));
    }
       50% {
        filter: drop-shadow(0 0 12px rgba(147, 197, 253, 0.6))
                drop-shadow(0 0 24px rgba(196, 181, 253, 0.35));
        }
    }

    .section-title:hover {
       transform: translateY(-4px) scale(1.08);
        background: linear-gradient(
        135deg,
        #e0f2ff 0%,
        #7dd3fc 45%,
        #a78bfa 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    }

    .section-title::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);

    width: 120px;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #93c5fd,
        #c4b5fd,
        #93c5fd,
        transparent
    );

    border-radius: 10px;
    opacity: 0.7;

    animation: underlineGlow 3s ease-in-out infinite;
   }

    @keyframes underlineGlow {
      0%, 100% {
        opacity: 0.4;
        filter: blur(0.5px);
      }
     50% {
        opacity: 1;
        filter: blur(1.2px);
        }
    }


        /* Home Section*/
        #home {
            position: relative;
            text-align: center;
        }

        main {
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 1rem;
        }

        .content-wrapper {
            max-width: 800px;
            width: 100%;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .greeting {
            font-family: monospace;
            font-size: 1.7rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            animation: typing 2s steps(20);
            letter-spacing: 0.05em;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        .cursor {
            display: inline-block;
            width: 3px;
            height: 1.2em;
            background-color: #a855f7;
            margin-left: 4px;
            animation: blink 1s infinite;
            vertical-align: middle;
        }

        @keyframes blink {
            50% { opacity: 0 }
        }

        .name {
            font-size: 4rem;
            font-weight: bold;
            transition: transform 0.3s ease;
            margin-bottom: 0.5rem;
            display: inline-block;
			animation: reveal 2000ms ease-in-out forwards 200ms,
             cosmicGlow 2500ms linear infinite 2000ms;
            position: relative;
        }

        .name:hover {
            background: linear-gradient(135deg, #e0f2ff 0%, #7dd3fc 40%, #a78bfa 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
		
		 @keyframes reveal {
                 80%{
                letter-spacing: 8px;
            }
            100% {
                background-size: 300% 300%;
            }
        }
        @keyframes glow {
            40% {
              text-shadow: 0 0 8px #fff;
            }
        }

        .tagline {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeIn 1s ease-out forwards 1s;
        }

        .description {
            font-size: 1.9rem;
            font-weight: 600;
            color: #cbd5e1;
            max-width: 700px;
            line-height: 1.5;
            letter-spacing: 0.025em;
            transform: translateY(20px);
            opacity: 0;
            animation: slideUp 1s ease-out forwards 1.5s;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
            width: 100%;
			animation: cosmicGlow,
            flex-wrap: wrap;
        }

        .social-icon {
            position: relative;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            overflow: hidden;
            transition: all 0.4s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-icon:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(125deg, #e0f2ff 0%, #090979 100%, #00D4FF 100%);
            opacity: 0;
			animation: cosmicGlow 4s ease-in-out infinite;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .social-icon:hover:before {
            opacity: 1;
        }

        .social-icon:hover {
            transform: scale(1.3)translateY(-5px);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
            text-decoration: none;
			animation: cosmicGlow 4s ease-in-out infinite;
        }

        .social-icon i {
            color: white;
            font-size: 1.5rem;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .social-icon:hover i {
            animation: pulse 1s infinite;
        }

        @keyframes fadeIn {
            to { opacity: 1 }
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .profile-image {
            position: fixed;
            top: 0.75rem;
            left: 1rem;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            padding: 2px;
            background: linear-gradient(135deg, #e0f2ff 0%, #090979 20%, #00D4FF 100%);
            animation: profilePulse 3s infinite;
            z-index: 10;
        }

        .profile-image:hover {
            background: linear-gradient(135deg, #e0f2ff 0%, #090979 20%, #00D4FF 100%);
            transform: scale(1.25);
            color: transparent;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        @keyframes profilePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7); }
            50% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
        }

        /* About-Me*/
        .about-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .about-text {
            background: rgba(15, 15, 35, 0.3);
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: cosmicGlow,fadeIn 1s ease-out;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
			animation: cosmicGlow,
            line-height: 1.7;
        }

        .about-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(15deg, #e0f2ff 20%, #090979 86%, #00D4FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
			animation: cosmicGlow 4s ease-in-out infinite;
            font-weight: 600;
        }

        .about-text ul {
            margin-bottom: 1.5rem;
            margin-left: 1.5rem;
        }

        .about-text li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Skills */
        .skills-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .skill-category {
            background: rgba(15, 15, 35, 0.3);
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .skill-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .skill-category h3 {
            font-size: 1.6rem;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(15deg, #e0f2ff 20%, #090979 86%, #00D4FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
			animation: cosmicGlow 4s ease-in-out infinite;
        }

        .skill-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 2rem;
        }

        .skill-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .skill-item:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
        }

        .skill-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .skill-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
            transition: all 0.3s ease;
        }

        .skill-item:hover .skill-icon::before {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.4) 0%, rgba(59, 130, 246, 0.4) 100%);
        }

        .skill-icon i {
            font-size: 2rem;
            z-index: 1;
            position: relative;
            transition: all 0.3s ease;
        }

        .skill-item:hover .skill-icon i {
            transform: scale(1.1);
			animation: cosmicGlow,fadeIn 1s ease-out;
        }

        /* Colors */
        .java .skill-icon { background: linear-gradient(135deg, #ffd900 0%, #fd6b22 100%); }
        .linux .skill-icon { background: linear-gradient(135deg, #6545c7 0%, #924ff0 100%); }
        .compose .skill-icon { background: linear-gradient(135deg, #0e6c00 0%, #a0ff86 100%); }
        .kotlin .skill-icon { background: linear-gradient(135deg, #7f52ff 0%, #0075ff 100%); }
        .xml .skill-icon { background: linear-gradient(135deg, #024764 0%, #ff4ec1 100%); }
        .studio .skill-icon { background: linear-gradient(135deg, #03089a 0%, #05344a 100%); }
        .android .skill-icon { background: linear-gradient(135deg, #3ddc84 0%, #1976d2 100%); }
        .supabase .skill-icon { background: linear-gradient(135deg, #2fff00 0%, #024c04 100%); }
        .firebase .skill-icon { background: linear-gradient(135deg, #ffca28 0%, #ff6f00 100%); }
        .git .skill-icon { background: linear-gradient(135deg, #f05032 0%, #de4c36 100%); }
        .database .skill-icon { background: linear-gradient(135deg, #336791 0%, #1a472a 100%); }
        .cloud .skill-icon { background: linear-gradient(135deg, #ff9900 0%, #0073e6 100%); }
        .api .skill-icon { background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%); }

        .skill-item p {
            font-size: 1rem;
            font-weight: 600;
            color: #e2e8f0;
            margin: 0;
        }

        /* Projects */
        #projects {
            padding: 5rem 1.5rem 8rem;
        }

        .projects-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .project-card {
            background: rgba(15, 15, 35, 0.3);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
        }

        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }

        .project-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-image::after {
            opacity: 1;
        }

        .project-details {
            padding: 2rem;
        }

        .project-details h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            background: linear-gradient(125deg, #e0f2ff 0%, #090979 100%, #00D4FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
			animation: cosmicGlow 4s ease-in-out infinite;
        }

        .project-tags {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .project-tags span {
            padding: 0.4rem 1rem;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .project-tags span:hover {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.4) 0%, rgba(59, 130, 246, 0.4) 100%);
            transform: translateY(-2px);
        }

        .project-description {
            margin-bottom: 2rem;
            color: #cbd5e1;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .project-links {
            display: flex;
            gap: 1.5rem;
        }

        .project-link {
            padding: 0.7rem 1.5rem;
            background: linear-gradient(135deg,#f8fafc 0%,#93c5fd 45%,#c4b5fd 100%);
            border-radius: 50px;
            color: black;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .project-link i {
            font-size: 0.9rem;
        }

        .project-link:hover {
            background: linear-gradient(135deg,#f8fafc 0%,#93c5fd 45%,#c4b5fd 100%);
            transform: translateY(-9px);
            box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
        }

        /* Breakpoints */
        @media (max-width: 1200px) {
            .projects-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 900px) {
            .section-title {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 1rem 0;
            }

            nav {
                position: fixed;
                top: auto;
                bottom: 1rem;
                left: 50%;
                transform: translateX(-50%);
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.8rem;
                width: 90%;
                max-width: 400px;
                padding: 0.6rem;
            }

            section {
                padding: 4rem 1rem;
            }

            .projects-content {
                grid-template-columns: 1fr;
            }

            .project-card {
                max-width: 450px;
                margin: 0 auto;
            }

            .greeting {
                font-size: 1.3rem;
            }

            .name {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.8rem;
            }

            .description {
                font-size: 1.3rem;
                padding: 0 1rem;
            }

            .social-icons {
                gap: 1rem;
            }

            .social-icon {
                width: 2.5rem;
                height: 2.5rem;
            }

            .social-icon i {
                font-size: 1.25rem;
            }
            
            .skills-content {
                gap: 1.5rem;
            }
            
            .skill-category, .about-text {
                padding: 1.5rem;
            }

            .skill-items {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .greeting {
                font-size: 1.2rem;
            }

            .name {
                font-size: 2rem;
            }

            .tagline {
                font-size: 1.5rem;
            }

            .description {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .skill-category h3, .about-text h3 {
                font-size: 1.3rem;
            }
            
            .skill-icon {
                width: 3.5rem;
                height: 3.5rem;
            }
            
            .skill-icon i {
                font-size: 1.8rem;
            }
        }