* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}

:root {
    --bg: rgb(15, 23, 42);
    --bg-dark: rgb(12, 20, 36);
    --primary: rgb(204, 102, 7);
    --primary-2: rgb(160, 79, 4);
    --primary-hover: rgb(196, 153, 35);
    --primary-light: rgb(255, 198, 146);
    --text-light: rgb(252, 219, 189);
}

body {
    background-color: #000;
}

/* Prevent scrolling when loader exists */
body:has(#loader) {
    overflow: hidden;
}

/* LOADING SCREEN */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

#loader img {
    width: 80vw;
    height: 80vh;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

body.loading {
    overflow: hidden;
}
/* LOADING SCREEN */

a {
    text-decoration: none;
}

.swal2-icon {
    font-family: inherit !important;  /* Hilangkan pengaruh FontAwesome */
}

.swal2-icon.swal2-warning {
    background-color: #f8bb86 !important; /* Ubah warna icon jika diperlukan */
    border-color: #f8bb86 !important;
}

/* backgrond code RGB (15,23,42) */
/* background text rgb(16, 65, 62) */
/* text header code  */

/* HOME DESKTOP */
.home {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    z-index: 1;
    isolation: isolate;
    box-shadow: inset 0 80px 80px rgba(0, 0, 0, 0.8), inset 0 -80px 80px rgba(0, 0, 0, 0.8);
}

/* NAVBAR DESKTOP */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    height: 60px;
    width: 90%;
    max-width: 1200px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 0 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* LOGO ANIMATION */
.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 100%;
    height: 100%;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: logoDraw 2s ease-in-out forwards, logoPulse 2s ease-in-out infinite 2s;
}

.logo-dot {
    animation: logoDotPulse 1.5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes logoDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes logoDotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* NAVIGATION LINKS */
header ul.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

header ul.nav-links li {
    list-style-type: none;
}

.nav-link {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--primary-light);
}

.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    animation: underlineSlide 0.3s ease;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: white;
    border-radius: 50%;
    animation: dotAppear 0.3s ease;
}

@keyframes underlineSlide {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes dotAppear {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* HIRE ME BUTTON */
.hire-me-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: white;
    color: #000 !important;
    border-radius: 25px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.hire-me-btn span {
    color: #000 !important;
}

.hire-me-btn i {
    color: #000 !important;
    font-size: 14px;
}

.hire-me-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    background-color: var(--primary-light);
    color: #000 !important;
}

.hire-me-btn:hover span {
    color: #000 !important;
}

.hire-me-btn:hover i {
    color: #000 !important;
}

.bgm-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
    transition: transform .2s ease;
}
.bgm-toggle:hover { transform: translateY(-2px); }
.bgm-toggle i { margin: 0; }
@media (max-width: 600px) {
    .bgm-toggle { bottom: 14px; right: 14px; width: 38px; height: 38px; border-radius: 19px; }
}

.hamburger-menu {
    display: none;
    color: white;
    cursor: pointer;
}

/* NAVBAR DESKTOP */


/* MAIN HOME */
.section-home {
    position: absolute;
    left: 100px;
    right: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.field-text-home {
    width: 70%;
}

.field-text-home h1 {
    font-size: 70px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: -10px;
    color: white;
}

.field-text-home h1 span {
    color: var(--primary);
}

.field-text-home h1 br {
    display: none;
}


.field-text-home h3 {
    font-size: 40px;
    font-family: 'Roboto', sans-serif;
    color: var(--primary);
}

.field-text-home h3 span {
    color: white;
}

.field-text-home p {
    font-family: 'Roboto', sans-serif;
    max-width: 75%;
}

.field-image-home {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.field-image-home img {
    width: 280px;
    height: 360px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

.field-image-home img:hover {
    transform: translateY(-10px);
}

.home .swipe-up {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    width: 110px;
    height: 40px;
    border-radius: 20px;
    position: absolute;
    bottom: 2%;
    left: 50%;
    right: 50%;
    margin-left: -50px;
    background-color: var(--primary-2);
    color: var(--text-light);
    border: 1px solid var(--primary-light);
    transition: .3s;
    text-align: center;
    line-height: 35px;
}



.home .swipe-up:hover {
    background-color: var(--primary-hover);
    width: 112px;
    height: 41px;
    border: none;
}

.home .arrow-swipeup {
    color: var(--text-light);
    margin-top: 4px;
}

/* HOME */


/* ABOUT DESKTOP */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/bg2.png');
    background-size: contain;
    background-position: top center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    box-shadow: inset 0 80px 80px rgba(0, 0, 0, 0.8), inset 0 -80px 80px rgba(0, 0, 0, 0.8);
    min-height: 100vh;
}
.about::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.container-about {
    width: 70%;
    margin: 0 auto;
    padding: 20px 80px 70px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 102, 7, 0.2);
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.container-about h1 {
    color: var(--primary-light);
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    text-align: center;
    margin-bottom: 40px;
}

.container-about h1 span {
    color: white;
}

.container-about p {
    font-family: 'Roboto', sans-serif;
    text-align: justify;
    font-size: 18px;
    line-height: 24px;
}

.container-about p:nth-child(2) {
    margin-bottom: 30px;
}

/* ABOUT DESKTOP */


/* SKILLS DESKTOP */
.skill {
    padding: 80px 0;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/bg3.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    box-shadow: inset 0 80px 80px rgba(0, 0, 0, 0.8), inset 0 -80px 80px rgba(0, 0, 0, 0.8);
    min-height: 100vh;
}
.skill::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 140px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}
.skill::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.skill h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    text-align: center;
    margin-bottom: 60px;
}

.skill h1 span {
    color: var(--primary-light);

}
@keyframes popOut {
    0% { transform: scale(0.9); }
    60% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.skill-title {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.skill-title.aos-animate {
    animation: popOut 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.container-image-skill {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.field-image-skill {
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 20%;
    border: 1px solid rgba(204, 102, 7, 0.2);
    border-radius: 12px;
    height: 205px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-image-skill span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    line-height: 180px;
    transform: scale(0, 1);
    transform-origin: bottom;
    transition: transform .5s;

}

.field-image-skill:hover span {
    transform: scale(1);

}

.image-skill {
    width: 120px;
}

/* SKILLS DESKTOP */


/* PROJECT DESKTOP */
.project {
    padding: 80px 0;
    position: relative;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/bg4.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    box-shadow: inset 0 80px 80px rgba(0, 0, 0, 0.8), inset 0 -80px 80px rgba(0, 0, 0, 0.8);
    min-height: 100vh;
}
.project::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 140px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}
.project::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.project h1 {
    font-size: 60px;
    text-align: center;
    color: var(--primary-light);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 40px;
}

.project h1 span {
    color: white;
}

.container-project {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.field-project {
    width: 42%;
    border-radius: 12px;
    padding: 12px 40px 12px 12px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 102, 7, 0.2);
    transition: transform .3s ease-in-out;
    display: grid;
    grid-auto-columns: 100%;
    grid-auto-rows: max-content;
    row-gap: 22px;
    grid-template-areas: 
    'main-project' 'technology-project';
    transition: transform .3s;
}

.field-project:hover {
    transform: translateY(-10px);
}

.link-to-project {
    grid-area: main-project;
    display: flex;
    gap: 16px;
}

.field-project img {
    border-radius: 8px;
    width: 30%;
    min-height: 120px;
}

.field-text-project {
    width: 70%;
    margin-top: 3px;
}

.field-text-project h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}

.field-text-project h3 span {
    color: var(--primary-light);
}

.description-project {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 22px;
    text-align: justify;
}

.technology-project {
    display: flex;
    justify-content: end;
    gap: 16px;
    grid-area: technology-project;;
}

.technology-project a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-decoration: none;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary);
    color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 16px;
}

.technology-project a:hover {
    cursor: pointer;
}


/* PROJECT DESKTOP */

/* CERTIFICATE DESKTOP */
.certification {
    padding: 80px 0 40px;
    position: relative;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/bg5.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    box-shadow: inset 0 80px 80px rgba(0, 0, 0, 0.8), inset 0 -80px 80px rgba(0, 0, 0, 0.8);
    min-height: 100vh;
}
.certification::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 140px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}
.certification::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.certification h1 {
    font-size: 60px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: var(--primary-light);
    margin-bottom: 40px;
}

.certification h1 span {
    color: white;
}

.container-certificate {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
}

.field-certificate {
    width: 27%;
    height: 250px;
    position: relative;
}

.field-certificate img:nth-child(1) {
    position: absolute;
    width: 100%;
    height: 250px;
}

.field-certificate .icon-eye {
    width: 100%;
    height: 250px;
    position: absolute;
    background-color: #666;
    text-align: center;
    line-height: 250px;
    opacity: 0;
    transition: opacity .3s;
}

.field-certificate:hover {
    cursor: pointer;
}

.field-certificate:hover i {
    opacity: 0.9;
}

.overlay-image-certificate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    transition: .3s;
    transform: scale(0);
    display: flex;
    justify-content: center;
    align-items: center;
}

.field-overlay-certificate {
    position: relative;
    width: 50%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.field-overlay-certificate img {
    width: 90%;
    height: 400px;
}

.overlay-image-certificate button {
    position: absolute;
    bottom: 40px;
    width: 16%;
    height: 40px;
    background-color: darkred;
    border: none;
    border-radius: 12px;
}

.overlay-image-certificate button:hover {
    cursor: pointer;
}


/* CERTIFICATE DESKTOP */
.contact {
    padding: 80px 0;
    position: relative;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/bg6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    box-shadow: inset 0 80px 80px rgba(0, 0, 0, 0.8);
    min-height: 33vh;
}
.contact::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 140px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.contact h1 {
    font-size: 60px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: var(--primary-light);
    margin-bottom: 40px;
}

.contact h1 span {
    color: white;
}

.container-contact {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
}

.sosmed-and-maps {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.domain-and-contact {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.domain-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.domain-contact a span {
    color: var(--primary-light);
}


i {
    color: var(--primary-light);
}


.domain-and-contact a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

iframe {
    border-radius: 24px;
    margin-bottom: 24px;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--primary-light);
}

.social-link i {
    color: var(--primary-light);
    transition: all 0.3s ease;
    margin: 0;
}

.social-link:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.social-link span {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover span {
    color: var(--primary-light);
}

/* Media query untuk perangkat dengan lebar maksimum 600px */
@media (max-width: 600px) {
    .social-media {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .social-link {
        min-width: 150px;
    }
}










input {
    display: block;
    width: 75%;
    height: 50px;
    padding-left: 16px;
    margin: 0 auto 48px;
    border-radius: 12px;
    border: none;
    outline: none;
    color: black;
}

input:focus {
    border: 3px solid var(--primary-light);
    color: black;
}



textarea {
    display: block;
    width: 75%;
    margin: 0 auto;
    padding-top: 16px;
    padding-left: 16px;
    border-radius: 12px;
    margin-bottom: 48px;
    color: black;
    outline: none;
}

textarea:focus {
    border: 3px solid var(--primary-light);
    color: black;
}



/* TABLET RESPONSIVE */
@media only screen and (max-width: 1024px) and (min-width: 601px) {
    header {
        width: 95%;
        padding: 0 20px;
    }

    header ul.nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
    }

    .hire-me-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* MAX WIDTH 600PX (MOBILE)*/
@media only screen and (max-width: 600px) {

    /* NAVBAR MOBILE */
    header {
        top: 10px;
        width: 95%;
        height: 55px;
        padding: 0 15px;
        border-radius: 25px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    header ul.nav-links {
        position: fixed;
        top: 75px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 20px 0;
        flex-direction: column;
        gap: 0;
        display: flex;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    header ul.nav-links.ul-active {
        opacity: 1;
        visibility: visible;
    }

    header ul.nav-links li {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link.active::after,
    .nav-link.active::before {
        display: none;
    }

    .nav-link.active {
        background-color: rgba(204, 102, 7, 0.2);
        border-left: 3px solid var(--primary);
    }

    .hire-me-btn {
        display: none;
    }

    .hamburger-menu {
        display: inline-block;
        position: relative;
        right: 0;
        color: white;
        z-index: 10000;
    }

    /* NAVBAR MOBILE */


    /* HOME MOBILE */
    .section-home {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        top: 120px;
        left: 0;
        right: 0;
    }

    .field-text-home {
        width: 100%;
    }

    .field-text-home h1 {
        font-size: 42px;
        margin-bottom: 60px;
        text-align: center;
        line-height: 40px;
    }

    .field-text-home h1 span {
        font-size: 36px;
    }

    .field-text-home h1 br {
        display: inline-block;
    }

    .field-text-home h3 {
        font-size: 14px;
        text-align: center;
    }

    .field-image-home {
        width: 100%;

    }

    .field-image-home img {
        width: 270px;
        margin-bottom: 18px;
        margin-left: 0;
    }

    .home .swipe-up {
        bottom: 50px;
    }

    /* HOME MOBILE */


    /* ABOUT MOBILE */
    .about {
        padding: 60px 0 0;
    }

    .container-about {
        background: none;
        border: none;
        width: 87%;
        padding: 20px;
        border-radius: 20px;
    }

    .container-about h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .container-about p {
        font-size: 15px;
        line-height: 18px;
    }

    /* ABOUT MOBILE */


    /* SKILLS MOBILE */
    .skill h1 {
        margin-bottom: 20px;
    }

    .container-image-skill {
        width: 70%;
    }

    .field-image-skill {
        width: 100%;
        height: 175px;
    }

    /* SKILLS MOBILE */


    /* PROJECT MOBILE */
    .container-project {
        width: 100%;
        gap: 24px;
    }

    .field-project {
        width: 90%;
        padding: 12px 16px 24px 16px;
    }

    .field-project img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .link-to-project {
        flex-wrap: wrap;
    }

    .field-text-project {
        width: 100%;
        height: min-content;
        margin-top: 0;
    }

    .field-text-project h3 {
        line-height: 24px;
        margin-bottom: 18px;
    }

    .technology-project {
        position: static;
        flex-wrap: wrap;
        justify-content: end;
        width: 100%;
    }


    /* PROJECT MOBILE */


    /* CERTIFICATE MOBILE */
    .certification h1 {
        font-size: 42px;
    }

    .container-certificate {
        gap: 24px 0;
    }

    .field-certificate {
        width: 100%;
    }

    .field-overlay-certificate {
        width: 80%;
    }

    .overlay-image-certificate img {
        height: 270px;
    }

    .overlay-image-certificate button {
        width: 30%;
    }

    /* CERTIFICATE MOBILE */


    /* CONTACT MOBILE */

    .container-contact {
        width: 85%;
        flex-wrap: wrap;
    }

    .sosmed-and-maps {
        width: 100%;
    }

    .domain-and-contact {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .domain-contact {
        flex-direction: row;
    }

    .domain-contact a {
        margin-right: 24px;
    }

    .domain-contact:nth-child(3) a {
        margin-right: 16px;
    }

    iframe {
        height: 350px;
    }

    input {
        margin-bottom: 32px;
    }

    textarea {
        margin-bottom: 32px;
    }


    /* CONTACT MOBILE */
}
