* {
    box-sizing: border-box;
}

body,
html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

:root {
    --nav-col: rgba(71, 71, 71, 0.779);
    --side-ul: rgb(28, 28, 28);
    --white-glow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 255, 255, 0.679);

    ;
}


/*NAVIGATION*/
header {
    position: fixed;
    top: 0;
    z-index: 3;
    overflow: hidden;
    width: 100%;
    height: 70px;
}


nav {
    display: flex;
    justify-content: space-between;
    padding: 0 7%;
    align-items: center;
    transition: all .5s;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.452);
}


nav:hover {
    background-color: var(--nav-col)
}

nav h1 {
    color: white;
    text-shadow: var(--white-glow);
    font-weight: lighter;
    font-family: "Dancing Script";
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-style: italic;
    cursor: pointer;
    text-decoration: underline;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    font-weight: lighter;
    color: white;
    padding: 8px 16px;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.5s;
}

#nav-toggle {
    display: none;
}

nav ul li a:hover {
    background-color: var(--nav-col);
    text-shadow: var(--white-glow);
    box-shadow: 0px 5px 10px black;
}

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





/*HOME*/
.home {
    background-image: url('./atrail.png');
    height: auto;
    padding-top: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    --iconhome: #3c94d3;
}

.home::after {
    /*gelapin backgron */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.home>* {
    position: relative;
    z-index: 2;
    color: white;
}

.home-1 {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: -30px;
    align-items: center;
    justify-content: center;
    height: 100vh;
    animation: 2s slidein linear;
}


.home-1 h1 {
    font-size: 4.2rem;
    color: white;
    font-family: "Dancing Script";
}

.home-1 h2 {
    margin-top: -10px;
    font-size: 3vw;
    font-family: 'Segoe UI';
    font-weight: lighter;
}

.typing-text {
    font-weight: 600;
}

.typing-text span {
    position: relative;
}

.typing-text span::before {
    content: "";
    color: var(--iconhome);
    animation: words 10s infinite;
}

.typing-text span::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor {
    to {
        border-left: 3px solid var(--iconhome);
    }
}

@keyframes words {

    0%,
    20% {
        content: "Web Developer";
    }

    21%,
    40% {
        content: "React Engineer";
    }

    41%,
    60% {
        content: "Gamer";
    }

    61%,
    80% {
        content: "Software Engineer";
    }

    81%,
    100% {
        content: "Programmer";
    }
}

.social-icons {
    width: 90%;
    margin: -10px auto;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid var(--iconhome);
    font-size: 2rem;
    border-radius: 50%;
    margin: 0;
    transition: 0.3s ease;
    color: var(--iconhome);
    transform: scale(0.7);
}

.social-icons a:hover {
    color: black;
    transform: scale(1) translateY(-5px);
    background-color: var(--iconhome);
    box-shadow: 0 0 25px var(--iconhome);
}




.home-2-container {
    display: flex;
    min-height: max-content;
    flex-direction: column;
    margin-top: 0px;
    justify-content: center;
    padding-top: 300px;
    align-items: center;
    background-image: linear-gradient(to bottom, transparent 0%, black 30%);
}

.home-2 {
    display: flex;
    background-image: url('./tech.png');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    width: min-content;
    width: 100%;
    align-items: center;
    height: 100vh;
    justify-content: center;
    margin-top: 600px;
    gap: 50px;
    padding: 200px 20px 180px;
    animation: home2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    border-radius: 20px;
}

@keyframes home2{
    from{
        filter: opacity(0);
        transform: scale(0.5);
    }
    to{
        filter: opacity(1);
        transform: scale(1);
    }
}

.home {
    --blueish: rgb(0, 166, 255);
    --firstslash: rgb(255, 255, 255);
    --secondslash: black;
    --blackmain: black;

}

.home-2a {
    width: 50%;
}


.home-2 .contactme {
    text-align: start;
    font-style: italic;
}

.home-2 p span {
    font-weight: bold;
    color: var(--blueish);
}

.home-2 h1 {
    font-size: 3rem;
    margin-top: 5px;
    font-family: 'Dancing Script'
}

.home-2 p {
    text-align: justify;
}

.home-2b {
    display: flex;
    align-self: center;
    justify-content: center;
    width: 20%;
    min-width: 210px;
    box-shadow: inset 0px 0px 10px black;
    max-width: 250px;
    overflow: hidden;
}

.home-2b img {
    object-fit: cover;
    width: 100%;
    transition: all .5s;
    transform: scale(1.05);
}

.home-2b img:hover {
    transform: scale(1.25);
}

.home-2 .welcome {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: left;
    color: var(--blueish);
}
.frontend-container, .backend-container, .ai-container{
    padding-bottom: 5px;
    padding-top: 3px;

}

@keyframes homeback {
    from{
        clip-path: inset(0% 100% 0% 0%);
    }
    to{
        clip-path: inset(0 0 0 0);
    }
    
}
@keyframes homefrontai {
    from{
        clip-path: inset(0% 0% 0% 100%);
    }
    to{
        clip-path: inset(0 0 0 0);
    }
    
}

.frontend-container {
    background: linear-gradient(45deg, var(--secondslash) 30%, var(--firstslash) 30%);
    text-align: right;
    padding-left: 45%;
    margin-top: 700px;
    padding-right: 10px;
    color:black;
    animation: homefrontai linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%
}



.frontend-container p{
    color:var(--blackmain);
    font-size: 0.9rem;

}
.frontend-container h1{
    color: var(--blueish);
    transition: all.5s;
    padding-left:0;
}


.backend-container {
    background: linear-gradient(135deg, var(--firstslash) 70%, var(--secondslash) 70%);
    text-align: left;
    padding-right: 45%;
    padding-left: 10px;
    margin-top: 150px;
    transition: all .7s;
    animation: homeback linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%
}
.backend-container p{
    color:var(--blackmain);
    font-size: 0.9rem;
}
.backend-container h1{
    color: var(--blueish);
    padding-right:0;
}

.ai-container {
    background: linear-gradient(45deg, var(--secondslash) 30%, var(--firstslash) 30%);
    text-align: right;
    padding-left: 45%;
    margin-top: 150px;
    transition: all .7s;
    padding-right: 10px;
    animation: homefrontai linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%
}
.ai-container p{
    color:var(--blackmain);
    font-size: 0.9rem;

}
.ai-container h1{
    color: var(--blueish);
    padding-left:0;
}

.home-2a h1 {
    text-shadow: 1px 1px 10px white;

}

.home-btn-container {
    display: flex;

}

.home-btn-container .home-cv {
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--blueish);
    background: transparent;
    cursor: pointer;
    margin-right: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 10px white;
    transition: all.5s;
    color: white;
}

.home-btn-container .home-cv:hover {
    background-color: var(--blueish);

}

.home-btn-container .home-icons {
    display: flex;
    align-items: center;
}

.home-icons a {
    color: rgb(165, 165, 165);
    border: solid var(--blueish);
    border-radius: 50%;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6px;
    margin: 0px 5px;
    color: white;
    display: flex;
    transition: all .5s;
}

.home-icons a:hover {
    transform: scale(1.2);
    background-color: var(--blueish);
    box-shadow: 0px 0px 15px var(--blueish);
}

.home-1 h1 {
    text-shadow: -1px -1px 20px white;
}



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




/*PROFILE*/
:root {
    --profile-back: url('./darkprof.jpg');
}

.profile-container {
    padding-top: 0px;
    min-height: 100vh;
    background: var(--profile-back);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.profile-entry{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    background-image: url('./profilebackmain.jpg') ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.profile-entry h1 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: lighter;
    font-size: 3rem;
    animation: 1s slidein linear;
    margin-bottom: 10px;
    text-align: center;
}
.pro-nav{
    max-height: 70px;
}

.profile-entry p {
    font-size: 1rem;
    text-align: center;
    color: #5b6eff;
    animation: 1s slidein linear;
    font-weight: lighter;
}


.profile-desc-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-desc {
    display: flex;
    gap: 30px;
    padding: 30px;
    align-items: center;
    width: 90%;
    height: fit-content;
    justify-content: center;
    position: relative;
    transition: all .5s;
    max-width: 900px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 45%;
    backdrop-filter: blur(20px);
    border-radius: 100px 10px;
    overflow: visible;
    background: rgba(135, 135, 135, 0.148);
}
@keyframes appear {
    from{
        clip-path: inset(0 100% 0 100%);
        opacity: 0;
    }
    to{
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
    
}





.profile-desc .img-container {
    width: 40%;
    max-height: 320px;
    border-radius: 100%;
    overflow: hidden;
    min-width: 300px;
    display: flex;
}

.profile-desc img {
    width: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.profile-desc .content {
    width: 60%;
}

.profile-desc p {
    text-align: justify;
}

.profile-desc h1 {
    font-family: cursive;
    background-color: black;
    color: white;
    width: fit-content;
    padding: 3px 10px
}



.profile-academic {
    margin-top: 200px;
}

.profile-academic h1 {
    text-align: center;
    font-size: 9vw;
    font-weight: lighter;
    color: white;
    align-items: center;
    animation: popup both;
    margin-bottom: 50px;
    animation-timeline: view(25% 10%);
    text-shadow: 5px 5px 1px black, 1px 1px 10px white;
}

@keyframes popup {
    from {
        transform: scale(0.5) translateY(200px);
        filter: opacity(0);

    }

    to {
        transform: scale(1) translateY(0px);
        filter: opacity(1);
    }
}

.academic {
    width: 95%;
    max-width: 390px;
    gap: 50px;
    display: flex;
    flex-direction: column;
    margin: 0px auto;
    position: relative;
}

.academic-item span {
    padding-right: 10px;
    position: relative;
    font-size: 1.5rem;
}

.academic a{
    text-decoration: none;
}
.academic-item {

    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    width: 180px;
    justify-content: center;
    border-radius: 5px;
    background-color: black;
    color: white;
    transition: all .5s;
    aspect-ratio: 1/1;
    animation: blurry linear both;
    border: 2px solid blue;
    box-shadow: 10px 10px 1px rgb(0, 0, 0);
    animation-timeline: view();
    z-index: 1;
}




@keyframes blurry {
    0% {
        filter: blur(40px);

    }

    45%,
    55% {
        filter: blur(0px);
    }

    100% {
        filter: blur(40px);
    }

}

.academic-item:hover {
    background-color: white;
    color: black;
    width: 400px;
    aspect-ratio: 2.6/1;
}

.academic-item.right {
    align-self: flex-end;
}


.profile-skill {
    margin: 700px auto 0 auto;
    height: auto;
    flex-direction: column;
    align-items: center;
    --skill-theme: #2f00c9;
    padding-bottom: 150px;
    justify-content: center;
    max-width: 1300px;
}

.profile-skill h1 {
    text-align: center;
    color: white;
    font-weight: lighter;
    font-size: 9vw;
    animation: popup both;
    animation-timeline: view(30% 30%);
    margin-bottom: 50px;
    text-shadow: 5px 5px 1px black, 1px 1px 10px white;
}
.profile-skill h3, .profile-academic h3{
    text-align: center;
    color:white;
    font-weight: lighter;
    font-size: 1rem;
    width: 90%;
    margin: -20px auto 40px auto;
    padding:5px 10px;
    background:linear-gradient(to right, transparent, rgba(0, 0, 0, 0.753));
    animation: appearside linear;
    animation-timeline: view();
    animation-range: entry 0% cover 45%;
}
@keyframes appearside {
    from{
        clip-path: inset(0 100% 0 0);
    }
    to{
        clip-path: inset(0 0 0 0);
    }
    
}

.loading-container {
    display: flex;
    justify-content: center;
    gap:20px;
}
.load-left, .load-right{
    width: 40%;
    background: black;
    box-shadow: 10px 10px 1px #5021ec;
    padding:10px 20px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    animation: puffmogus linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
@keyframes puffmogus {
    from{
        filter: opacity(0);
        transform: translateX(50px);
    }
    to{
        filter: opacity(1);
    }
    
}
.loading {
    margin-bottom: 20px;
}

.loading-title {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: white;
    text-shadow: 1px 1px 5px white;
}

.loading-bar {
    background: #ddd;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: fit-content;
}

.loading-level {
    background: var(--skill-theme);
    color: white;
    padding: 3px 10px;
    border-radius: 20px 0 0 20px;
    text-align: right;
    font-size: 0.7rem;
    text-shadow: 1px 1px 5px white;
    font-weight: lighter;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.loading-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: wave 3s infinite linear;
    opacity: 0.6;
}

@keyframes wave {
    0% {
        transform: translate(-50%, -75%) scale(1.2);
    }

    50% {
        transform: translate(-25%, -50%) scale(1.5);
    }

    100% {
        transform: translate(-50%, -75%) scale(1.2);
    }
}
.fr-h5{
    text-align: center;
    color:white;
    font-weight: lighter;
    font-style: italic;
    font-size: 1rem;
    margin-top: 50px;
}
.frameworks{
    display: flex;
    margin: 0;
    gap:3px;
    justify-content: center;
}
.fr-item{
    width: 100px;
    background: black;
    overflow: hidden;
    display: flex;
    transition: all .9s cubic-bezier(.7,1.5,.8,1);
    box-shadow: inset 0 0 10px  var(--skill-theme);
    border-radius: 10px;
    align-items: center;
    color:white;
    height: 100px;
    cursor: default;
}

.fr-item:hover{
    width: 380px;
}
.fr-item:hover p{
    opacity: 1;
}
.fr-item img{
    width: 100px;
    object-fit: cover;
    padding: 10px;
}
.fr-item p{
    font-size: 0.9rem;
    opacity: 0;
    transition: all 2s;
    font-weight: lighter;
}

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



/*PROJECTS*/
.projects-container {
    background: url('./prodark.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 1px;
}

.projects {
    background-color: #313131c3;
    min-height: 100vh;
    padding-top: 70px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.projects-main {
    color: white;
}

.projects-h1-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.projects-h1 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: lighter;
    font-size: 3rem;
    animation: 1s slidein linear;
    margin-bottom: 10px;
    text-align: center;
}

.projects-p {
    font-size: 1rem;
    text-align: center;
    color: #5b6eff;
    animation: 1s slidein linear;
    font-weight: lighter;
}

.projects-main h1 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: lighter;
    padding: 20px 0;
    margin-top: 80px;
    text-align: center;
    background-color: #6c7dff9e;
    color: rgb(255, 255, 255);
    font-size: 2rem;
}

.input-container input:focus{
    border: 1px solid #6c7dff9e;
    box-shadow: 0px 0px 10px #6c7dff9e;
}
.projects-main h1, .projects-github h1{
    text-shadow: 2px 2px 1px black;

}
.projects .card-container {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    padding: 10px;
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.card-wrap {
    display: flex;
    width: 90%;
    height: 400px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    overflow: hidden;
    justify-content: space-between;
    position: relative;

}

.card-container .card {
    width: 47.7%;
    box-shadow: 5px 5px 1px black;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.899) , rgba(75, 75, 75, 0.899), rgba(0, 0, 0, 0.899));
    overflow: hidden;
    animation: 1s slidein linear;
    height: 95%;
    transition: all .5s;
    position: absolute;
}

.card:hover {
    border: 1px solid #5b6eff;
}

.controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0;
    transform: translateY(-50%);
}

.controls i {
    font-size: 24px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
}

.controls i:hover {
    background: rgba(0, 0, 0, 0.7);
}

@keyframes slidein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}




.card> :not(img) {
    padding-left: 15px;
    line-height: 5px;
    font-weight: lighter;
    padding-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    padding-bottom: 0;
}

.card img {
    width: 100%;
    padding: 19px;
    border-radius: 30px;
    align-self: center;
    height: 50%;
    object-fit: cover;
}

.card p {
    font-style: italic;
}

.card a {
    border: 1px solid white;
    width: max-content;
    cursor: pointer;
    text-decoration: none;
    color: white;
    padding: 15px;
    margin-top: 10px;
    margin-left: 10px;
    transition: all .4s;
    margin-bottom: 4%;
    border-radius: 50px;
}

.card a:hover {
    background-color: white;
    color: black;
}


:root {
    --gitprimary: #1e1e1e;
    --gitsecondary: black;
    --gitlink: #5b6eff;
    --gitlinkhov: rgb(0, 0, 111);
}

.projects-github {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    height: 100vh;
}

.projects-github h1 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: lighter;
    padding: 20px 0;
    text-align: center;
    background-color: #5b6eff9e;
    color: rgb(255, 255, 255);
    font-size: 2rem;
    width: 100%;
}

.searchgits {
    text-align: center;
    width: 95%;
    max-width: 700px;
}

.input-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    gap: 10px;
}

.input-field {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #000;
    background-color: var(--gitprimary);
    color: #fff;
    outline: none;
    width: 300px;
}

.search-button {
    padding: 10px 20px;
    background-color: var(--gitsecondary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.search-button:hover {
    background-color: var(--gitlink);
}

.search-button:active {
    transform: scale(0.95);
}

.git-container {
    max-width: 500px;
    margin: 0 auto;
    height: 400px;
    background: linear-gradient(45deg, black, rgb(62, 62, 62), black);
    padding: 20px;
    border-radius: 10px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    width: 95%;
    color: white;
    box-shadow: inset -5px -5px 1px rgb(0, 0, 0);
    text-align: center;
    display: flex;
    line-height: 1px;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    justify-content: space-around;
    margin-bottom: 90px;
}

.git-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.git-link {
    color: var(--gitlink);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 10px;
}

.git-link:hover {
    color: var(--gitlinkhov)
}


.git-info {
    margin: 10px 0;
    font-size: 1.1em;
}


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



/*CONTACT*/

.contact-container {
    background-color: black;
    padding-top: 1px;
    padding-bottom: 50px;
}

.contacts-entry {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('./contaback.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    flex-direction: column;
    color: white;
}


.contacts-h1 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: lighter;
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
    animation: 1s slidein linear;
}

.contacts-p {
    font-size: 1rem;
    text-align: center;
    color: #182cbc;
    animation: 1s slidein linear;
    padding: 2px 10px;
    font-weight: lighter;
}

.contact {
    background-color: #000000;
    color: #d1d5db;
    max-width: 600px;
    margin: 140px auto 0px auto;
    padding: 10px 15px 40px 15px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}
.form-container{
    height: 100vh;
}



.contact h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #60a5fa;
    font-family: 'Arial', sans-serif;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #9ca3af;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #374151;
    background-color: #1f2937;
    color: #d1d5db;
    font-size: 1rem;
    margin-bottom: 30px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #60a5fa;
    background-color: #111827;
}


#submit-button {
    padding: 12px 20px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

#submit-button:hover {
    background-color: #1e40af;
}

#submit-button:active {
    transform: scale(0.95);
}


@media (max-width: 768px) {
    .contact {
        padding: 20px;
    }

    .contact h1 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1rem;
    }
}






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




@media (max-width: 768px) {
    header {
        position: fixed
    }

    nav {
        text-align: center;
        background-color: rgba(0, 0, 0, 0.392);
        justify-content: center;
    }

    nav ul {
        display: block;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -200px;
        border-right: 1px solid white;
        width: 180px;
        height: 100%;
        background-color: var(--side-ul);
        padding: 100px 0;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    nav ul li {
        margin: 20px 0;
        width: 100%;
    }

    nav ul li a {
        color: white;
        font-size: 1.2rem;
    }

    nav ul.active {
        left: 0;
    }

    #nav-toggle {
        display: block;
        position: absolute;
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        background-color: transparent;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 20px;
        cursor: pointer;
        z-index: 1001;
    }

    #nav-toggle.active {
        background-color: #003c6c;
    }

    .home-1 {
        padding-top: 20px;

    }

    .home-2 .welcome {
        text-align: center;
    }

    .home-2 .contactme {
        text-align: center;
    }

    .home-btn-container {
        justify-content: center;
    }

    .home-1 h1 {
        font-size: 3.3rem
    }

    .home-1 h2 {
        font-size: 1.7rem;
    }

    .social-icons a {
        transform: scale(0.5);
    }

    .social-icons a:hover {
        transform: scale(0.7);
    }

    .home-2 {
        width: 100%;
        max-width: none;
        flex-direction: column;
        text-align: center;
        height: auto;
        justify-content: center;
        padding: 10px 10px;
        height: 100vh;
        align-items: center;
        gap: 10px;
    }

    .home-2b {
        min-width: 100px;
        max-width: 800px;
        align-self: none;

    }

    .home-2a {
        width: 100%;
        text-align: center;
    }
    .frontend-container, .backend-container, .ai-container{
        filter: opacity(1);
        box-shadow: 15px 15px 1px white;
        background: white;
        text-align: center;
        max-width: 300px;
        width: 85%;
        padding: 5px 10px;
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: none;
        text-align: center;
        border: 2px solid var(--blueish);
    }
    .frontend-container h1, .backend-container h1, .ai-container h1{
        margin-top: -20px;
        font-size: 1.4rem;

    }

    .frontend-container:hover, .backend-container:hover, .ai-container:hover{
        transform: scale(1.05);

    }

    .sigma-container{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }


    .profile-desc {
        gap: 5px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 95%;
    }
    .profile-skill h3, .profile-academic h3{
        font-size: 0.85rem;
    }

    .profile-desc .img-container {
        width: 30%;
        min-width: 0px;
    }

    .profile-desc .content {
        font-size: 0.9rem;
        width: 100%;
    }

    .profile-academic h1, .profile-skill h1{
        font-size: 4rem;
    }

    .academic-item {
        width: 40%;
        font-size: 0.9rem
    }
    .academic{
        padding:0 10px 0 10px;
    }

    .fr-item p{
        font-size: 0.8rem;
    }
    .fr-item:hover{
        width: 280px;
  
    }








}

@media (max-width : 590px) {

    .card-wrap{
        height: 300px;
    }
    .card a,
    .card p,
    .card h3 {
        font-size: 0.88rem;
    }
    .card-container .card{
        margin-left: -2px;
    }

    #left, #right{
        transform: scale(0.5);
    }
    #left{
        margin-left: -8px;
    }
    #right{
        margin-right: -8px;;
    }

    .fr-item{
        width: 400px;
    }
    .fr-item p{
        opacity: 1;
    }
    .frameworks{
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width: 430px) {
    .social-icons {
        transform: scale(0.7);
    }

    nav ul {
        width: 40%;
    }

    .git-container a {
        font-size: 1rem;
    }



    nav ul li a {
        font-size: 0.9rem;
    }

    .social-icons a:hover {
        transform: scale(0.8);
    }
    .home-1 h1{
        font-size: 1.7rem;
    }
    .home-1 h2{
        font-size: 1.1rem;
    }

    .home-2 {
        width: fit-content;
        height: 100vh;
    }

    .home-2 h1 {
        font-size: 1.5rem;
    }

    .card a,
    .card p,
    .card h3 {
        font-size: 0.8rem;
    }

    .card img {
        width: 100%;
        padding: 0;
        border-radius: 0;
    }

    .profile-desc .content{
        font-size: 0.75rem;
    }
    .profile-academic h1{
        font-size: 3rem;
    }
    .academic-item:hover{
        width: 200px;
        aspect-ratio: 1.5/1;
    }
    .academic-item {
        font-size: 0.7rem;
    }
    .academic-item span{
        font-size: 0.7rem;
    }
    .fr-item{
        width: 300px;
    }
    .fr-item p{
        font-size: 0.7rem;
    }
    .fr-item:hover{
        width: 300px;
    }

}



footer {
    background-color: #000000;
    text-align: center;
    padding: 20px;
    color: white;
    font-size: 14px;
    border-top: 2px solid white;
}

abbr {
    border-bottom: 1px dotted #000;
    cursor: help;
}