:root {
    --theme-color-orange: #E10600;
    --theme-color-blue: #1C47D2;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;

    cursor: none;
}

* {
    box-sizing: border-box;
    z-index: 10;
}


/*======================================================================================================================================*/


/* Pre-Loader Animation */
.overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;

    z-index: 99999;
}

.bar {
    width: 10%;
    height: 105vh;
    background: #000000;
    border-bottom: 3px solid rgba(255, 255, 255, 0.9);
}

.counter {
    margin: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 100000;

    color: var(--theme-color-orange);
    padding: 0.2em 0.4em;
    font-size: 20vw;
    font-family: "Thunder Black", sans-serif;
    font-weight: lighter;
}


/*======================================================================================================================================*/


/* Cursor Effect */
.cursor-circle {
    position: fixed;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffffff;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 10001;
}

/* Hide Cursor & Set Cursor Style Default From Mobile & Tablet Sizes */
@media all and (max-width: 1024px) {
    .cursor-circle {
        display: none;
    }

    body {
        cursor: auto;
    }
}


/*======================================================================================================================================*/


/* Header */
header {
    width: 100%;
    height: 80px;
    margin: 0 auto;
    align-items: center;
    padding: 0 60px;
    font-size: 22px;
    color: #ffffff;
    background: #000000;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
    box-sizing: border-box;
}

.navigationBar {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    height: 45px;
    font-family: "Fjalla One", sans-serif;
    display: flex;
    align-items: center;
}

/* Desktop nav links */
.navigationBar > ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.navigationBar > ul > li > a {
    margin: 0 30px;
    text-decoration: none;
    color: #ffffff;
    transition-duration: 500ms;
}

.navigationBar > ul > li > a:hover {
    color: var(--theme-color-orange);
}

/* Contact Button */
#contactBtn {
    width: 100px;
    height: 45px;
    background: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 100ms;
}

#contactBtn > a {
    text-decoration: none;
    font-family: "Fjalla One", sans-serif;
    padding: 10px;
    color: #111111;
    transition-duration: 100ms;
}

#contactBtn:active,
#contactBtn:hover {
    scale: 0.9;
}

#contactBtn > a:active,
#contactBtn > a:hover {
    color: var(--theme-color-orange);
}

#logo {
    font-family: "Changa One", sans-serif;
}

.burgerIcon {
    display: none;
    color: #ffffff;
    font-size: 22px;
}

#mobileContactBtn {
    display: none;
}

/* Mobile */
@media all and (max-width: 640px) {
    header {
        height: 60px;
        font-size: 18px;
        padding: 0 30px;
    }

    #contactBtn {
        display: none;
    }

    .navigationBar {
        display: none;

        border-radius: 2rem;
        background: rgba(17, 17, 17, 0.85);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

        position: absolute;
        top: 60px;
        right: 1rem;
        width: 60%;
        min-height: 80vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .navigationBar.responsiveNav {
        display: flex;
    }

    .navigationBar > ul {
        margin: 0;
        flex-direction: column;
        width: 90%;
    }

    .navigationBar > ul > li {
        width: 100%;
        text-align: center;
    }

    .navigationBar > ul > li > a {
        display: block;
        width: 100%;
        padding: 1.5rem 0;
        margin: 0;
        font-size: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .burgerIcon {
        display: block;
    }

    /* Contact Btn */
    #mobileContactBtn {
        display: block;
        width: 90%;
        text-align: center;
        margin-top: 10px;
        padding: 0 0 15px 0;
    }

    #mobileContactBtn > a {
        display: inline-block;
        background: #ffffff;
        color: #111111;
        font-family: "Fjalla One", sans-serif;
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-size: 20px;
        transition-duration: 100ms;
    }

    #mobileContactBtn > a:hover {
        color: var(--theme-color-orange);
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    header {
        height: 70px;
        font-size: 22px;
        padding: 0 40px;
    }

    #contactBtn {
        display: none;
    }

    .navigationBar {
        display: none;

        border-radius: 2rem;
        background: rgba(17, 17, 17, 0.85);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

        position: absolute;
        top: 60px;
        right: 1rem;
        width: 60%;
        min-height: 80vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .navigationBar.responsiveNav {
        display: flex;
    }

    .navigationBar > ul {
        margin: 0;
        flex-direction: column;
        width: 90%;
    }

    .navigationBar > ul > li {
        width: 100%;
        text-align: center;
    }

    .navigationBar > ul > li > a {
        display: block;
        width: 100%;
        padding: 2rem 0;
        margin: 0;
        font-size: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .burgerIcon {
        display: block;
    }

    /* Contact Btn */
    #mobileContactBtn {
        display: block;
        width: 90%;
        text-align: center;
        margin-top: 10px;
        padding: 0 0 15px 0;
    }

    #mobileContactBtn > a {
        display: inline-block;
        background: #ffffff;
        color: #111111;
        font-family: "Fjalla One", sans-serif;
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-size: 30px;
        transition-duration: 100ms;
    }

    #mobileContactBtn > a:hover {
        color: var(--theme-color-orange);
    }
}


/*======================================================================================================================================*/


/* Hero Section */
#heroSection {
    width: 100%;
    min-height: 50vh;
    height: auto;
    overflow: hidden;
    background: #000000;

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

/* Hero Grid */
#heroGrid {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 60px;

    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 0;

    position: relative;
}

/* Hello Text */
#helloTxt {
    grid-column: 1/3;
    grid-row: 1/2;
    place-self: center;

    margin: 0;
    font-family: 'Anton', sans-serif;
    font-size: 85px;
    font-weight: bold;
    color: #ffffff;
}

#helloTxt > span {
    color: var(--theme-color-orange);
}

/* Hero My Image Section */
#heroMyImg {
    grid-column: 1/2;
    grid-row: 1/3;
    width: 320px;
    justify-self: center;
    align-self: end;

    transform: rotate(-3.5deg);

    position: relative;
    z-index: 15;
}

#middleWrapper {
    grid-column: 1/3;
    grid-row: 2/3;

    display: flex;
    justify-content: center;
    align-content: center;
}

/* Background Vector */
#vector {
    place-self: center;
    padding: 10px 100px 0 0;

    width: clamp(350px, 75vw, 1000px);
    height: clamp(240px, 40vw, 444px);
    background: var(--theme-color-orange);
    clip-path: polygon(
            0% 13%, 7% 31%, 0% 40%, 6% 58%, 0% 74%, 9% 83%,
            9% 100%, 21% 93%, 30% 100%, 46% 92%, 58% 100%,
            71% 91%, 86% 100%, 89% 65%, 79% 85%, 99% 92%, 95% 76%,
            100% 63%, 96% 45%, 99% 30%, 94% 24%, 95% 3%, 85% 10%, 77% 0%,
            64% 10%, 51% 4%, 39% 11%, 25% 1%, 15% 15%
    );
    margin: 0;

    display: flex;
    justify-content: end;
    align-items: center;

    position: relative;
    z-index: 1;
}

#heroRight {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-content: center;
}

/* Hero Name Text Section */
#rayanTxt {
    justify-self: center;
    align-self: start;

    margin: 0;
    font-family: "Luckiest Guy", cursive;
    font-size: 180px;
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 12px;
    text-shadow: 10px 7px 10px #000000;

    display: inline-flex;
    width: fit-content;
    height: fit-content;


    z-index: 20;
}

.rayanText {
    user-select: none;
    transition-duration: 200ms;
}

.rayanText:hover {
    transform: translateY(-20px);
}

#rTxt {
    color: #000000;
    text-shadow: 10px 7px #ffffff;
}

#kavishkaTxt {
    justify-self: center;
    align-self: end;

    margin: 0;
    width: fit-content;
    height: fit-content;
    padding: 0 20px 0 20px;

    font-family: "Luckiest Guy", cursive;
    font-size: 90px;
    color: #ffffff;
    font-weight: normal;
    letter-spacing: 5px;
    background: #000000;
    rotate: -5deg;
}

/* Hero Bottom Section */
#heroBottom {
    transform: translateY(-45px);
}

.scrollingText {
    text-align: center;
    display: flex;
    gap: 2rem;
    overflow: hidden;
    user-select: none;
}

.listContainer {
    max-width: 100%;
    padding: 10px 0 10px 40px;
    list-style: none;
    display: flex;
    flex-shrink: 0;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.scrollingText:hover .listContainer {
    animation-play-state: paused;
}

#backTap1,
#backTap2 {
    pointer-events: none;
}

.big {
    background: #000000;
    animation: scrollXBig 50s linear infinite;
}

.small {
    background: #ffffff;
    animation: scrollXSmall 30s linear infinite reverse;
}

.text, .text1 {
    margin: 0 30px 0 0;
    font-family: 'Anton', sans-serif;
}

.text {
    color: var(--theme-color-blue);
    font-size: 65px;
}

.text1 {
    color: var(--theme-color-orange);
    font-size: 65px;
}

.listContainer.big i {
    font-size: 35px;
    position: relative;
    bottom: 12px;
}

.listContainer.small i {
    font-size: 35px;
    position: relative;
    bottom: 12px;
}

.scrollingText.main {
    position: relative;
    top: 10px;
    transform: rotate(4deg);

    z-index: 12;
}

.scrollingText.second {
    position: relative;
    bottom: 120px;
    transform: rotate(-5deg);
}

#backTape1, #backTape2 {
    position: relative;
    right: 33px;

    z-index: 1;
}

@keyframes scrollXBig {
    to {
        transform: translateX(-100%);
    }
}

@keyframes scrollXSmall {
    to {
        transform: translateX(-100%);
    }
}

/* Mobile */
@media all and (max-width: 640px) {
    #heroGrid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        padding: 0;
        gap: 1rem;
    }

    #helloTxt {
        grid-column: 1/2;
        grid-row: 1/2;
        font-size: 45px;
        place-self: center;
        margin: 0;
    }

    #heroMyImg {
        grid-column: 1/2;
        grid-row: 2/3;
        width: 200px;
        justify-self: center;
        align-self: end;
    }

    #middleWrapper {
        grid-column: 1/2;
        grid-row: 3/4;

        display: flex;
        justify-content: center;
        align-content: center;
    }

    #vector {
        place-self: center;
        padding: 0;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    #heroRight {
        display: flex;
        flex-direction: column;

        justify-content: center;
        align-content: center;
    }

    #rayanTxt {
        font-size: 80px;
        letter-spacing: 5px;
        place-self: center;
    }

    #rTxt {
        color: #000000;
        text-shadow: 4px 3px #ffffff;
    }

    #kavishkaTxt {
        font-size: 38px;
        padding: 5px 10px;
        letter-spacing: 4px;
        place-self: center;
    }

    #heroBottom {
        transform: translateY(0);
    }

    .listContainer {
        padding: 5px 0 5px 40px;
        gap: 40px;
    }

    .text, .text1 {
        margin: 0 30px 0 0;
        font-family: 'Anton', sans-serif;
    }

    .text {
        color: #ffffff;
        font-size: 30px;
    }

    .listContainer.big i {
        font-size: 15px;
        position: relative;
        bottom: 7px;
    }

    .scrollingText.main {
        transform: translateY(-1rem) rotate(0deg);
    }

    .scrollingText.main {
        rotate: 0deg;

    }

    .scrollingText.second {
        display: none;
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #heroGrid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        padding: 0;
        gap: 1rem;
    }

    #helloTxt {
        grid-column: 1/2;
        grid-row: 1/2;
        font-size: 70px;
        place-self: center;
        margin: 0;
    }

    #heroMyImg {
        grid-column: 1/2;
        grid-row: 2/3;
        width: 300px;
        justify-self: center;
        align-self: end;
    }

    #middleWrapper {
        grid-column: 1/2;
        grid-row: 3/4;

        display: flex;
        justify-content: center;
        align-content: center;
    }

    #vector {
        width: 95vw;
        height: 55vw;
        place-self: center;
        padding: 0;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    #heroRight {
        display: flex;
        flex-direction: column;

        justify-content: center;
        align-content: center;
    }

    #rayanTxt {
        font-size: 180px;
        letter-spacing: 7px;
    }

    #rTxt {
        color: #000000;
        text-shadow: 4px 3px #ffffff;
    }

    #kavishkaTxt {
        font-size: 85px;
        padding: 5px 10px;
        letter-spacing: 4px;
    }

    #heroBottom {
        transform: translateY(0);
    }

    .listContainer {
        padding: 8px 0 8px 40px;
        gap: 40px;
    }

    .text, .text1 {
        margin: 0 30px 0 0;
        font-family: 'Anton', sans-serif;
    }

    .text {
        color: #ffffff;
        font-size: 45px;
    }

    .listContainer.big i {
        font-size: 15px;
        position: relative;
        bottom: 7px;
    }

    .scrollingText.main {
        transform: translateY(-1rem) rotate(0deg);
    }

    .scrollingText.main {
        rotate: 0deg;

    }

    .scrollingText.second {
        display: none;
    }
}


/*======================================================================================================================================*/


/* About Section */
#aboutSection {
    width: 100%;
    height: auto;
    min-height: 50vh;
    background: #000000;
}

#aboutGrid {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 60px 60px;

    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: auto auto auto;
}

/* About Top Section */
.aboutTop {
    grid-column: 1/4;
    grid-row: 1/2;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.banner {
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    margin: 0;
    font-family: "Luckiest Guy", cursive;
    font-size: 40px;
    font-weight: normal;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    place-self: center;
}

.country {
    background: var(--theme-color-orange);

    animation: countryBanner linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 60%;
}

@keyframes countryBanner {
    from {
        transform: translate(200px, 200px) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    to {
        transform: translate(-70px, -20px) scale(1) rotate(-7deg);
    }
}

.bDay {
    background: var(--theme-color-blue);

    animation: dayBanner linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 60%;
}

@keyframes dayBanner {
    from {
        transform: translate(-200px, 200px) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    to {
        transform: translate(80px, -20px) scale(1) rotate(5deg);
    }
}

.age {
    background: var(--theme-color-blue);

    animation: ageBanner linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 60%;
}

@keyframes ageBanner {
    from {
        transform: translate(200px, 100px) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    to {
        transform: translate(-50px, 50px) scale(1) rotate(7deg);
    }
}

.city {
    background: var(--theme-color-orange);

    animation: cityBanner linear both;
    animation-timeline: view();
    animation-range: entry 20% cover 60%;
}

@keyframes cityBanner {
    from {
        transform: translate(-200px, 100px) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    to {
        transform: translate(40px, 50px) scale(1) rotate(-7deg);
    }
}

/* About Middle Section */
.aboutMiddle {
    width: 266px;
    height: 417px;
    background: url("assets/images/AboutImg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    grid-column: 2/3;
    grid-row: 2/3;
    place-self: center;
}

/* About Left Section */
.aboutLeft {
    width: 400px;
    height: 100px;
    background: url("assets/images/signature.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    grid-column: 1/2;
    grid-row: 2/3;

    justify-self: end;
    align-self: center;
}

/* About Right Section */
.aboutRight {
    display: flex;
    align-items: center;
    gap: 50px;

    grid-column: 3/4;
    grid-row: 2/3;

    justify-self: start;
    align-self: center;
}

.aboutRight > a {
    text-decoration: none;
    width: 150px;
    height: 45px;
    background: #000000;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    padding: 20px 0;

    font-family: "Fjalla One", sans-serif;
    font-size: 25px;
    color: #ffffff;

    transition-duration: 150ms;
}

.aboutRight > a:hover, .aboutRight > a:active {
    background: #ffffff;
    transform: scale(0.85);
    color: var(--theme-color-orange);
    border: 4px dotted var(--theme-color-orange);
}

/* About Bottom Section */
.aboutBottom {
    width: fit-content;
    height: fit-content;

    grid-column: 1/4;
    grid-row: 3/4;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.aboutMe {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 1rem 0;

    font-family: 'Anton', sans-serif;
    font-size: 250px;
    letter-spacing: 1rem;
    color: #ffffff;

    line-height: 1;
    border-bottom: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
}

.aboutBottom > p {
    margin: 0;
    height: auto;
    font-family: "Caveat Brush", cursive;
    font-size: 25px;
    color: #ffffff;
}

/* Mobile */
@media all and (max-width: 640px) {
    #aboutGrid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 20px 20px;
    }

    /* About Top Section */
    .aboutTop {
        grid-column: 1/2;
        grid-row: 1/2;
        place-self: center;
    }

    .banner {
        font-size: 15px;
        padding: 5px 5px;
    }

    /* About Middle Section */
    .aboutMiddle {
        width: 180px;
        height: 250px;
        grid-column: 1/2;
        grid-row: 2/3;
        place-self: center;
    }

    /* About Left Section */
    .aboutLeft {
        width: 200px;
        height: 50px;
        grid-column: 1/2;
        grid-row: 3/4;
        place-self: center;
    }

    /* About Right Section */
    .aboutRight {
        grid-column: 1/2;
        grid-row: 4/5;
        place-self: center;
    }

    .aboutRight > a {
        width: 100px;
        height: 16px;
        font-size: 16px;
        border-width: 2px;
    }

    /* About Bottom Section */
    .aboutBottom {
        width: fit-content;
        height: fit-content;
        grid-column: 1/2;
        grid-row: 5/6;
        text-align: center;
        place-self: center;
    }

    .aboutBottom > h1 {
        font-size: 100px;
        letter-spacing: 0.5rem;
    }

    .aboutBottom > p {
        font-size: 10px;
    }

    @keyframes countryBanner {
        from {
            transform: translate(200px, 200px) scale(0.5) rotate(0deg);
            opacity: 0;
        }
        to {
            transform: translate(-40px, 0) scale(1) rotate(-7deg);
        }
    }

    @keyframes dayBanner {
        from {
            transform: translate(-200px, 200px) scale(0.5) rotate(0deg);
            opacity: 0;
        }
        to {
            transform: translate(40px, 0) scale(1) rotate(5deg);
        }
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #aboutGrid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 20px 20px;
    }

    /* About Top Section */
    .aboutTop {
        grid-column: 1/2;
        grid-row: 1/2;
        place-self: center;
    }

    .banner {
        font-size: 20px;
        padding: 5px 5px;
    }

    /* About Middle Section */
    .aboutMiddle {
        width: 180px;
        height: 250px;
        grid-column: 1/2;
        grid-row: 2/3;
        place-self: center;
    }

    /* About Left Section */
    .aboutLeft {
        width: 200px;
        height: 50px;
        grid-column: 1/2;
        grid-row: 3/4;
        place-self: center;
    }

    /* About Right Section */
    .aboutRight {
        grid-column: 1/2;
        grid-row: 4/5;
        place-self: center;
    }

    .aboutRight > a {
        width: 100px;
        height: 16px;
        font-size: 16px;
        border-width: 2px;
    }

    /* About Bottom Section */
    .aboutBottom {
        width: fit-content;
        height: fit-content;
        grid-column: 1/2;
        grid-row: 5/6;
        text-align: center;
        place-self: center;
    }

    .aboutBottom > h1 {
        font-size: 120px;
        letter-spacing: 0.8rem;
    }

    .aboutBottom > p {
        font-size: 18px;
    }

    @keyframes countryBanner {
        from {
            transform: translate(200px, 200px) scale(0.5) rotate(0deg);
            opacity: 0;
        }
        to {
            transform: translate(-40px, 0) scale(1) rotate(-7deg);
        }
    }

    @keyframes dayBanner {
        from {
            transform: translate(-200px, 200px) scale(0.5) rotate(0deg);
            opacity: 0;
        }
        to {
            transform: translate(40px, 0) scale(1) rotate(5deg);
        }
    }
}


/*======================================================================================================================================*/


/* Experience Section */
#experienceSection {
    width: 100%;
    height: auto;
    min-height: 100vh;
    color: #ffffff;
    padding: 60px 0;

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

    background: #111111;
}

/* Experience Top Section */
#exTop {
    display: flex;
    justify-content: center;
    align-items: center;
}

#exHead {
    max-height: 450px;
    margin: 0;
    font-family: 'Thunder Black', sans-serif;
    font-size: 350px;
    color: var(--theme-color-blue);
    font-weight: lighter;
}

/* Experience Bottom Section */
#exGrid {
    width: 100%;
    min-height: auto;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10rem;
}

/* Student */
#studentTopic {
    grid-column: 1/2;
    grid-row: 1/2;
    text-align: center;
}

#studentDetail {
    grid-column: 2/3;
    grid-row: 1/2;
    place-self: center;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#stuImage {
    width: 390px;
    height: 385px;

    background: url("assets/images/Student.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#stuBox, #inBox {
    width: 390px;
    height: auto;
    border: 3px solid #ffffff;
    padding: 0 10px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#stuTopic, #inTopic {
    font-family: "Changa One", sans-serif;
    font-size: 30px;
}

#stuLine, #inLine {
    height: 80px;
    width: 10px;
    background: #ffffff;
}

#stuPara, #inPara {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
}

/* Intern */
#internDetail {
    grid-column: 1/2;
    grid-row: 2/3;
    place-self: center;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#inImage {
    width: 390px;
    height: 385px;

    background: url("assets/images/Intern.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#internTopic {
    grid-column: 2/3;
    grid-row: 2/3;
    text-align: center;
}

#studentTopic > h1, #internTopic > h1 {
    margin: 0;
}

#studentDetail {
    animation: moveTopFromRight linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

#internDetail {
    animation: moveTopFromLeft linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

@keyframes moveTopFromLeft {
    from {
        scale: 0.5;
        opacity: 0;
        filter: grayscale(100%);
        transform: translateX(-100%) rotate(0deg);
    }
    to {
        scale: 1;
        opacity: 1;
        filter: grayscale(0%);
        transform: translateX(0) rotate(-5deg);
    }
}

@keyframes moveTopFromRight {
    from {
        scale: 0.5;
        opacity: 0;
        filter: grayscale(100%);
        transform: translateX(100%) rotate(0deg);
    }
    to {
        scale: 1;
        opacity: 1;
        filter: grayscale(0%);
        transform: translateX(0) rotate(5deg);
    }
}

#exTop {
    animation: moveTopExSection linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

@keyframes moveTopExSection {
    from {
        scale: 0.5;
        opacity: 0;
        transform: translateY(50%);
    }
    to {
        scale: 1;
        opacity: 1;
        transform: translateY(0%);
    }
}

/* svg topics */
#studentTopic svg path,
#internTopic svg path {
    fill: transparent;
    stroke: #ffffff;
    stroke-width: 3px;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;

    animation: strokeTextAnimation linear forwards;
    animation-timeline: view(90% 10%);
}

#studentTopic svg,
#internTopic svg {
    width: 75%;
    height: auto;

    animation: scale linear forwards;
    animation-timeline: view(90% 10%);
}

@keyframes strokeTextAnimation {
    0% {
        stroke-dashoffset: 800;
    }
    90% {
        fill: transparent;
    }
    100% {
        fill: #ffffff;
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile */
@media all and (max-width: 640px) {
    #experienceSection {
        padding: 30px 0;
    }

    #exHead {
        font-size: 80px;
    }

    /* Experience Bottom Section */
    #exGrid {
        padding: 0 30px;
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }

    /* Student */
    #studentTopic {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    #studentDetail {
        grid-column: 1/2;
        grid-row: 2/3;
        gap: 8px;
    }

    #stuImage {
        width: 250px;
        height: 245px;
    }

    #stuBox, #inBox {
        width: 250px;
        border: 2px solid #ffffff;
        padding: 0 10px;
        gap: 1rem;
    }

    #stuTopic, #inTopic {
        font-size: 15px;
    }

    #stuLine, #inLine {
        height: 80px;
        width: 10px;
    }

    #stuPara, #inPara {
        font-size: 10px;
    }

    /* Intern */
    #internDetail {
        grid-column: 1/2;
        grid-row: 4/5;
        gap: 8px;
    }

    #inImage {
        width: 250px;
        height: 245px;
    }

    #internTopic {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    #studentTopic svg,
    #internTopic svg {
        width: 70%;
        height: auto;
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #experienceSection {
        padding: 40px 0;
    }

    #exHead {
        font-size: 170px;
    }

    /* Experience Bottom Section */
    #exGrid {
        padding: 0 40px;
        grid-template-columns: 1fr;
        row-gap: 5rem;
    }

    /* Student */
    #studentTopic {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    #studentDetail {
        grid-column: 1/2;
        grid-row: 2/3;
        gap: 10px;
    }

    #stuImage {
        width: 300px;
        height: 295px;
    }

    #stuBox, #inBox {
        width: 300px;
        border: 2px solid #ffffff;
        padding: 0 10px;
        gap: 1rem;
    }

    #stuTopic, #inTopic {
        font-size: 18px;
    }

    #stuLine, #inLine {
        height: 100px;
        width: 10px;
    }

    #stuPara, #inPara {
        font-size: 12px;
    }

    /* Intern */
    #internDetail {
        grid-column: 1/2;
        grid-row: 4/5;
        gap: 10px;
    }

    #inImage {
        width: 300px;
        height: 295px;
    }

    #internTopic {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    #studentTopic svg,
    #internTopic svg {
        width: 80%;
        height: auto;
    }
}

/*======================================================================================================================================*/


/* Education Section */
#educationSection {
    width: 100%;
    height: auto;
    padding: 60px 0 0 0;
    background: #111111;

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

#educationHead {
    width: fit-content;
    height: fit-content;
}

#educationHead > div {
    margin: 0;
    font-family: "Luckiest Guy", cursive;
    font-size: 280px;
    color: var(--theme-color-blue);

    position: relative;
}

#educationHead span {
    width: fit-content;
    height: fit-content;
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    color: #000000;
    -webkit-text-stroke: 3px #ffffff;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;

    transform: rotate(-9deg);
}

#eduImgContainer {
    width: 80%;
    height: auto;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto;
    column-gap: 1rem;
    padding: 1rem;

    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100px);

    border-radius: 1rem;
}

#highEduContainer {
    grid-column: 1/2;
    grid-row: 1/2;

    display: flex;
    flex-direction: row;
    gap: 1rem;
}

#lowEduContainer {
    grid-column: 2/3;
    grid-row: 1/2;

    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 460px;
}

.highEduCardWrapper {
    width: 50%;
    height: 100%;
    flex-grow: 1;

}

.lowEduCardWrapper {
    width: 100%;
    flex-grow: 1;
}

#degreeImg {
    background: url("assets/images/Cinec Campus.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#hndImg {
    background: url("assets/images/IJSE.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#alImg {
    background: url("assets/images/St. Joseph Vaz college.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#olImg {
    background: url("assets/images/Sindathriya School.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Card Flip Animation */
#highEduContainer, #lowEduContainer {
    perspective: 3000px;
}

.card {
    transform-style: preserve-3d;
    transition: transform 1.5s ease-in-out;
}

.card:hover, .card:active {
    transform: rotateY(180deg);
}

.eduFront, .eduBack {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;

    border-radius: 1rem;
    border: 6px solid var(--theme-color-blue);
}

.eduBack {
    transform: rotateY(180deg);

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 2rem;
}

.eduBack > div:first-child {
    font-family: 'Anton', sans-serif;
    font-size: xxx-large;
    color: var(--theme-color-blue);

    border-bottom: 2px solid #000000;
    padding: 1rem 0;
}

.eduBack > div:nth-child(2) {
    font-family: "Carter One", system-ui;
    font-size: x-large;
    color: #000000;
}

.eduBack > div:nth-child(3) {
    font-family: "Fjalla One", sans-serif;
    font-size: large;
    color: #000000;
}

.eduBack > div:nth-child(4) {
    font-family: "Fjalla One", sans-serif;
    font-size: small;
    color: #000000;
}

#educationHead span {
    animation: moveTopEdu linear both;
    animation-timeline: view(40% 0%);
}

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

    to {
        transform: rotate(355deg);
    }
}

/* Mobile */
@media all and (max-width: 640px) {
    #educationSection {
        padding: 60px 0 0 0;
    }

    #educationHead > div {
        font-size: 65px;
    }

    #educationHead span {
        font-size: 20px;
        -webkit-text-stroke: 1px #ffffff;
    }

    #eduImgContainer {
        grid-template-columns: auto;
        grid-template-rows: repeat(2, auto);
        column-gap: 0.5rem;
        row-gap: 0.5rem;
        padding: 0.3rem;
        transform: translateY(-20px);
    }

    #highEduContainer {
        grid-column: 1/2;
        grid-row: 1/2;

        gap: 0.5rem;
    }

    #lowEduContainer {
        grid-column: 1/2;
        grid-row: 2/3;

        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        height: 230px;
    }

    .highEduCardWrapper {
        width: 50%;
        height: 230px;
        flex-grow: 1;
    }

    .lowEduCardWrapper {
        width: 100%;
        flex-grow: 1;
    }

    .eduBack {
        gap: 0.5rem;
        padding: 1rem;
    }

    .eduBack > div:first-child {
        font-size: large;
        padding: 0.3rem 0;
    }

    .eduBack > div:nth-child(2) {
        font-size: small;
    }

    .eduBack > div:nth-child(3) {
        font-size: x-small;
    }

    .eduBack > div:nth-child(4) {
        font-size: xx-small;
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #educationSection {
        padding: 60px 0 0 0;
    }

    #educationHead > div {
        font-size: 130px;
    }

    #educationHead span {
        font-size: 40px;
        -webkit-text-stroke: 2px #ffffff;
    }

    #eduImgContainer {
        grid-template-columns: auto;
        grid-template-rows: repeat(2, auto);

        column-gap: 1rem;
        row-gap: 1rem;
        padding: 1rem;
        transform: translateY(-40px);
    }

    #highEduContainer {
        grid-column: 1/2;
        grid-row: 1/2;

        gap: 1rem;
    }

    #lowEduContainer {
        grid-column: 1/2;
        grid-row: 2/3;

        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: 300px;
    }

    .highEduCardWrapper {
        width: 50%;
        height: 300px;
        flex-grow: 1;
    }

    .lowEduCardWrapper {
        width: 100%;
        flex-grow: 1;
    }

    .eduBack {
        gap: 0.5rem;
        padding: 0.7rem;
    }

    .eduBack > div:first-child {
        font-size: xx-large;
        padding: 0.3rem 0;
    }

    .eduBack > div:nth-child(2) {
        font-size: medium;
    }

    .eduBack > div:nth-child(3) {
        font-size: small;
    }

    .eduBack > div:nth-child(4) {
        font-size: x-small;
    }
}


/*======================================================================================================================================*/


/* Skills Section */
#skillsSection {
    width: 100%;
    height: auto;
    min-height: 50vh;
    padding: 60px 60px;
    margin: 0 auto;
    background: #111111;

    display: grid;
    grid-template-columns: 35rem auto;
    grid-template-rows: auto auto auto;

    overflow: hidden;
}

/* Header */
.skillHeadDes {
    grid-column: 1/2;
    grid-row: 1/2;
}

.skillHeadContainer {
    width: 100%;
    height: 7.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.skillHead {
    margin: 0;
    font-family: "Luckiest Guy", cursive;
    color: var(--theme-color-orange);
    text-align: center;
    font-weight: lighter;
    font-size: 7rem;
    user-select: none;
    position: absolute;

    transform: translateY(100%);
}

.defaultHead {
    transform: translateY(0);
}

/* Description */
.skillDesContainer {
    width: 100%;
    height: 10rem;
    padding: 1rem 1rem 1rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.skillDes {
    margin: 0;
    width: 30rem;
    height: 10rem;
    font-family: "Changa One", sans-serif;
    color: #ffffff;
    text-align: left;
    font-weight: lighter;
    font-size: 1.3rem;
    line-height: 1;
    user-select: none;
    position: absolute;

    transform: translateY(100%);
}

.defaultDes {
    transform: translateY(0);
}

/* Images */
.skillImagesContainer {
    grid-column: 2/3;
    grid-row: 1/2;
    place-self: center;

    width: 750px;
    height: 250px;;
    overflow-x: auto;
    display: flex;
    gap: 1rem;
}

.skillImagesContainer::-webkit-scrollbar {
    display: none;
}

.skillImage {
    flex: 0 0 180px;
    background: #ffffff;
    width: 150px;
    height: 220px;
    padding: 2rem 1rem;
    border-radius: 1rem;
    border: 6px solid var(--theme-color-orange);

    display: flex;
    justify-content: center;
    align-items: center;

    transform: scale(0.8);
    filter: grayscale(100%);
}

.defaultImg {
    transform: scale(1);
    filter: grayscale(0%);
}

/* Buttons */
#skillArrowsBtn {
    grid-column: 1/3;
    grid-row: 2/3;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#skillArrowsBtn button {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 100%;
}

.fa-arrow-left-long, .fa-arrow-right-long {
    font-size: 35px;
    color: #000000;
}

#skillArrowsBtn button:hover .fa-arrow-left-long,
#skillArrowsBtn button:hover .fa-arrow-right-long {
    font-size: 35px;
    color: var(--theme-color-orange);
}

#skillArrowsBtn button:active .fa-arrow-left-long,
#skillArrowsBtn button:active .fa-arrow-right-long {
    font-size: 35px;
    color: var(--theme-color-orange);
}

.fa-arrow-left-long, .fa-arrow-right-long {
    font-size: 25px;
    transition: all 150ms ease-in-out;
}

/* Main Skill Head */
#SkillHeaderText {
    margin: 0;
    grid-column: 1/3;
    grid-row: 3/4;

    place-self: center;
    font-family: 'Thunder Black', sans-serif;
    font-weight: lighter;
    font-size: 325px;
    color: var(--theme-color-orange);
    -webkit-text-stroke: 6px #ffffff;
    letter-spacing: 0.5rem;
}

/* Mobile */
@media all and (max-width: 640px) {
    #skillsSection {
        padding: 60px 20px 0 20px;
        grid-template-columns: auto;
        grid-template-rows: repeat(5, auto);
        gap: 0.5rem;
    }

    .skillHeadDes {
        grid-column: 1/2;
        grid-row: 1/2;
        width: 100%;
        place-self: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .skillHeadContainer {
        height: 2.2rem;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .skillHead {
        font-size: 2.2rem;
    }

    .skillDesContainer {
        width: 100%;
        padding: 0;
        height: 5rem;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .skillDes {
        width: 80%;
        height: 5rem;
        text-align: center;
        font-size: 0.8rem;

    }

    .skillImagesContainer {
        grid-column: 1/2;
        grid-row: 2/3;
        place-self: center;
        width: 100%;
        height: 100px;
        gap: 0.5rem;
    }

    .skillImage {
        flex: 0 0 80px;
        background: #ffffff;
        width: 80px;
        height: 100px;
        padding: 1rem 0.5rem;
        border: 2px solid var(--theme-color-orange);
    }

    #skillArrowsBtn {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    #skillArrowsBtn button {
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;

        width: 30px;
        height: 30px;
    }

    .fa-arrow-left-long, .fa-arrow-right-long {
        font-size: 10px;
    }

    #skillArrowsBtn button:hover .fa-arrow-left-long,
    #skillArrowsBtn button:hover .fa-arrow-right-long {
        font-size: 10px;
    }

    #skillArrowsBtn button:active .fa-arrow-left-long,
    #skillArrowsBtn button:active .fa-arrow-right-long {
        font-size: 10px;
        color: var(--theme-color-orange);
    }

    .fa-arrow-left-long, .fa-arrow-right-long {
        font-size: 8px;
    }

    #SkillHeaderText {
        grid-column: 1/2;
        grid-row: 4/5;
        font-size: 150px;
        -webkit-text-stroke: 2px #ffffff;
        letter-spacing: 0.3rem;
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #skillsSection {
        padding: 60px 20px 0 20px;
        grid-template-columns: auto;
        grid-template-rows: repeat(5, auto);
        gap: 0.5rem;
    }

    .skillHeadDes {
        grid-column: 1/2;
        grid-row: 1/2;
        width: 100%;
        place-self: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .skillHeadContainer {
        height: 6rem;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .skillHead {
        font-size: 6rem;
    }

    .skillDesContainer {
        width: 100%;
        padding: 0;
        height: 6rem;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .skillDes {
        width: 80%;
        height: 6rem;
        text-align: center;
        font-size: 1rem;

    }

    .skillImagesContainer {
        grid-column: 1/2;
        grid-row: 2/3;
        place-self: center;
        width: 100%;
        height: 140px;
        gap: 0.5rem;
    }

    .skillImage {
        flex: 0 0 80px;
        background: #ffffff;
        width: 120px;
        height: 140px;
        padding: 1rem 0.5rem;
        border: 2px solid var(--theme-color-orange);
    }

    #skillArrowsBtn {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    #skillArrowsBtn button {
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;

        width: 45px;
        height: 45px;
    }

    .fa-arrow-left-long, .fa-arrow-right-long {
        font-size: 15px;
    }

    #skillArrowsBtn button:hover .fa-arrow-left-long,
    #skillArrowsBtn button:hover .fa-arrow-right-long {
        font-size: 15px;
    }

    #skillArrowsBtn button:active .fa-arrow-left-long,
    #skillArrowsBtn button:active .fa-arrow-right-long {
        font-size: 15px;
        color: var(--theme-color-orange);
    }

    .fa-arrow-left-long, .fa-arrow-right-long {
        font-size: 10px;
    }

    #SkillHeaderText {
        grid-column: 1/2;
        grid-row: 4/5;
        font-size: 250px;
        -webkit-text-stroke: 3px #ffffff;
        letter-spacing: 0.3rem;
    }
}


/*======================================================================================================================================*/


/* Tools Section */
#toolsSection {
    width: 100%;
    height: auto;
    color: #ffffff;
    padding: 30px 0 0 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: #111111;

    overflow: hidden;
}

/* Tool Images */
.toolImagesContainer {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.toolImagesContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: grayscale(100%) brightness(75%);
    transition: filter ease 0.5s;
}

.toolImagesContainer img:hover {
    filter: grayscale(0%) brightness(100%) saturate(100%);
}

.toolImg {
    width: 80px;
    height: 80px;
    padding: 5px;
    will-change: width, height;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;

    position: relative;
}

/* Tool Names */
.toolNamesContainer {
    width: 100%;
    height: 15rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.toolName h1 {
    margin: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    font-family: "Thunder Black", sans-serif;
    font-weight: lighter;
    font-size: 20rem;
    line-height: 1;
    color: var(--theme-color-orange);
    user-select: none;
    transform: translateY(100%);
}

.toolName.default h1 {
    color: #ffffff;
    transform: translateY(-100%);
}

.toolName h1 .letter {
    position: relative;
    transform: translateY(0%);
    will-change: transform;
}

#toolsSection > p {
    margin: 0;
    width: 80%;
    height: auto;
    text-align: center;
    font-family: "Changa One", sans-serif;
    font-size: large;
    font-weight: lighter;
}

/* Mobile */
@media all and (max-width: 640px) {
    #toolsSection {
        padding: 100px 0 0 0;
        gap: 1.5rem;
    }

    #toolsSection > p {
        font-size: x-small;
        font-weight: lighter;
    }

    .toolImagesContainer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
        gap: 1rem;
    }

    .toolImg {
        width: 50px;
        height: 50px;
        padding: 3px;
    }

    /* Tool Names */
    .toolNamesContainer {
        height: 4rem;
    }

    .toolName h1 {
        font-size: 4rem;
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #toolsSection {
        padding: 100px 0 0 0;
        gap: 1.5rem;
    }

    #toolsSection > p {
        font-size: small;
        font-weight: lighter;
    }

    .toolImagesContainer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
        gap: 1.5rem;
    }

    .toolImg {
        width: 70px;
        height: 70px;
        padding: 3px;
    }

    /* Tool Names */
    .toolNamesContainer {
        height: 9rem;
    }

    .toolName h1 {
        font-size: 9rem;
    }
}


/*======================================================================================================================================*/


/* Projects Section */
#projectsSection {
    width: 100%;
    height: auto;
    min-height: 100vh;
    color: #ffffff;
    padding: 60px 0;

    perspective: 1500px;
    view-timeline-name: --cards;
    view-timeline-axis: block;

    background: #111111;
}

/* Projects Head */
#headProjects {
    width: 100%;
    min-height: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;

    transform-style: preserve-3d;
    animation: projects3dAnimation 1s linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 50%;
}

#headProjects > h1 {
    margin: 0;
    font-family: 'Thunder Black', sans-serif;
    font-size: 400px;
    font-weight: lighter;
    color: var(--theme-color-blue);
    transform: translateX(2vw);
}

#headProjects > h2 {
    margin: 0;
    font-family: 'Thunder Black', sans-serif;
    font-size: 200px;
    font-weight: lighter;
}

/* Cards */
.proCard {
    position: sticky;
    top: 60px;

    margin: 0 auto 100px auto;
    overflow: hidden;
    background: #000000;
    width: min(1000px, 80%);
    height: 500px;
    padding: 30px 30px;
    border: 3px solid #ffffff;
    border-radius: 2em;

    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    column-gap: 1rem;

    transform-style: preserve-3d;
    animation: projects3dAnimation 1s linear both;
    animation-timeline: --cards;
    animation-range: entry 0% exit 50%;
}

#proCard1 {
    top: 100px;
}

#proCard2 {
    top: 140px;
}

#proCard3 {
    top: 180px;
}

#proCard4 {
    top: 220px;
}

@keyframes projects3dAnimation {
    0% {
        transform: translateY(0) translateZ(0) rotateX(0) scale(1);
    }

    35% {
        transform: translateY(60px) translateZ(-200px) rotateX(8deg) scale(.92);
    }

    70% {
        transform: translateY(20px) translateZ(-120px) rotateX(2deg) scale(.95);
    }

    100% {
        transform: translateY(0) translateZ(0) rotateX(0) scale(1);
    }
}

.proHead {
    grid-column: 1/2;
    grid-row: 1/2;

    display: flex;
    justify-content: start;
    align-content: start;
    flex-direction: row;
    gap: 2rem;

    font-family: 'Oswald', sans-serif;
    font-weight: bolder;
}

.proNumber {
    margin: 0;
    font-size: 80px;
    align-self: start;
}

.proTopic {
    margin: 0;
    font-size: 30px;
    align-self: center;
}

.proButton {
    grid-column: 2/3;
    grid-row: 1/2;
    place-self: end;
    align-self: center;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;

    background: #ffffff;
    min-width: 200px;
    min-height: 50px;
    border-radius: 2em;

    font-family: 'Anton', sans-serif;
    font-size: 25px;
    text-decoration: none;
    color: #111111;

    transition-duration: 200ms;
}

.proButton:hover {
    scale: 0.9;
    color: var(--theme-color-orange);
}

.proImage {
    grid-column: 1/2;
    grid-row: 2/3;
    place-self: center;

    width: 500px;
    height: 330px;
    border: 2px solid #ffffff;
    border-radius: 2em;
}

#proImage1 {
    background: url("assets/images/Stock Mngmt Project.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#proImage2 {
    background: url("assets/images/Connect 4 Game Project.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#proImage3 {
    background: url("assets/images/Portfolio Project.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#proImage4 {
    background: url("assets/images/Paintshop Mngmt Project.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.proDesc {
    grid-column: 2/3;
    grid-row: 2/3;
    place-self: center;

    margin: 0;
    padding: 0;
    text-align: left;

    font-family: "Carter One", system-ui;
    font-size: 20px;
    font-weight: lighter;
}

/* Mobile */
@media all and (max-width: 640px) {
    #projectsSection {
        padding: 20px 0;
    }

    #headProjects {
        padding: 20px 0;
    }

    #headProjects > h1 {
        font-size: 160px;
        transform: translateX(0);
        font-weight: lighter;
    }

    #headProjects > h2 {
        font-size: 70px;
        font-weight: lighter;
    }

    .proCard {
        top: 30px;
        margin: 0 auto 50px auto;

        height: 500px;
        padding: 15px 15px;
        border: 2px solid #ffffff;

        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-template-rows: repeat(4, auto);
    }

    #proCard1 {
        top: 80px;
    }

    #proCard2 {
        top: 120px;
    }

    #proCard3 {
        top: 160px;
    }

    #proCard4 {
        top: 200px;
    }

    .proHead {
        grid-column: 1/2;
        grid-row: 1/2;
        display: flex;
        flex-direction: row;
    }

    .proNumber {
        font-size: 40px;
        align-self: center;
    }

    .proTopic {
        font-size: 15px;
        justify-content: space-between;
        text-align: center;

        max-width: 70%;
    }

    .proImage {
        grid-column: 1/2;
        grid-row: 2/3;
        place-self: center;
        width: 230px;
        height: 180px;
    }

    .proDesc {
        grid-column: 1/2;
        grid-row: 3/4;
        place-self: center;
        text-align: center;
        font-size: 13px;

    }

    .proButton {
        grid-column: 1/2;
        grid-row: 4/5;
        place-self: center;

        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;

        background: #ffffff;
        min-width: 250px;
        min-height: 28px;
        border-radius: 2em;

        font-family: 'Anton', sans-serif;
        font-size: 18px;
    }

    .proButton:hover {
        scale: 0.9;
        color: var(--theme-color-orange);
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #projectsSection {
        padding: 30px 0;
    }

    #headProjects {
        padding: 30px 0;
    }

    #headProjects > h1 {
        font-size: 280px;
        transform: translateX(0);
        font-weight: lighter;
    }

    #headProjects > h2 {
        font-size: 120px;
        font-weight: lighter;
    }

    .proCard {
        top: 45px;
        margin: 0 auto 50px auto;

        height: 500px;
        padding: 20px 30px;
        border: 2px solid #ffffff;

        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-template-rows: repeat(4, auto);
    }

    #proCard1 {
        top: 90px;
    }

    #proCard2 {
        top: 140px;
    }

    #proCard3 {
        top: 190px;
    }

    #proCard4 {
        top: 240px;
    }

    .proHead {
        grid-column: 1/2;
        grid-row: 1/2;
        display: flex;
        flex-direction: row;
    }

    .proNumber {
        font-size: 60px;
        align-self: center;
    }

    .proTopic {
        font-size: 27px;
        justify-content: space-between;
        text-align: center;

        max-width: 70%;
    }

    .proImage {
        grid-column: 1/2;
        grid-row: 2/3;
        place-self: center;
        width: 500px;
        height: 220px;
    }

    .proDesc {
        grid-column: 1/2;
        grid-row: 3/4;
        place-self: center;
        text-align: center;
        font-size: 15px;
    }

    .proButton {
        grid-column: 1/2;
        grid-row: 4/5;
        place-self: center;

        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;

        background: #ffffff;
        min-width: 500px;
        min-height: 40px;
        border-radius: 2em;

        font-family: 'Anton', sans-serif;
        font-size: 23px;
    }

    .proButton:hover {
        scale: 0.9;
        color: var(--theme-color-orange);
    }
}


/*======================================================================================================================================*/


/* Assignment Nav Section */
#assignmentsNav {
    width: 100%;
    height: auto;
    padding: 0 0 60px 0;
    margin: 0;
    background: #111111;

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

#assignmentBtnContainer {
    width: 400px;
    height: 50px;

    background: rgb(0, 0, 0);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.65);
    border-radius: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all .2s ease;
}

#assignmentBtnContainer > a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-family: "Fjalla One", sans-serif;
    letter-spacing: 1px;
}

#assignmentBtnContainer:hover {
    transform: scale(0.9);
}

#assignmentBtnContainer:hover > a {
    color: var(--theme-color-orange);
}

/* Mobile */
@media all and (max-width: 640px) {
    #assignmentBtnContainer {
        width: 250px;
        height: 40px;
    }

    #assignmentBtnContainer > a {
        text-decoration: none;
        color: #ffffff;
        font-size: 0.8rem;
        font-family: "Fjalla One", sans-serif;
        letter-spacing: 1px;
    }
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

/* assignment.html */
#assignmentsSection {
    cursor: default;

    width: 100%;
    height: auto;
    min-height: 50vh;
    margin: 0 auto;
    padding: 0 60px 120px 60px;

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

#assignmentContainer {
    width: 100%;
    height: auto;
    min-height: 20vh;
    margin: 0 auto;
    padding: 0;

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

.assignTopic {
    margin: 2rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Thunder Black", sans-serif;
    font-weight: lighter;
    font-size: 10rem;
    color: var(--theme-color-orange);
}

.assignments {
    width: 100%;
    height: auto;
    min-height: 20vh;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.assign {
    width: 100%;
    height: auto;
    padding: 1rem;
    background: #111111;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    border: 3px solid #ffffff;
    border-radius: 2rem;
    overflow: hidden;
}

.assign > div {
    width: 100%;
    height: 210px;

    border: 6px solid var(--theme-color-blue);
    border-radius: 2rem;
}

.assign > video {
    width: 100%;

    border: 6px solid var(--theme-color-blue);
    border-radius: 2rem;
}

#assign1 > div {
    background: url("assets/images/assignments/css_01/case01.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#assign2 > div {
    background: url("assets/images/assignments/css_01/case02.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#assign5 > div {
    background: url("assets/images/assignments/css_01/case05.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#assign6 > div {
    background: url("assets/images/assignments/css_01/case06.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.assign > h1 {
    margin: 0;
    font-family: "Fjalla One", sans-serif;
    font-size: 4.5rem;
    color: var(--theme-color-blue);

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

.assign > a {
    margin: 0;
    width: 100%;
    height: 50px;
    background: #ffffff;
    border-radius: 2rem;

    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    color: #000000;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 300ms ease;
}

.assign > a:hover {
    transform: scale(0.9);
    color: var(--theme-color-blue);
}

/* Mobile */
@media all and (max-width: 640px) {
    #assignmentsSection {
        padding: 0 30px 30px 30px;
        gap: 5rem;
    }

    .assignTopic {
        margin: 1rem 0 0 0;
        font-size: 3.5rem;
    }

    .assignments {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .assign {
        width: 100%;
        gap: 1.5rem;
        border: 2px solid #ffffff;
    }

    .assign > div {
        height: 142px;
        border: 4px solid var(--theme-color-blue);
    }

    .assign > video {
        border: 4px solid var(--theme-color-blue);
    }

    .assign > h1 {
        font-size: 3rem;
    }

    .assign > a {
        height: 30px;
        font-size: 1rem;
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #assignmentsSection {
        padding: 0 30px 80px 30px;
        gap: 8rem;
    }

    .assignTopic {
        margin: 1rem 0 0 0;
        font-size: 7rem;
    }

    .assignments {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .assign {
        width: 100%;
        gap: 1.5rem;
        border: 4px solid #ffffff;
    }

    .assign > div {
        height: 142px;
        border: 6px solid var(--theme-color-blue);
    }

    .assign > video {
        border: 6px solid var(--theme-color-blue);
    }

    .assign > h1 {
        font-size: 3.5rem;
    }

    .assign > a {
        height: 40px;
        font-size: 1.2rem;
    }
}


/*======================================================================================================================================*/


/* Blog Section */
#blogSection {
    width: 100%;
    height: auto;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000000;
    padding: 100px 0 0 0;

    overflow: hidden;
}

#headBlog {
    margin: 0;
    font-size: 380px;
    display: flex;
    font-family: "Luckiest Guy", cursive;
    color: var(--theme-color-blue);
}

#headBlog span {
    animation: bounceEffect 0.8s ease infinite alternate;
}

#headBlog > span:nth-child(1) {
    animation-delay: 0.1s;
}

#headBlog > span:nth-child(2) {
    animation-delay: 0.2s;
}

#headBlog > span:nth-child(3) {
    animation-delay: 0.3s;
}

#headBlog > span:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes bounceEffect {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-20px);
    }
}

#blogContainer {
    width: 100%;
    margin: 0 auto;

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

    gap: 1rem;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-140px) rotate(-3deg);
}

#imageContainer1, #imageContainer2 {
    width: 100%;
    margin: 0 auto;

    display: flex;
    overflow-x: auto;
}

#imageContainer1::-webkit-scrollbar, #imageContainer2::-webkit-scrollbar {
    display: none;
}

.group1 {
    flex: 0 0 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 10px 1rem 10px 0;

    animation: imgSpin 50s infinite linear;
}

.group2 {
    flex: 0 0 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 10px 1rem 10px 0;

    animation: imgSpin 60s infinite linear reverse;
}

.image {
    width: 350px;
    aspect-ratio: 16/9;
    border-radius: 1rem;

    filter: grayscale(100%) brightness(50%);
    transition: all 500ms;
}

.image:hover {
    filter: grayscale(0) brightness(100%);
    scale: 1.05;
}

.img1 {
    background: url("assets/images/image9-1.JPG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img2 {
    background: url("assets/images/image5-1.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img3 {
    background: url("assets/images/image2-1.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img4 {
    background: url("assets/images/image14-1.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img5 {
    background: url("assets/images/image4-1.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img6 {
    background: url("assets/images/image1-1.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img7 {
    background: url("assets/images/image12-1.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img8 {
    background: url("assets/images/image16-1.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*------------------------------------------*/

.img9 {
    background: url("assets/images/image13-2.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img10 {
    background: url("assets/images/image11-2.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img11 {
    background: url("assets/images/image7-2.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img12 {
    background: url("assets/images/image15-2.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img13 {
    background: url("assets/images/image3-2.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img14 {
    background: url("assets/images/image17-2.JPG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img15 {
    background: url("assets/images/image8-2.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img16 {
    background: url("assets/images/image6-2.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@keyframes imgSpin {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Mobile */
@media all and (max-width: 640px) {
    #blogSection {
        padding: 20px 0 60px 0;
    }

    #headBlog {
        font-size: 130px;
    }

    #blogContainer {
        transform: translateY(0) rotate(-3deg);
    }

    .image {
        width: 180px;
        aspect-ratio: 16/9;
    }

    .image:active {
        filter: grayscale(0%);
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #blogSection {
        padding: 60px 0 60px 0;
    }

    #headBlog {
        font-size: 250px;
    }

    #blogContainer {
        transform: translateY(0) rotate(-3deg);
    }

    .image {
        width: 250px;
        aspect-ratio: 16/9;
    }

    .image:active {
        filter: grayscale(0%);
    }
}


/*======================================================================================================================================*/


/* Contact Section */
#contactSection {
    width: 100%;
    height: auto;
    min-height: 100vh;

    background-color: var(--theme-color-orange);

    clip-path: polygon(
            0% 5%, 5% 2%, 10% 6%, 15% 3%, 20% 7%, 28% 1%,
            35% 8%, 43% 4%, 50% 10%, 58% 2%, 65% 7%, 72% 1%,
            83% 8%, 88% 5%, 95% 10%, 100% 4%, 100% 94%, 95% 98%,
            90% 95%, 82% 99%, 75% 94%, 68% 97%, 60% 92%, 52% 99%,
            45% 95%, 38% 100%, 30% 94%, 21% 98%, 16% 93%, 7% 96%, 3% 94%, -1% 92%
    );

    overflow: hidden;
    z-index: 1;
}

#contactGrid {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
    row-gap: 10rem;
}

/* Top Left Section */
#topLeft {
    grid-column: 1/2;
    grid-row: 1/2;

    display: flex;
    flex-direction: column;
    gap: 3rem;
    transform: translateY(12vw);
}

#headText {
    width: 400px;
    min-height: 60px;

    border: 3px solid #ffffff;
    font-family: "Luckiest Guy", cursive;
    font-size: 100px;
    color: #ffffff;
    background: #000000;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    transform: translateY(-3vw);
}

#head {
    margin: 0;
    width: 518px;
    font-family: "Changa One", sans-serif;
    font-size: 50px;
    color: #ffffff;
}

#content {
    margin: 0;
    font-family: "Caveat Brush", cursive;
    font-size: 25px;
    color: #ffffff;
}

/* Top Right Section */
#topRight {
    grid-column: 2/3;
    grid-row: 1/2;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contactMyImage {
    width: 255px;
    place-self: center;
    transform: translateY(5vw);
}

#headerTxt {
    margin: 0;
    width: fit-content;
    padding: 10px 20px;
    background: #000000;
    color: #ffffff;
    font-family: "Luckiest Guy", cursive;
    font-size: 66px;
    letter-spacing: 2px;

    display: flex;
    justify-content: center;
    align-items: center;

    rotate: -5deg;
    place-self: center;
}

#topRight a {
    text-decoration: none;
    font-size: 60px;
}

#socialLinks {
    display: flex;
    place-self: center;

    rotate: -5deg;

    animation: socialLinksGapAnimate linear both;
    animation-timeline: view(60% 0%);
}

@keyframes socialLinksGapAnimate {
    from {
        gap: 0;
        transform: scale(0.5);
        filter: brightness(50%);
    }
    to {
        gap: 4rem;
        transform: scale(1);
        filter: brightness(100%);
    }
}

/* Bottom Left Section */
#bottomLeft {
    grid-column: 1/2;
    grid-row: 2/3;

    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contactDetail {
    color: #ffffff;
    font-family: "Changa One", sans-serif;
    font-size: 40px;

    display: flex;
    gap: 1rem;
}

#address {
    width: 370px;
}

/* Bottom Right Section */
#bottomRight {
    grid-column: 2/3;
    grid-row: 2/3;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.input {
    width: 100%;
    height: 65px;
    font-family: "Changa One", sans-serif;
    font-size: 25px;
    padding: 0 0 0 20px;
    background: repeating-linear-gradient(
            45deg,
            #f3f3f3,
            #f3f3f3 2px,
            #ededed 2px,
            #ededed 4px
    );
    clip-path: polygon(
            0% 12%, 5% 5%, 10% 12%, 15% 4%, 20% 10%, 25% 5%,
            30% 12%, 35% 6%, 40% 14%, 45% 5%, 50% 13%, 55% 4%,
            60% 12%, 65% 6%, 70% 14%, 75% 5%, 80% 12%, 85% 4%,
            90% 10%, 95% 6%, 100% 12%,
            98% 15%, 99% 28%, 97% 33%, 99% 51%,
            97% 62%, 99% 74%, 98% 85%, 100% 93%,
            95% 95%, 90% 88%, 85% 97%, 80% 90%,
            75% 96%, 70% 88%, 65% 94%, 60% 86%,
            55% 96%, 50% 88%, 45% 94%, 40% 86%,
            35% 97%, 30% 90%, 25% 96%, 20% 88%,
            15% 94%, 10% 89%, 5% 95%,
            0% 95%, 2% 76%, 1% 70%, 2% 59%,
            0% 49%, 2% 36%, 1% 26%, 2% 22%
    );
    place-self: end;
}

#subject, #message {
    padding: 0 0 0 30px;
}

#message {
    padding: 25px 25px 0 30px;
    height: 180px;
    resize: none;
}

button {
    background: #000000;
    width: 120px;
    height: 45px;
    color: #ffffff;
    border-radius: 20px;

    font-family: "Fjalla One", sans-serif;
    font-size: 25px;

    transition: all 0.2s ease;
}

button:hover, button:active {
    scale: 0.9;
    border: 2px solid #ffffff;
}

.buttons {
    width: fit-content;

    display: flex;
    justify-content: space-between;
    gap: 50px;
    place-self: center;
}

/* Mobile */
@media all and (max-width: 640px) {
    #contactSection {
        clip-path: polygon(
                0% 5%, 4% 3%, 9% 5%, 15% 3%, 20% 5%, 28% 2%,
                35% 5%, 43% 3%, 50% 5%, 58% 2%, 65% 4%, 72% 2%,
                80% 4%, 88% 2%, 95% 5%, 100% 4%, 100% 97%, 95% 99%,
                89% 97%, 82% 99%, 71% 97%, 68% 99%, 58% 97%, 51% 99%,
                45% 98%, 38% 99%, 31% 97%, 20% 99%, 14% 97%, 7% 99%, 0% 97%, -1% 92%
        );
    }

    #contactGrid {
        grid-template-columns: 1fr;
        padding: 0 30px;
        row-gap: 5rem;
    }

    /* Top Left Section */
    #topLeft {
        grid-column: 1/2;
        grid-row: 1/2;
        gap: 5rem;

        text-align: center;
        place-self: center;
    }

    #headText {
        width: 100%;
        letter-spacing: 3px;
        min-height: 60px;
        border: 2px solid #ffffff;
        font-size: 50px;
        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0;

        transform: translateY(18vw);
    }

    #head {
        width: 100%;
        font-size: 35px;

        text-align: center;
        transform: translateY(10vw);
    }

    #content {
        font-size: 20px;
    }

    /* Top Right Section */
    #topRight {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    #contactMyImage {
        width: 180px;

        transform: translateY(10vw);
    }

    #headerTxt {
        padding: 10px 20px;

        font-size: 38px;
        letter-spacing: 1px;

        place-self: center;
    }

    #topRight a {
        font-size: 35px;
    }

    #socialLinks {
        gap: 2rem;
    }

    /* Bottom Left Section */
    #bottomLeft {
        grid-column: 1/2;
        grid-row: 3/4;

        place-self: center;
    }

    .contactDetail {
        font-size: 20px;
    }

    #address {
        width: 300px;
    }

    /* Bottom Right Section */
    #bottomRight {
        grid-column: 1/2;
        grid-row: 4/5;
    }

    #contactForm {
        gap: 1rem;
    }

    .input {
        width: 100%;
        height: 40px;

        font-size: 18px;
        padding: 0 0 0 20px;

        clip-path: polygon(
                0% 12%, 5% 5%, 10% 12%, 15% 4%, 20% 10%, 25% 5%,
                30% 12%, 35% 6%, 40% 14%, 45% 5%, 50% 13%, 55% 4%,
                60% 12%, 65% 6%, 70% 14%, 75% 5%, 80% 12%, 85% 4%,
                90% 10%, 95% 6%, 100% 12%,
                98% 15%, 99% 28%, 97% 33%, 99% 51%,
                97% 62%, 99% 74%, 98% 85%, 100% 93%,
                95% 95%, 90% 88%, 85% 97%, 80% 90%,
                75% 96%, 70% 88%, 65% 94%, 60% 86%,
                55% 96%, 50% 88%, 45% 94%, 40% 86%,
                35% 97%, 30% 90%, 25% 96%, 20% 88%,
                15% 94%, 10% 89%, 5% 95%,
                0% 95%, 2% 76%, 1% 70%, 2% 59%,
                0% 49%, 2% 36%, 1% 26%, 2% 22%
        );

        place-self: center;
    }

    #subject, #message {
        padding: 0 0 0 25px;
    }

    #message {
        padding: 25px 25px 0 25px;
        height: 200px;
    }

    button {
        width: 100px;
        height: 40px;
        color: #ffffff;
        font-size: 20px;
    }

    .buttons {
        gap: 100px;
        place-self: center;
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    #contactSection {
        clip-path: polygon(
                0% 5%, 4% 3%, 9% 5%, 15% 3%, 20% 5%, 28% 2%,
                35% 5%, 43% 3%, 50% 5%, 58% 2%, 65% 4%, 72% 2%,
                80% 4%, 88% 2%, 95% 5%, 100% 4%, 100% 97%, 95% 99%,
                89% 97%, 82% 99%, 71% 97%, 68% 99%, 58% 97%, 51% 99%,
                45% 98%, 38% 99%, 31% 97%, 20% 99%, 14% 97%, 7% 99%, 0% 97%, -1% 92%
        );
    }

    #contactGrid {
        grid-template-columns: 1fr;
        padding: 0 40px;
        row-gap: 5rem;
    }

    /* Top Left Section */
    #topLeft {
        grid-column: 1/2;
        grid-row: 1/2;
        gap: 5rem;

        text-align: center;
        place-self: center;
    }

    #headText {
        width: 100%;
        letter-spacing: 3px;
        min-height: 60px;
        border: 2px solid #ffffff;
        font-size: 70px;
        display: flex;
        align-content: center;
        justify-content: center;

        margin: 0;

        transform: translateY(10vw);
    }

    #head {
        width: 100%;
        font-size: 50px;

        text-align: center;
        transform: translateY(6vw);
    }

    #content {
        font-size: 30px;
    }

    /* Top Right Section */
    #topRight {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    #contactMyImage {
        width: 220px;

        transform: translateY(10vw);
    }

    #headerTxt {
        padding: 10px 20px;

        font-size: 60px;
        letter-spacing: 1px;

        place-self: center;
    }

    #topRight a {
        font-size: 45px;
    }

    #socialLinks {
        gap: 4rem;
    }

    /* Bottom Left Section */
    #bottomLeft {
        grid-column: 1/2;
        grid-row: 3/4;

        place-self: center;
    }

    .contactDetail {
        font-size: 35px;
    }

    #address {
        width: 300px;
    }

    /* Bottom Right Section */
    #bottomRight {
        grid-column: 1/2;
        grid-row: 4/5;
    }

    #contactForm {
        gap: 1rem;
    }

    .input {
        width: 100%;
        height: 60px;

        font-size: 22px;
        padding: 0 0 0 20px;

        clip-path: polygon(
                0% 12%, 5% 5%, 10% 12%, 15% 4%, 20% 10%, 25% 5%,
                30% 12%, 35% 6%, 40% 14%, 45% 5%, 50% 13%, 55% 4%,
                60% 12%, 65% 6%, 70% 14%, 75% 5%, 80% 12%, 85% 4%,
                90% 10%, 95% 6%, 100% 12%,
                98% 15%, 99% 28%, 97% 33%, 99% 51%,
                97% 62%, 99% 74%, 98% 85%, 100% 93%,
                95% 95%, 90% 88%, 85% 97%, 80% 90%,
                75% 96%, 70% 88%, 65% 94%, 60% 86%,
                55% 96%, 50% 88%, 45% 94%, 40% 86%,
                35% 97%, 30% 90%, 25% 96%, 20% 88%,
                15% 94%, 10% 89%, 5% 95%,
                0% 95%, 2% 76%, 1% 70%, 2% 59%,
                0% 49%, 2% 36%, 1% 26%, 2% 22%
        );

        place-self: center;
    }

    #subject, #message {
        padding: 0 0 0 25px;
    }

    #message {
        padding: 25px 25px 0 25px;
        height: 200px;
    }

    button {
        width: 150px;
        height: 45px;
        color: #ffffff;
        font-size: 25px;
    }

    .buttons {
        gap: 150px;
        place-self: center;
    }
}


/*======================================================================================================================================*/


/* Footer */
footer {
    width: 100%;
    height: auto;
    color: #ffffff;

    overflow: hidden;
    z-index: 5;
}

#footerContainer {
    width: 100%;
    height: fit-content;
    margin: 0 auto;

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

.footer.nameTxt {
    place-self: center;
    display: block;

    font-size: clamp(120px, 105vw, 520px);
    font-family: "Luckiest Guy", cursive;

    line-height: 1;
    white-space: nowrap;
}


.footer.copyrightTxt {
    place-self: center;

    margin: 0;
    font-size: 20px;
    font-family: "Poppins", sans-serif;

    transform: translateY(-1vw);
}

/* Mobile */
@media all and (max-width: 640px) {
    .footer.nameTxt {
        font-size: 150px;
    }

    .footer.copyrightTxt {
        font-size: 10px;
        transform: translateY(-2vw);
    }
}

/* Tablet */
@media all and (min-width: 640px) and (max-width: 1024px) {
    .footer.nameTxt {
        font-size: 150px;
    }

    .footer.copyrightTxt {
        font-size: 10px;
        transform: translateY(-2vw);
    }
}