@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

html {
    cursor: url(../assets/media/arrowPoint.5b3f3b5c07736388f143.svg) 15 15, move;
    /*overflow-x: hidden;*/
}
body {
    background: #050810;
    color: #f5f5f5;
    animation: fadeInPage 1s ease-in forwards;

}

/* Deep space background with nebula effect */
body {
    position: relative;
    background: #050810;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 50%, rgba(124, 240, 61, 0.1), transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(124, 240, 61, 0.05), transparent 40%),
            radial-gradient(circle at 50% 80%, rgba(50, 50, 180, 0.1), transparent 60%);
    opacity: 0.8;
    z-index: -2;
    animation: nebula-shift 60s ease-in-out infinite alternate;
}

@keyframes nebula-shift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(white, rgba(255, 255, 255, 0.2) 2px, transparent 4px),
            radial-gradient(white, rgba(255, 255, 255, 0.15) 1px, transparent 3px),
            radial-gradient(white, rgba(255, 255, 255, 0.1) 2px, transparent 4px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    z-index: -1;
    animation: star-twinkle 100s linear infinite;
}

@keyframes star-twinkle {
    0% {
        opacity: 0.6;
        background-position: 0 0, 40px 60px, 130px 270px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
        background-position: 550px 550px, 390px 410px, 380px 520px;
    }
}

@keyframes fadeInPage {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 4%;
    background: #050810;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;

}
.navbar{
    overflow-y: hidden;
}

.navbar a{
    font-size: 20px;
    color: white;
    margin-left: 20px;
    font-weight: bold;
    border-bottom: transparent solid 2px;
    transition: all 0.3s ease;


}

.navbar a:hover,.navbar a:active{
    color: #7CF03D;
    border-bottom: #7CF03D solid 2px;
    /*
    border-bottom-width: inherit;
    */
}
.navbar a:focus{
    color: #7CF03D;
}

nav a{
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;
}
.logo{
    font-weight: normal;
    font-size: 40px;
    font-family: "Roboto Condensed", serif;
    /*font-optical-sizing: auto;*/
    font-style: normal;
    color: white;
    overflow-y: hidden;

    cursor: url(../assets/media/arrowPoint.5b3f3b5c07736388f143.svg) 15 15, move;
}
.logo span {
    color: #7CF03D;

}

#bars{
    position: absolute;
    width: fit-content;
    height: 40px;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-right: 1vw;
    display: none;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;
}

.hero{
    margin-left: 60px;
    margin-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -30px;
    /* overflow-y: hidden;*/
}

#hand-gif{
    width: 68px;
    top: 0;
    left: 0;
    margin-bottom: 65px;

}
.welcome{
    display: inline;
    position: relative;
    font-size: 35px;
    font-weight: bold;
    bottom:65px;
    overflow-y: hidden;

}
.hero-left>h1{
    position: relative;
    font-size: 50px;
    font-weight: bold;
    bottom: 70px;
    overflow-y: hidden;
}

/* Name animation with glow effect */
.hero-left > h1 {
    animation: fadeInUp 1s ease-out 0.2s both;
    transition: text-shadow 0.3s ease;
}


.hero-left > h1:hover {
    text-shadow: 0 0 10px rgba(124, 240, 61, 0.5);
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-left>b{
    position: relative;
    bottom: 90px;
    font-size: 35px;
    font-weight: bold;
}
.hero-left>b>span{
    color: #7CF03D;
}


.hero-des{
    position: relative;
    bottom: 80px;
    font-size: 17px;
    font-weight: bold;
    overflow-y: hidden;
}
/* Description text animation */
.hero-des {
    animation: fadeInUp 1s ease-out 0.6s both;
}
.sm-icons{
    position: relative;
    bottom: 60px;
    /*left: 10px;*/

}
.sm-icons img{
    width: 38px;
    margin-right: 10px;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;
}

/* Social media icons hover effect */
.sm-icons img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.sm-icons img:hover {
    transform: translateY(-5px);
}

.hero-left>a>button{
    position: relative;
    /*margin-left: 4px;*/
    bottom: 70px;
    width: 200px;
    height:47px;
    background: #7CF03D;
    color: #050810;
    font-size: 33px;
    border-radius: 40in;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;

    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;

}
/* Simple button transitions  */
.hero-left >a> button:hover {
    background-color: #050810;
    color: #7CF03D;
    box-shadow:  inset 0 0 0 2px #7CF03D;
}

/* Add subtle shine effect on hover */
.hero-left >a> button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.hero-left >a> button:hover::before {
    left: 100%;
}

.hero-right>dotlottie-player{
    position: relative;
    width: 500px;
}

/* Optional: Subtle entry animations for page elements */
.hero,#about {
    opacity: 0;
    animation: fadeInContent 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*#about{
    width: 100%;
    !*padding: 10px 4%;*!
    position: relative;
    left: 60px;
    right: 60px;
    bottom: 50px;
}*/
#about>h2{
    font-size: 40px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 20px;
    /*text-align: center;*/
    margin-left: 560px;
    overflow-y: hidden;
    /*padding: 10px 0;*/
}
#about>h2>span{
    color: #7CF03D;
}
.about-section{
    position: relative;
    display: flex;
    /*border: black solid 5px;*/
    width: 100%;
    /*margin-right: 200px;*/
    left: 60px;
    right: 60px;
    bottom: 10px;

}
.about-section>div:nth-child(2)>p{
    overflow-y: hidden;

}
.about-section>div:first-child{
    /* background: white;*/
    width: 650px;
}

.about-section>div:nth-child(2){
    display: flex;
    justify-content: space-between;
    width: fit-content;
    text-align: center;
    align-items: center;
    margin-right: 120px;
    margin-left:220px;
    margin-bottom:120px;
    font-size: 20px;
    /*width: 1000px;*/

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}


.home-img .img-box{
    position: relative;
    box-sizing: border-box;
    width: 380px; /*22vw*/
    height: 380px;
    /*background: red;*/
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.home-img .img-box::before,.home-img .img-box::after{
    content: "";
    position: absolute;
    width: 420px;/*need to decrease in media for desktops*/
    height: 420px;
    background: conic-gradient(transparent,transparent,transparent,#7CF03D);
    transform:rotate(0deg) ;
    animation: rotate 10s infinite linear;

}
.home-img .img-box::after{
    animation-delay: -5s;
}

@keyframes rotate{
    100%{
        transform: rotate(360deg);
    }
}
.home-img .img-box .img-item{
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    background: #050810;
    border-radius: 50%;
    border: 1px solid  #050810;
    display: flex;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}
.home-img .img-box .img-item img{
    position: absolute;
    display: block;
    width: 100%;
    object-fit: cover;
    mix-blend-mode: lighten;
}

#services>h2{
    font-size: 40px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 100px;/*/////*/
    text-align: center;
    overflow-y: hidden;
    /*padding: 10px 0;*/
}
#services>h2>span{
    color: #7CF03D;
}
#services{
    position: relative;
    bottom: 50px;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
}
.service-container{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    /* border: black solid 5px;*/
    width: 100%;
    overflow-y: hidden;
    /*padding-left: 20px;
    padding-right: 20px;*/
}
.service-container>div{
    padding: 0 20px 0 20px;
    height: 400px;
    background-color: rgba(124, 240, 61, 9%);
    box-shadow: 0 5px 10px rgba(124, 240, 61, 0.8);
    /*border: 3px solid darkslategray;*/
    margin: 20px 20px 20px 20px;
    border-radius: 8%;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    transition: .5s ease;
    /*overflow-y: hidden;*/

}
.service-container .service-box:hover{
    background-color: rgba(124, 240, 61, 20%);
    transform: scale(1.02);
}
.service-container>div>h3{
    text-align: center;
    font-size: 30px;
    /*font-weight: bold;*/
    color: white;
    overflow-y: hidden;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}
.ser-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.explore-btn{
    width: 120px;
    height:32px;
    background: rgba(124, 240, 61, 85%);
    border: solid 2px white;
    color: #050810;
    font-size: 17px;
    font-weight: bold;
    border-radius: 40in;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;
}
.explore-btn:hover {
    background-color: #050810;
    color: #7CF03D;

    border: solid 2px #7CF03D;
}
.explore{
    position: relative;
    top: 10px;
    display: flex;
    justify-content: center;
    margin-top: auto;
    /*align-items: center;*/

}

.service-container>div>p{
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: white;
    margin: 20px 40px 10px 40px;
    overflow-y: hidden;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}

.download-cv-button{
    width: 200px;
    height:47px;
    background: #7CF03D;
    color: #050810;
    font-size: 23px;
    border-radius: 40in;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;

    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;

}

.download-cv-button:hover {
    background-color: #050810;
    color: #7CF03D;
    box-shadow:  inset 0 0 0 2px #7CF03D;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);

}



.hero-right>dotlottie-player{
    position: relative;
    width: 500px;
}
.download-cv{
    position: relative;
    bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

/* Achievements Section Styling */
.achievements-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;


}

.achievements-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    overflow-y: hidden;
    color: white;
}

/* Achievements Container */
.achievements-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    overflow-y: hidden;
}

.achievement-card {
    background: transparent;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: 8px;
    border: #7CF03D solid 1.5px;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.achievement-card img {
    width: 100%;
    height: 250px;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
}

.achievement-card:hover img {
    transform: scale(1.05);
}

.achievement-description {
    padding: 1rem;
    background: transparent;
    flex-grow: 1; /* Allow description to fill remaining space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-description pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Arial', sans-serif;
    color: #989898;
    line-height: 1.6;
    margin: 0;
}

/* Tools & Technologies Section Styling */
#tools {
    max-width: 1200px;
    margin:auto;
    padding: 5rem 0;
    text-align: center;
}

#tools h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    overflow-y: hidden;
}

#tools h2 span {
    color: #7CF03D;
}


#tools .span-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    background-color: #7CF03D;
    padding: 1rem;
    border-radius: 15px;
}

#tools .span-2 > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    text-align: center;
    color: #7CF03D;
    background-color: #050810;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    overflow-y: hidden;
    padding: 0.5rem;
    border-radius: 15px;
}

#tools .span-2 img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

#tools .span-2 > *:hover {
    transform: scale(1.1);
    color: #7CF03D;
}

#tools .span-2 > *:hover img {
    /*transform: rotate(360deg);*/
    animation-name: rotate;
    animation-duration: 0.3s;
}

@keyframes rotate {
    from{
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Education Section Styling */
.education-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: transparent;
    position: relative;
}

.education-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
    overflow-y: hidden;
}

/* Timeline container */
.education-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Vertical line */
.education-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #7CF03D;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Timeline item */
.education-item {
    position: relative;
    width: 50%;
    padding: 10px 40px;
    box-sizing: border-box;
}

.education-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.education-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Green dot */
.education-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #7CF03D;
    border-radius: 50%;
    top: 15px;
}

.education-item:nth-child(odd)::before {
    right: -10px;
}

.education-item:nth-child(even)::before {
    left: -10px;
}

/* Education card */
.education-card {
    background-color: rgba(124, 240, 61, 9%);
    border: 2px solid #7CF03D;
    border-radius: 15px;
    padding: 15px;
    display: inline-block;
    max-width: 350px;
    position: relative;
}

.education-card:hover{
    background-color: rgba(124, 240, 61, 20%);
    transform: scale(1.04);
}

.education-card h3 {
    color: white;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
}

.education-card h3 img {
    width: 30px;
    /*margin-right: 10px;
    margin-bottom: 50px;*/
}
#ed-icon-1{
    width: 50px;
    margin-bottom: 45px;
}

#ed-icon-2{
    width: 40px;
    margin-bottom: 20px;
    margin-right: 10px;
}

#ed-icon-3{
    width: 55px;
    margin-bottom: 25px;
}

#ed-icon-4{
    width: 50px;
    margin-bottom: 20px;
    margin-right: 10px;
}

#ed-icon-5{
    width: 35px;
    margin-bottom: 20px;

}

.education-card p {
    color: white;
    /*margin: 0;
    text-align: center;*/
    overflow-y: hidden;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Work Experience Section Styling */
#work {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

#my-work-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 2rem;
    overflow-y: hidden;
}

#my-work-title span {
    color: #7CF03D;
}

#my-work-des {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 2rem;
    overflow-y: hidden;

    font-size: 20px;
    /*width: 1000px;*/

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}

.project-section-title{
    color: white;
    margin-top: 2rem;
    font-size: 1.5rem;
    overflow-y: hidden;
    display: flex;
}

.projects-container, .assignments-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow-y: hidden;
    margin-top: 0.5rem;
}

.project-card, .assignment-card {
    background-color: rgba(124, 240, 61, 9%) ;
    border: #7CF03D solid 1.5px;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    width: 300px; /*300*/
    /*user-select: none;*/
    transition: transform 0.3s ease;
}

.project-card:hover, .assignment-card:hover {
    background-color: rgba(124, 240, 61, 20%);
    /* transform: scale(1.01);*/
}

.project-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.project-card h5 {
    color: white;
    margin-bottom: 0.5rem;
    overflow-y: hidden;
}

.project-card p {
    margin-bottom: 1rem;
    overflow-y: hidden;
    font-size: 13px;
    color: white;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}

.project-explore-btn {
    background-color: rgba(124, 240, 61, 9%);
    border: #7CF03D solid 1.5px;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background-color 0.3s ease;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;
}

.project-explore-btn:hover {
    background-color: #7CF03D;
}

.nav-icon {
    color: #7CF03D;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    overflow-y: hidden;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;
}

.assignment-section-title{
    color: white;
    margin-top: 3rem;
    font-size: 1.5rem;
    overflow-y: hidden;
    display: flex;
}

.assignments-container .assignment-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow-y: hidden;
    margin-top: 0.5rem;
    height: 300px;
}
.assignment-card div{
    overflow: hidden;
}

.assignments-container a {
    color: #7CF03D;
    text-decoration: none;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
    font-weight: bold;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;

}

.assignments-container a:hover {
    color: #7CF03D;
}

.assignment-card img {
    max-width: 100%;
    max-height: 150px;
    border-radius: 10px;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.assignment-card p{
    margin-bottom: 1rem;
    overflow-y: hidden;
    font-size: 13px;
    color: white;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    font-variation-settings:
            "wdth" 100;
}



#contact {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color:transparent;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#contact h2 {
    color: #7CF03D;
    margin-bottom: 1rem;
    font-size: 2rem;
    overflow-y: hidden;
}

.contact-email,
.contact-phone {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: white;
    overflow-y: hidden;
}

.contact-email img,
.contact-phone img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;

}

.social-links a img:hover {
    transform: scale(1.2);
}

.download-cv-btn {
    background-color: #7CF03D;
    color: #050810;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;
    font-weight: bold;
    width: fit-content;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.download-cv-btn:hover {
    background-color: #5acd1b;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(124, 240, 61, 9%);
    border: 1.5px solid #7CF03D;
    border-radius: 5px;
    color: white;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background-color: #7CF03D;
    color: #050810;
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #5acd1b;
}
#nameError{
    color: red;
    overflow-y: hidden;
}
#emailError{
    color: red;
    overflow-y: hidden;
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 3rem;
    color: rgba(255, 255, 255, 0.59);
    overflow-y:hidden;
}

/* Responsive Design for footer */
@media (max-width: 1024px) {
    #contact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

}

@media (max-width: 480px) {
    #contact {
        padding: 1rem;
    }

    #contact h2 {
        font-size: 1.5rem;
    }

    .social-links{
        justify-content: center;
        margin-bottom: 0.8rem;
    }
    .copyright{
        font-size: 0.8rem;
    }
    .download-cv-btn{
        left: 0;
        right: 0;
        margin: auto;
    }
    .contact-info{
        left: 0;
        right: 0;
        margin: auto;
        justify-content: center;
        align-items: center;
    }

}
/*////////*/

/*Responsive Design of My-Work*/

@media (max-width: 768px) {
    .projects-container,
    .assignments-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .project-card,
    .assignment-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 1rem;
    }

    #my-work-des {
        font-size: 16px;
        padding: 0 1rem;
    }

    .nav-icon {
        display: none; /* Hide navigation icons on mobile */
    }
}

@media (max-width: 480px) {
    #my-work-title {
        font-size: 1.5rem;
    }

    .project-section-title,
    .assignment-section-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .project-card p {
        font-size: 12px;
    }

    .project-explore-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .assignments-container .assignment-card {
        height: auto;
    }
}

/*///////////*/


/* Responsive Design of Education*/
@media screen and (max-width: 750px) {
    .education-section{

    }
    .education-section h2 {
        font-size: 2rem;
    }
    .education-timeline::before {
        left: 30px;

    }

    .education-item {
        width: 100%;
        padding: 10px 50px 10px 50px;
    }

    .education-item:nth-child(odd),
    .education-item:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .education-item:nth-child(even)::before {
        left: 10px;

    }

    .education-item:nth-child(odd){
        left: 10px;
        right: 10px;
    }

    .education-item:nth-child(even){
        left: 10px;
        right: 10px;
    }

    .education-item::before {
        left: 10px;
    }

    .education-card {
        max-width:100%;
    }

    .education-card h3 {
        font-size: 1rem;
    }



}

@media screen and (max-width: 750px) and (min-width: 467px) {
    #ed-icon-1{
        width: 35px;
        margin-right: 10px;
    }
    #ed-icon-2{
        width: 35px;
        margin-right: 10px;
    }
    #ed-icon-3{
        width: 40px;
        margin-right: 10px;
    }
    #ed-icon-4{
        width: 40px;
        margin-right: 10px;
    }
    #ed-icon-5{
        width: 35px;
        margin-right: 10px;
    }


}

@media screen and (max-width: 468px) {
    .education-card h3 {
        font-size: 0.8rem;
    }
    #ed-icon-1{
        width: 30px;
        margin-right: 10px;
    }
    #ed-icon-2{
        width: 30px;
        margin-right: 10px;
    }
    #ed-icon-3{
        width: 35px;
        margin-right: 10px;
    }
    #ed-icon-4{
        width: 35px;
        margin-right: 10px;
    }
    #ed-icon-5{
        width: 25px;
        margin-right: 10px;
    }
}


/*//////////*/


/*Responsive Adjustments of tools and tech*/
@media screen and (max-width: 768px) {
    #tools h2 {
        font-size: 2rem;
    }

    #tools .span-2 {
        gap: 1rem;
        padding: 1rem;
    }

    #tools .span-2 > * {
        width: 80px;
        font-size: 0.8rem;
    }

    #tools .span-2 img {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    #tools .span-2 {
        gap: 0.5rem;
        padding: 0.8rem;
    }

    #tools .span-2 > * {
        width: 70px;
        font-size: 0.7rem;
    }

    #tools .span-2 img {
        width: 35px;
        height: 35px;
    }
}

@media all and (max-width: 1250px)  {
    #tools {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

/*////////*/

/* Responsive Adjustments of Achievements */
@media screen and (max-width: 768px) {
    .achievements-container {
        flex-direction: column;
        align-items: center;
    }

}

@media screen and (max-width: 480px) {
    .achievements-section h2 {
        font-size: 2rem;
    }

}

/*///////*/


@media all and (max-width: 768px){
    .hero{
        /*flex-direction: column;*/
        display: grid;
        width: fit-content;
        height: auto;
        /*margin-top: 0;*/
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
        justify-items: center; /* Center items horizontally */
        align-items: center; /* Center items vertically */
        text-align: center;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        padding: 0 0;


    }
    .sm-icons img:nth-child(4){
        margin-right: 0;
    }
    .hero-left{ /*welcome-description*/
        grid-column: 1/2;
        grid-row: 2/3;
        padding: 0 2%;
        bottom: 200px;


    }
    .hero-left>a>button{
        margin-left: -5px;
    }
    .hero-right{ /*Animation*/

        grid-column: 1/2;
        grid-row: 1/2;
        padding: 0 2%;
        bottom: 80px;


    }




}
@media all and (max-width: 600px){
     .service-container{
        grid-template-columns: repeat(1,1fr);
    }
    .download-cv{
        margin-top: 30px;
    }
}

@media all and (max-width: 1300px) and (min-width: 1025px){
    .service-container>div>h3{
        font-size: 25px;
    }
    .service-container>div>p{
        font-size: 15px;
    }
}

@media all and (max-width: 1024px) and (min-width: 601px){
    .service-container>div>p{
        font-size: 15px;
    }
    .service-container>div>h3{
        font-size: 25px;
    }
    .service-container{
        grid-template-columns: repeat(2,1fr);
    }
    .download-cv{
        margin-top: 40px;
    }

}

@media all and (max-width: 1024px){
    .navbar{
        display: none;
    }
    #bars{
        display: block;
    }
    .header{
        padding: 10px 2%;
    }

    .service-container>div {
        overflow: hidden;
        margin: 20px 20px 50px 20px;
    }






}

@media all and (max-width: 500px){
    .logo{
        font-size: 30px;
    }
    #bars{
        width: 30px;
    }
    #hand-gif{
        width: 48px;
        margin-bottom: 30px;
    }
    .welcome{
        font-size: 25px;
        bottom:40px;
    }
    .hero-left>h1{
        font-size: 40px;
        bottom: 40px;
    }
    .hero-left>b{
        bottom: 70px;
        font-size: 25px;
    }
    .hero-des{
        bottom: 70px;
        font-size: 12px;
    }
    .sm-icons{
        bottom: 60px;
        /*left: 10px;*/

    }
    .sm-icons img{
        width: 28px;
        margin-right: 8px;
        cursor: url(../assets/media/arrowClick.7219a884818048edacbe.svg) 15 15, move !important;
    }
    .hero-left>a>button{

        bottom: 70px;
        width: 170px;
        height:37px;
        font-size: 23px;
        border-radius: 30in;
    }
    .hero-left{
        position: relative;
        bottom: 200px;
    }
    .hero-right{ /*Animation*/
        position: relative;
        bottom: 80px;
    }
    .hero-right>dotlottie-player{
        position: relative;
        margin-top: 30px;
        margin-bottom: 50px;
        width: 350px;
    }
}

@media all and (max-width: 500px){
    .home-img .img-box{
        width: 250px;
        height: 250px;
    }
    .home-img{
        width: 275px;
    }
    .about-section>div:nth-child(2){
        display: flex;
        position: relative;
        /*width: 300px;*/
        /* margin-left:0;*/
        margin-top: 50px;
        font-size: 15px;
        width: auto;
        margin-right: 10px;
        margin-left: 10px;
        padding-left: 10px;
        padding-right: 10px;
        /*right: 10px;*/



        /*right: 15vw;*/



    }
    #about{
        margin-top: -300px;

    }
    #about>h2{
        text-align: center;
        margin-left: 0;
        margin-bottom: 50px;
    }



}

@media all and (max-width: 1000px) and (min-width: 769px) {
    .hero-right>dotlottie-player {
        width: 350px;
    }
}

@media all and (max-width: 1000px) {
    .about-section{
        flex-direction: column;
        position: static;
    }
    .about-section>div:nth-child(2){
        margin-left:10px;
        margin-right: 10px;
        margin-top: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .about-section{

        left: 10px;
        right: 10px;
    }
    .home-img{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #about>h2{
        text-align: center;
        margin-left: 0;
        margin-top: 30px;
        margin-bottom: 50px;

    }
    .about-section>div:first-child{
        width:auto;
    }

    #services>h2{
        margin-top: 20px;
    }


}

@media all and (max-width: 1250px) and (min-width: 1001px) {
    #about>h2{
        text-align: center;
        margin-left: 0;
        margin-bottom: 50px;
    }

    .about-section>div:nth-child(2) {
        margin-left: 120px;
    }
    .about-section>div:first-child{
        width: 750px;
    }


}

@media all and (max-width: 1024px) {
    .navbar {
        display: none;
        flex-direction: column;
        background: #050810;
        position: fixed;
        top: 52px;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 1rem;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        padding: 10px 0;
        text-align: center;
    }
}



