@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');
/*this is gonna be importing the montserrat font from google fonts*/

.main {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.navbar-section {
    background-color: transparent;
    border-radius: 30px;
    border: 1px solid black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.github-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    gap: 10px;
}

/*this is gonna be used for applying fonts to paragraphs tahat are not gonna need more styling kinda like how tailwind css works but  my version*/
.montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Base hamburger hidden on desktop */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: black;
    border-radius: 2px;
}




.logo {
    width: 50px;
    height: 50px;
}

#github-link {
    width: 30px;
}

.hero-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: fit-content;
    padding: 1px;
    gap: 20px;
}


.github-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    border-radius: 50%;
    padding: 7px;
    transition: background 0.3s, filter 0.3s;
}

.github-img {
    width: 10px;
    height: 10px;
}

.github-link:hover {
    background: black;
}

.github-link:hover img {
    filter: invert(1);
}


.btn {
    border: none;
    background-color: white;
    font-size: 14px;
    font-family: montserrat, sans-serif;
    font-weight: 500;
}

.btn:hover {
    color: #ff0000;
    cursor: pointer;
}

.text-section {
    width: 50%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.text-rotator {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pic-section {
    width: 50%;
}

.hero-text {
    font-size: 120px;
    font-weight: bold;
    font-family: montserrat, sans-serif;
    margin: 0;
    text-align: end;
}

.info {
    text-align: end;
    font-size: 15px;
    font-family: montserrat, sans-serif;
}

.info2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 15px;
}

.socials-section {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 5px;
    gap: 10px;
}


.socials-section a {
    display: inline-flex;
    border: 2px solid black;
    border-radius: 50%;
    padding: 7px;
    transition: background 0.3s;
}

.socials-section img {
    width: 20px;
    height: 20px;
}

.socials-section a:hover {
    background: black;
}

.socials-section a:hover img {
    filter: invert(1);
}

.socials-section2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;
    gap: 10px;
    background-color: transparent;
}

.socials-section2 a {
    display: inline-flex;
    border: 2px solid black;
    border-radius: 50%;
    padding: 7px;
    transition: background 0.3s;
}

.socials-section2 img {
    width: 20px;
    height: 20px;
}

.socials-section2 a:hover {
    background: black;
}

.socials-section2 a:hover img {
    filter: invert(1);
}

.hero-text {
    font-size: 110px;
    font-weight: bold;
    font-family: montserrat, sans-serif;
    margin: 0;
    text-align: right;
    line-height: 1;
}

.text-rotator {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.role {
    position: relative;
    width: 700px;
    height: 0.9em;
    overflow: hidden;
    line-height: 1;
}

.role span {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    animation: rotateWords 9s linear infinite;
    white-space: nowrap;
}

.role span:nth-child(1) {
    animation-delay: 0s;
}

.role span:nth-child(2) {
    animation-delay: 3s;
}

.role span:nth-child(3) {
    animation-delay: 6s;
}

@keyframes rotateWords {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(0);
    }

    40% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0;
    }
}

/*this is the achievement section thats gonna contain the cards*/
.achievements {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 20px;
    padding: 20px;
}

.outer {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    padding: 1px;
    background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
    position: relative;
}

.dot {
    width: 5px;
    aspect-ratio: 1;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px #ffffff;
    border-radius: 100px;
    z-index: 2;
    right: 10%;
    top: 10%;
    animation: moveDot 6s linear infinite;
}

@keyframes moveDot {

    0%,
    100% {
        top: 10%;
        right: 10%;
    }

    25% {
        top: 10%;
        right: calc(100% - 35px);
    }

    50% {
        top: calc(100% - 30px);
        right: calc(100% - 35px);
    }

    75% {
        top: calc(100% - 30px);
        right: 10%;
    }
}

.card {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    border: solid 1px #202222;
    background-size: 20px 20px;
    background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    color: #fff;
}

.ray {
    width: 220px;
    height: 45px;
    border-radius: 100px;
    position: absolute;
    background-color: #c7c7c7;
    opacity: 0.4;
    box-shadow: 0 0 50px #fff;
    filter: blur(10px);
    transform-origin: 10%;
    top: 0%;
    left: 0;
    transform: rotate(40deg);
}

.card .text {
    font-weight: bolder;
    font-size: 4rem;
    background: linear-gradient(45deg, #000000 4%, #fff, #000);
    background-clip: text;
    color: transparent;
}

.line {
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #2c2c2c;
}

.topl {
    top: 10%;
    background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}

.bottoml {
    bottom: 10%;
}

.leftl {
    left: 10%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #747474 30%, #222424 70%);
}

.rightl {
    right: 10%;
    width: 1px;
    height: 100%;
}

.pf-img {
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


.abt-btn-redirector {
    font-family: "Cookie", cursive;
    font-size: 30px;
    border: none;
    background-color: white;
}

.abt-btn-redirector:hover {
    cursor: pointer;
    color: #ff6d4d;
    text-shadow: 1px 1px black;
}

.abt-btn-redirector:active {
    cursor: pointer;
    color: #941b00;
    text-shadow: 1px 1px black;
}

.abt-redirector {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-section {
    padding: 5px;
}

.languages-and-proficiencies {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/*Damn now i gotta make these, coz i aint using react.js its way simpler if you work with them like components lol*/
.spaces {
    height: 20px;
}

.abt-sub-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 20px;

}

.abt-sub-section2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.experience-list {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.experience-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: left;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid #ccc;
    font-family: 'Montserrat', sans-serif;
}

.experience-index {
    font-size: 1.1rem;
    font-weight: 600;
    color: #888;
    min-width: 30px;
}

.experience-content {
    flex: 1;
}

.experience-role {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.experience-meta {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

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

.experience-details {
    list-style: disc;
    padding-left: 1.3rem;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.experience-details li+li {
    margin-top: 6px;
}

.Languages {
    display: flex;
    flex-direction: column;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    justify-items: center;
    align-items: center;
    padding: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    background-image: url(images/icon-bg.png);
    background-size: contain;
    background-color: transparent;
    backdrop-filter: blur(5px);
}

.alt-terminal {
    background-color: #1e1e1e;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
}

.alt-terminal .terminal-header {
    background-color: #2d2d2d;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.alt-terminal .btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.alt-terminal .btn.red {
    background-color: #ff5f56;
}

.alt-terminal .btn.yellow {
    background-color: #ffbd2e;
}

.end-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.alt-terminal .btn.green {
    background-color: #27c93f;
}

.alt-terminal .terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #aaa;
    font-size: 12px;
}

.alt-terminal .terminal-body {
    padding: 8px 12px;
    color: #00ff00;
    /* Green text */
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.icon {
    width: 60px;
    height: 60px;
    animation: spin 60s linear infinite reverse;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

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

.project-section {
    display: flex;
    flex-direction: column;
    background-color: white;
}

.pendulum-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 350px;
    background-color: #ffffff;
    position: relative;
}

.roof {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    background-color: #111;
    color: #fff;
    padding: 10px 30px;
    border-radius: 8px;
    margin-bottom: 0;
    z-index: 2;
}

.pendulum {
    position: relative;
    width: 2px;
    height: 200px;
    animation: swing 2s ease-in-out infinite alternate;
    transform-origin: top center;
    margin-top: 0px;
}

.rod {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 150px;
    background-color: #333;
    transform: translateX(-50%);
}

@keyframes swing {
    0% {
        transform: rotate(-25deg);
    }

    100% {
        transform: rotate(25deg);
    }
}

.about-me-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    font-family: 'Montserrat', sans-serif;
}

.about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.fluctuator-horizontal {
    height: 4px;
    background-color: #444;
    border-radius: 2px;
    animation: pulse-width 1.5s ease-in-out infinite;
}

.left-fluctuator {
    animation-delay: 0s;
    width: 40px;
}

.right-fluctuator {
    animation-delay: 0.75s;
    width: 40px;
}

@keyframes pulse-width {

    0%,
    100% {
        width: 30px;
    }

    50% {
        width: 100px;
    }
}

.sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin-top: 50px;
    padding: 0 20px;
}

.section {
    width: 45%;
    padding: 20px;
    border: 2px solid #333;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    font-family: sans-serif;
}

.left {
    animation: shake-left 2s infinite ease-in-out;
    animation-delay: 1s;
}

.right {
    animation: shake-right 2s infinite ease-in-out;
    animation-delay: 3s;
}

@keyframes swing {
    0% {
        transform: rotate(-25deg);
    }

    50% {
        transform: rotate(25deg);
    }

    100% {
        transform: rotate(-25deg);
    }
}

@keyframes shake-left {

    0%,
    100% {
        transform: translateX(0);
        box-shadow: none;
    }

    50% {
        transform: translateX(-4px) rotate(-1deg);
        box-shadow: 0 0 10px #888;
    }
}

@keyframes shake-right {

    0%,
    100% {
        transform: translateX(0);
        box-shadow: none;
    }

    50% {
        transform: translateX(4px) rotate(1deg);
        box-shadow: 0 0 10px #888;
    }
}



.project-image {
    width: 40%;
}

.project-text {
    width: 50%;
}

.projects-list {
    height: fit-content;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    padding: 50px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.project-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ccc;
    padding: 20px 0;
    gap: 20px;
    flex-wrap: wrap;
    transition: 1s;
}

.project-item:hover {
    cursor: pointer;
    transition: 1s;
    height: fit-content;
}

.project-item:hover .project-name {
    color: #ff6d4d;
    cursor: pointer;
    transition: 0.5s;
}

.project-preview-slide {
    width: 100%;
    max-height: 0;
    display: flex;
    flex-direction: row;
    overflow: auto;
    transition: max-height 0.6s ease, opacity 0.3s ease;
    opacity: 0;
}

.project-details-end {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    padding: 20px;
}

.project-preview-slide img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Show the image on hover */
.project-item:hover .project-preview-slide {
    max-height: 550px;
    opacity: 1;
}

.project-index {
    font-weight: 600;
    font-size: 1.2rem;
    flex: 0 0 40px;
    color: #555;
}

.project-details {
    flex: 1;
}

.project-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    transition: 0.5s;
}

.project-name:hover {
    color: #ff6d4d;
    cursor: pointer;
}

.project-meta {
    font-size: 0.95rem;
    color: #777;
}

.project-button {
    background: transparent;
    border: 1.5px solid #222;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.project-button:hover {
    background-color: #222;
    color: #fff;
}

.contacts-nav-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.talk-section {
    height: fit-content;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.talk-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 150px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    color: #111;
    padding-bottom: 5vh;
}

.cut-section {
    background: #ff6d4d;
    height: fit-content;
    margin-top: -10vh;
    z-index: 2;
    position: relative;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.copyright {
    text-align: center;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    padding: 2rem 1rem;
    font-size: 15px;
    font-weight: bold;
    color: #000000;
    align-self: center;
}

.quote {
    font-family: "Cookie", cursive;
    font-size: 30px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ff6d4d;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #ff6d4d;
    transform: scale(1.1);
}

.random-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.terminal-window {
    max-width: 700px;
    height: fit-content;
    background: #1e1e1e;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    color: #d4d4d4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    font-size: 16px;
}

.terminal-header {
    display: flex;
    align-items: center;
    background: #2b2b2b;
    padding: 8px 12px;
    border-bottom: 1px solid #000;
    position: relative;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.btn-red,
.btn-green,
.btn-yellow {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}

.btn-red {
    background: #ff5f56;
}

.btn-yellow {
    background: #ffbd2e;
}

.btn-green {
    background: #27c93f;
}

.terminal-title {
    color: #aaa;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
}

.terminal-body {
    padding: 20px;
    line-height: 1.6;
}

.prompt {
    color: #00ff9f;
    margin-right: 6px;
}

.about-me-terminal {
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dev-timeline {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: #111;
}

.dev-timeline-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.dev-timeline-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin: 0;
}

.dev-timeline-subtext {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 60px;
    color: #444;
}

.dev-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.dev-timeline-index {
    font-size: 1.1rem;
    font-weight: 600;
    color: #888;
    min-width: 30px;
}

.dev-timeline-content {
    flex: 1;
}

.dev-timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.dev-timeline-content p {
    font-size: 0.97rem;
    line-height: 1.6;
    color: #333;
}

.education {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.contact-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px;
}

#contact-text {
    font-size: 50px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Segoe UI', sans-serif;
}

h2 {
    font-size: 100px;
    font-weight: bold;
    margin: 0 0 30px 0;
    color: #111;
}

label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    border: none;
    border-bottom: 2px solid #333;
    background: transparent;
    padding: 8px 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    border-color: #0077ff;
}

textarea {
    resize: none;
    height: 100px;
}

.form-note {
    font-size: 12px;
    color: #888;
    text-align: left;
}

.contact-submit-btn {
    background: #ff6d4d;
    color: #000000;
    padding: 12px;
    width: 100%;
    height: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-weight: bold;
    border-radius: 4px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

#hire-btn {
    font-size: 50px;
    text-align: start;
}

.contact-submit-btn:hover {
    background: #000000;
    color: #ffffff;
}

.skills-row {
    display: flex;
    flex-wrap: wrap;
    /* or overflow-x: auto for scrollable row */
    gap: 20px;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.skills-section {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.more-skills {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    border: none;
    flex-wrap: wrap;
}

.non-coding-skills,
.personal-skills {
    flex: 1;
    min-width: 250px;
    padding: 10px 20px;
}

.non-coding-skills {
    border-right: 2px solid #000000;
}

h3 {
    color: #ff6600;
    font-size: 18px;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    color: #333;
}


/* Mobile repsonsiveness is gonna start styling here console.log('I miss javascript and tailwind') */
@media (max-width: 720px) {
    .navbar-section {
        flex-direction: row-reverse;
        align-items: start;
        position: relative;
    }

    .about-me-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 60px;
        font-family: 'Montserrat', sans-serif;
    }

    #see-more {
        display: none;
    }

    .project-button {
        display: flex;
    }

    .education {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        width: 100%;
        place-items: center;
    }

    .education img {
        width: 60%;
        height: auto;
        max-width: 100px;
        border-radius: 10px;
    }

    .about-me-terminal {
        height: fit-content;
    }

    .logo-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .hamburger {
        display: flex;

    }

    .menu-toggle:checked~.github-section {
        display: none;
    }

    .navbar {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
    }

    .github-section {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    #github-link {
        width: 30px;
    }

    /*I miss js*/


    .menu-toggle:checked+.hamburger+.navbar {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .hero-section {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        height: fit-content;
    }

    .logo {
        display: none;
    }

    .text-section {
        width: 100%;
        text-align: center;
    }

    .pic-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .pf-img {
        width: 75%;
        height: auto;
    }

    .hero-text {
        font-size: 50px;
    }

    .info {
        font-size: 14px;
        text-align: center;
    }

    .info2 {
        font-size: 14px;

    }

    .outer {
        width: 95%;
        height: 95%;
    }

    .abt-sub-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 20px;
    }

    #stat-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        display: block;
    }

    .grid-container {
        gap: 15px;
    }

    #trophy-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        display: block;

    }

    .project-section {
        width: 100%;
        height: fit-content;
    }

    .projects-list {
        height: fit-content;
    }

    .talk-text {
        font-size: 45px;
    }

    .cut-section {
        height: fit-content;
        width: 100%;
        margin-top: -7vh;
    }

    .quote {
        font-family: "Cookie", cursive;
        font-size: 25px;
        padding: 20px;
        text-align: center;
    }

    .contact-buttons {
        display: flex;
        flex-direction: row;
    }

    .contact-buttons {
        display: flex;
        flex-direction: row;
    }

    .contact-buttons a button {
        font-size: 12px;
        text-align: center;
    }

    .project-preview-slide {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        overflow: auto;
        transition: max-height 0.6s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .project-details-end {
        padding: 0px;
        height: fit-content;
    }

    .non-coding-skills {
        border-bottom: 2px solid #000000;
        border-right: transparent;
    }

}

/*Trust me coding without tailwind or react makes you have this many lines of code lmao*/
