 /* unnecessary comment, had to make a commit to deploy */
 body{
            background-color: black;
            color: white;
            overflow-x: hidden;
        }
        *{
            padding: 0;
            margin: 0;
        }
        html{
            scroll-behavior: smooth;
            scroll-padding-top: 65px;
            font-size: 62.5%;
        }
       
        nav{
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            position: fixed;
            width: 100%;
            border-bottom: 1px solid grey;
            backdrop-filter: blur(20px);
            height: 60px;
        }
        .pfp{
            height: 40px;
            margin: 8px;
            border-radius: 100%;
            transition: all 0.3s ease;
        }
        .pfp:hover{
            box-shadow: 0px 0px 6px yellow;
            transform: scale(1.02);
        }
        .logo-name{
            display: flex;
            
            align-items: center;
        }
        .nav-name{
            text-decoration: none;
            text-shadow: 0px 0px 10px blueviolet;
            font-family: "Dancing Script", cursive;
            font-weight: 900;
            color: white;
            font-size: 3vw;
        }
        
        .nav-links{
            display: flex;
            align-items: center;
            gap: 2rem;
            
        }
        .nav-links a{
            text-decoration: none;
            color: gray;
            font-size: 1.3vw;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            transition: all 0.3s;
        }
        .nav-links a:hover{
            color: wellow;
        }
        a.resume{
            background-color: rghite;
           
            

        }
        .nav-links a:active{
            color: yellow;
        }
        a.resume{
            background-color: rgb(43, 43, 180);
            color: white;
            border-radius: 1rem;
            border: 1px solid rgb(43, 43, 180);
            padding: 0.3rem 1rem;
            margin-right: 8px;
            font-family: sans-serif;
            font-weight: 600;
            transition: all 0.3s;
        }
        a.resume:hover{
            color: rgb(43, 43, 180);
            background-color: white;
            border: 1px solid black;
            border-radius: 1rem;
            padding: 0.3rem 1rem;
            margin-right: 8px;
            font-family: sans-serif;
            font-weight: 600;
            box-shadow: 0px 0px 20px;
        }
        a.resume:active{
            transform: translateY(5px);
        }
        .intro-sec{
            padding-top: 100px;
            
            justify-content: space-around;
            background-color: #05070a;
            align-items: center;
            padding-bottom: 10vw;
        }
        .intro{
            
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
            justify-content: space-around;
            background-color: #05070a;
            align-items: center;
            
        }
        .pfp-cont{
            display: flex;
            
            flex-direction: column;            
        }
        .profile{
            
            height: 25vw;
            
            border-radius: 20px;
            border-width: 3px;
            border-color: rgb(10, 52, 168);
            box-shadow: 0px 0px 990px rgb(14, 13, 114);
            

            border-style: double;
            transition: all 0.3s;
        }
        .profile:hover{
            transform: scale(1.04);
            
        }
        .contacts{
            display: flex;
            justify-content: space-around;
            margin-top: 5vw;
            
            padding: 0 4vw;
            
        }
        .contacts a{
            color: gray;
            transition: all 0.3s;
            font-size: 4rem;
        }
        .contacts a:hover{
            color: blue;
            text-shadow: 0px 0px 2px rgb(129, 129, 182);
            transform: scale(1.3);
        }
        .contacts a:active{
            color: yellow;
            text-shadow: blueviolet;
        }
        .intro-text{
            
            text-align: center;
            
            
        }
        .intro-text p{
            padding-top: 1vw;
            font-size: 2rem;
        }
        .intro-text h1{
            margin-top: 2.5vw;
            font-family: "Dancing Script", cursive;
            font-size: 6vw;
            color: blue;
        }
        .intro-text h5{
            color: gray;
            font-family: "Share Tech", sans-serif;
            font-size: 2.5rem;
            padding: 2vw;
        }
        .intro-text h6{
            color: gray;
            font-size: 1.8rem;
            line-height: 2.7rem;
        }
        .talk-btn{
            display: flex;
            justify-content: space-around;
            gap: 2rem;
            
        }
        .talk-btn a{
            text-decoration: none;
            color: white;
            background-color: blueviolet;
            font-size: 2rem;
            padding: 1vw 2.5vw;
            border-radius: 2rem;
            margin-top: 5rem;
            font-family: "Share Tech", sans-serif;
            transition: all 0.2s;
            border: 1px solid blueviolet;
        }
        .talk-btn a:hover{
            box-shadow: 0px 0px 15px blue;
            opacity: 0.9;
            border: 1px solid white;
        }
        .talk-btn a:active{
            color: blueviolet;
            background-color: white;
            transform: translateY(5px);
            border: 1px solid black;
        }
        a.cont-btn {
            font-family: "Dancing Script", cursive;
            font-weight: 1000;
            background-color: white;
            color: red;
            border: 1px solid white;
        }
        a.cont-btn:hover{
            border: 1px solid black;
        }
        a.cont-btn:active{
            color: white;
            background-color: red;
            transform: translateY(5px);
            border: 1px solid white;
        }
        
        .arrow-d{
            color: rgb(172, 113, 228);
            font-size: 3rem;
            margin-top: 5vw;
            animation: bounce 2s infinite;
            transition: all 0.3s;
            position: absolute;
            
        }
        .arrow-d:hover{
            color: white;
            
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        #About{
            
            font-size: 1.5vw;
            padding-top: 5vw;
            padding-bottom: 7.5vw;

        }
        .gtkm{
            text-align: center;
            letter-spacing: 2px;
            padding-bottom: 5rem;
            text-shadow: 0px 0px 90px blueviolet;
            font-size: 1.5vw;
            color: rgb(127, 127, 250);
            font-family: monospace;
        }
        .about-me{
            /* display: flex;
            align-items: center;
            justify-content: space-around; */
            display: grid;
            gap: 3rem;
            grid-template-columns: repeat(auto-fit, minmax(30rem, ));
            
            padding: 0px 4rem;
        }
        
        .less-tlk{
            border-left: 4px solid blue ;
            padding-left: 1rem;
            
            color: blueviolet;
            font-size: 6vw;
            text-shadow: 0px 0px 9000px rgb(184, 127, 238);
        } 
        
        .about-me div h2{
            font-size: 3rem;
            padding-bottom: 2rem;
           
        }
        .about-me div h4{
            font-family: "Share Tech", sans-serif;
            color: rgb(101, 148, 148);
            font-size: 1.7rem;
            line-height: 2.4rem;
            letter-spacing: 1px;
            
        }
        .about-stats {
            display: flex;
            gap: 4rem;
            margin-top: 3rem;
            justify-content: space-around;
        }

        .stat-item h4#h4 {
            font-size: 4rem;
            color: #2b65c4; 
            font-weight: 800;
            padding-top: 2vw;
        }

        .stat-item span {
            font-size: 1.4rem;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        
        
            
        #Projects {
            
            
            padding: 3vw 5rem;
            background-color: #05070a;
            
        }

        .projects-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
            gap: 4rem;
            
        }

        .project-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 2.4rem;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }    
        .project-card:hover {
            transform: translateY(-1rem);
            border-color: #3b82f6;
            box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
        }

        .project-img {
            height: 22rem;
            background: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: rgba(59, 130, 246, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative; 
            
            
        }    
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 7, 10, 0.85); 
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0; 
            transition: opacity 0.4s ease;
            z-index: 10;
        }

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

        .overlay-link {
            width: 5rem;
            height: 5rem;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            text-decoration: none !important;
            transition: transform 0.3s, background 0.3s;
        }

        .overlay-link:hover {
            transform: scale(1.15);
            background: #2563eb;
            color: white;
        }

        .project-info {
            padding: 3rem;
        }

        .project-info h3 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
        }

        .project-info p {
            font-size: 1.6rem;
            color: #94a3b8;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .tech-tags {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .tag {
            background: rgba(59, 130, 246, 0.1);
            color: #3b82f6;
            padding: 0.5rem 1.4rem;
            border-radius: 5rem;
            font-size: 1.2rem;
            font-weight: 700;
        }

        #Experience {
            padding: 3vw 5rem;
            
        }

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

        .timeline::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: rgba(59, 130, 246, 0.2);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            right: -8px;
            background-color: #05070a;
            border: 3px solid #3b82f6;
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }

        .left { left: 0; }
        .right { left: 50%; }

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

        .content {
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            border-radius: 1.5rem;
            transition: 0.3s;
        }

        .content:hover {
            border-color: #3b82f6;
            transform: translateY(-5px);
            background: rgba(59, 130, 246, 0.05);
        }

        .content h2 {
            font-size: 2rem;
            color: #3b82f6;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .content .company {
            font-size: 1.4rem;
            color: #94a3b8;
            font-family: "Share Tech", sans-serif;
            margin-bottom: 1rem;
            display: block;
        }

        .content p {
            font-size: 1.4rem;
            color: #cbd5e1;
            line-height: 1.6;
        }

        #Contact{
            padding: 3vw 5rem;
            background-color: #05070a;
        }
        #Contact h2{
            font-family: "Dancing Script", cursive;
            font-weight: 900;
            color: #3b82f6;
            font-size: 4vw;
            

        }
        #Contact h4{
            font-family: "Share Tech", sans-serif;
            font-size: 2vw;
        }
        .footer{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
        }
        @media screen and (max-width: 768px){
            #Contact h2 {
                font-size: 3rem;
            }
            #Contact h4 {
                font-size: 1.8rem;
            }
            .footer {
                text-align: center;
            }
            

            .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }

            .timeline-item::after { left: 23px !important; top: 15px; }

            .right { left: 0%; }
            .gtkm { font-size: 1.4rem; }
            
            .timeline::after { 
                left: 31px; 
                margin-left: 0; 
            }

            .intro-text {
                order: 2; 
            }

            .pfp-cont {
                order: 1; 
            }
            .nav-links{
                flex-wrap: wrap;
            }
        }
        footer{
            border-top: 1px solid gray;
            color: rgb(122, 106, 106);
        }
        footer p{
            text-align: center;
            font-family: monospace;
            font-size: 1.4rem;
        }
        footer p span{
            font-family: "Dancing Script", cursive;
            font-size: 2rem;
        }