@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html{
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color:#FFFFFF;
}
/*html{*/
/*    font-family:Verdana, Geneva, Tahoma, sans-serif;*/
    
/*    scroll-behavior: smooth;*/
/*}*/
body {
    margin: 0;
    padding: 0;
    /* background-color:#101828; */
    /* background-color: rgb(1, 1, 32); */
    background-color: #0d1224;
    color:#fff;
}
.home{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 80px 7%;
    min-height: 90vh;
}

.home-profile{
    flex: 1;
    max-width: 650px;
}

.intro-text{
    color: rgb(22 242 179);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title{
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
    margin-bottom: 20px;
}

.highlight-name{
    color: rgb(236 72 153);
}

.hero-role{
    font-size: 1.5rem;
    line-height: 1.5;
    color: #d1d5db;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-description{
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 600px;
}

.socials{
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.socials a{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #11152c;
}

.socials a i{
    color: rgb(236 72 153);
    font-size: 1.2rem;
}

.socials a:hover{
    transform: translateY(-5px);
    border-color: rgb(236 72 153);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.btns{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn,
.resume-btn{
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-btn{
    border: 1px solid rgba(236, 72, 153, 0.4);
    color: #fff;
    background-color: transparent;
}

.contact-btn:hover{
    background-color: rgba(236, 72, 153, 0.08);
    transform: translateY(-3px);
}

.resume-btn{
    background: linear-gradient(
        135deg,
        rgb(236 72 153),
        rgb(168 85 247)
    );
    color: white;
    border: none;
}

.resume-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.35);
}

.code-container{
    flex: 1;
    background: #11152c;
    border: 1px solid rgba(236, 72, 153, 0.25);
    border-radius: 24px;
    padding: 30px;
    overflow-x: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    max-width: 650px;
}

.code-container pre{
    margin: 0;
}

.code-container code{
    font-size: 0.95rem;
    line-height: 1.9;
    color: #d1d5db;
}
.hero-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.hero-tags span{
    padding: 10px 18px;
    background-color: rgba(22, 242, 179, 0.08);
    border: 1px solid rgba(22, 242, 179, 0.18);
    border-radius: 30px;
    color: rgb(22 242 179);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-tags span:hover{
    transform: translateY(-3px);
    background-color: rgba(22, 242, 179, 0.15);
}
.header{
    background-color: rgb(26 20 67);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}
/*About section*/
.section-title{
    width: fit-content;
    margin: 90px auto 50px auto;
    padding: 14px 30px;
    border-radius: 14px;
    background-color: #141b34;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 20px 7%;
}

.about-image-container{
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction:column;
}

.profile-photo{
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
    object-fit: cover;
    border: 1px solid rgba(236, 72, 153, 0.15);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    transition: all 0.4s ease;
}

.profile-photo:hover{
    transform: translateY(-8px);
}

.about-content{
    flex: 1;
    max-width: 680px;
}

.about-tag{
    display: inline-block;
    color: rgb(22 242 179);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-heading{
    font-size: 2.7rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 800;
}

.about-description{
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-highlights{
    display: flex;
    gap: 20px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.highlight-card{
    background: #11152c;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px;
    border-radius: 22px;
    min-width: 180px;
    transition: all 0.3s ease;
}

.highlight-card:hover{
    transform: translateY(-6px);
    border-color: rgba(236, 72, 153, 0.25);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.highlight-card h3{
    color: rgb(236 72 153);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.highlight-card p{
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/*Experience Section*/
.mark{
    color: rgb(22 242 179);
    font-size: 1rem;
}
.experience{
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.experience-photo{
    max-width:30%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 8px;
    height: 40%;
}
.experience-list{
    display: flex;
    flex-direction:column;
}
.indiv-experience{
    border: 2px solid rgb(26 20 67);
    background-color: #0f1429;
    border-radius: 25px;
    margin: 5px;
}
.duration{
    text-align: center;
    color: rgb(22 242 179);
}
.exp-details{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.exp-photo{
    padding-top: 15px;
    max-width: 18%;
    border-radius: 25px;
    height: 70%;
}
.position{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
}
.place{
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
}
.skill-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.skill-container{
    display: flex;
    white-space: nowrap;
    margin-top: 20px;
    position: relative;
    left: 0;
}

/* .skill-item {
    display: inline-block;
    padding: 0;
    transition: transform 0.5s;
    border: 1px solid white;
    border-radius: 8px;
    background-color: #04091f;
    margin: 10px;
    height: 150px;
    width:450px;
}
.skill-item p{
    text-align: center;
}
.skill-item img {
    display: block;
    margin: 0 auto;
    padding: 5px;
    width: 60px;
} */
.skill-item {
    display: inline-block;
    padding: 10px;  /* Add some padding for better appearance */
    transition: transform 0.5s;
    border: 1px solid white;
    border-radius: 8px;
    background-color: #04091f;
    margin: 10px;
    height: 180px;
    width: 500px;  /* Set the width to at least 350px */
    display: flex;
    flex-direction: column;
    justify-content: space-between;  /* Space between the image and the text */
    align-items: center;  /* Center the content horizontally */
    box-sizing: border-box;  /* Include padding and border in the element's total width and height */
}

.skill-item img {
    display: block;
    width: 80px;
}

.skill-item p {
    text-align: center;
    margin: 0;  /* Remove the default margin */
    padding-bottom: 10px;  /* Add some padding to the bottom */
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.project-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin: 5px;
}
.project-item{
    width: 400px;
    height: 400px;
    background-color:#04091f;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 10px;
}
.project-item img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    max-width: 90%;
    border-radius: 25px;
}
.android{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    max-width: 50%;
    height:65%;
    border-radius: 25px; 
    transition: transform 0.5s ease;
}
.project-item:hover .project-img,.android{
    transform: scale(1.2);
}
.education{
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.edu-photo{
    max-width: 10%;
    border-radius: 50%;
}
.indiv-education{
    border: 2px solid rgb(26 20 67);
    background-color: #0f1429;
    border-radius: 25px;
    margin: 5px;
    margin-left: 30px;
    width: 80%;
}
.education-photo{
    max-width:80%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-radius: 8px;
    height: 40%;
}
.contact-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.contact-form{
    width: 500px;
    border: 1px solid white;
    border-radius: 25px;
    text-align: center;
}
.contact-form p{
    padding: 2px;
    font-size: 1.2rem;
}
.contact-socials{
    margin-top: 200px;
}
.contact-socials p{
    font-size: 1.2rem;
    padding: 2px;
}
.contact-socials i{
    margin:2px;
    font-size: 2rem;
    padding: 3px;
    /* border: 1px solid; */
    border-radius: 50%;
    /* color:#0d1224;
    background-color:rgb(22 242 179); */
}
.myfom input{
    padding: 20px;
    width:400px;
    border-radius: 25px;
    height:20px;
    background-color: #0f1429;
    color: #fff;
}
.myfom textarea{
    padding: 20px;
    width:400px;
    border-radius: 25px;
    background-color: #0f1429;
    color: #fff;
}
.mysubmit{
    padding: 20px;
    text-align: center;
    width:200px;
    border-radius: 25px;
    border: 1px solid rgb(236 72 153);
    border-radius: 25px;
    background-color: rgb(236 72 153);
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}
@media screen and (max-width:962px) {
    .project-container{
        grid-template-columns: repeat(2,1fr);
    }
    .education{
        flex-direction: column;
    }
    .indiv-education{
        width: auto;
    }
    .edu-photo{
        height: 90%;
    }
    .home{
        flex-direction: column-reverse;
        padding-top: 50px;
        text-align: center;
    }

    .home-profile{
        max-width: 100%;
    }

    .hero-title{
        font-size: 3rem;
    }

    .hero-role{
        font-size: 1.2rem;
    }

    .hero-description{
        margin-left: auto;
        margin-right: auto;
    }
    .hero-tags{
        justify-content: center;
    }

    .socials{
        justify-content: center;
    }

    .btns{
        justify-content: center;
    }

    .code-container{
        width: 100%;
    }
    .about{
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-content{
        max-width: 100%;
    }

    .about-heading{
        font-size: 2.2rem;
    }

    .about-highlights{
        justify-content: center;
    }
}
@media screen and (max-width:550px) {
    .home{
        padding: 40px 20px;
    }

    .hero-title{
        font-size: 2.4rem;
    }

    .hero-role{
        font-size: 1rem;
    }

    .hero-description{
        font-size: 0.95rem;
    }

    .contact-btn,
    .resume-btn{
        width: 100%;
        justify-content: center;
    }

    .code-container{
        padding: 20px;
    }

    .code-container code{
        font-size: 0.8rem;
    }
    .about{
        padding: 20px;
    }

    .about-heading{
        font-size: 1.8rem;
    }

    .about-description{
        font-size: 0.95rem;
    }

    .profile-photo{
        max-width: 100%;
    }

    .highlight-card{
        width: 100%;
    }
    .experience{
        flex-direction: column;
    }
    .experience-photo{
        max-width: 70%;
        height: 90%;
        margin-bottom: 10px;
    }
    .project-container{
        grid-template-columns: repeat(1,1fr);
    }
    .project-item{
        width: auto;
        height:fit-content;
    }
    .contact-container{
        flex-direction: column;
    }
    .contact-form{
        width: auto;
        margin: 5px;
    }
    .contact-socials{
        margin-top: auto;
    }
    .myinput{
        width:350px;
    }
    .mytextarea{
        width:350px;
    }
    .mysubmit{
        width:350px;
    }
}