html{
    width: 100%;
    height: 100%;
}
body{
    height: 100%;
    width: 100%;
    margin: 0;
    background-color:rgb(233, 229, 223);
    overflow-x: hidden !important;
}
section{
    animation: masuk 0.3s ease-in;
    overflow-x: hidden;
    overflow-y: hidden;
}
.add-button{
    background-color: rgb(10, 119, 182);
    color: white;
    font-family: "Poppins", sans-serif;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid white;
}
.top-header{
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(100%);
    height: 7%;
    background-color: rgba(0, 0, 0, 0.8);
    font-family: "Poppins", sans-serif;
    color: white;
    font-size: 1vw;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-between; 
    z-index: 1;   
}
.display-flex{
    display: flex;
}
.display-block{
    display: block;
}
.display-flex-column{
    flex-direction: column;
}
.padding-10{
    padding:10px
}
.align-center{
    align-items: center;
}
.align-start{
    align-items: flex-start;
}
.align-end{
    align-items: flex-end;
}
.justify-start{
    justify-content: flex-start;
}
.justify-end{
    justify-content: flex-end;
}
.justify-center{
    justify-content: center;
}
.justify-space-between{
    justify-content: space-between;
}
.header-menu{
    width: fit-content;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.start-button{
    font-family: "Poppins", sans-serif;
    /* background-color: red; */
    font-size: 14px;
    color: white;
    height: 30px;
    width: fit-content;
    border: 1px solid white;
    border-radius: 5px;
    cursor:pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.transparent-button{
    width: 100px;
    height: 30px;
    background-color: transparent;
    color: white;
    font-family: "Poppins", sans-serif;
    border:none;
    cursor: pointer;
    font-size: 0.7vw;
}
.transparent-button:hover{
    color: gold;
}
.home-view{
    position: relative;
    height: 100%;
    width: 100%;
    background-image: url('assets/background1.webp');
    background-size: cover;
    background-position: center;
}
.home-view2{
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background: white;
    overflow: hidden;
    z-index: 0;
}
.home-view3 {
    position: relative;
    width: 100%;
    height: 100vh;
    background: white;
    overflow: hidden;
    z-index: 0;
}

.home-view3::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(26, 25, 25, 0.2), white);
    clip-path: polygon(0% 0%, 100% 5%, 95% 100%, 10% 90%);
    border: 3px solid rgba(41, 39, 39, 0.5);
    z-index: 0;
}
#section-3{
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
}
.slide-container{
    position: relative;
    width: 60%;
    height: 60%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    overflow-x: hidden;
    z-index: 300;
}
.slider{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;    
    width: 500%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    /* animation: slide-kiri 20s ease infinite; */
}
.image-slide{
    position: relative;
    height: 100%;
    width: 1200px;
    content: '';
    background-position: center;
    background-size: cover;
}
.bulatan-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 60%;
    padding: 10px;
    height: auto;
    align-items: center;
}
.bulatan-slide{
    height: 10px;
    width: 10px;
    background-color: grey;
    border-radius: 50%;
}
.bulatan-slide.active {
    background: black;
    transform: scale(1.2);
}

.image-explain1, .image-explain2, .image-explain3, 
.image-explain4, .image-explain5 {
    position: absolute;
    width: 30%;
    height: 30%;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    z-index: 1; /* Tetap di atas background */
}

.home-view3::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 230, 230, 0.3) 30%, transparent 70%);
    clip-path: polygon(10% 5%, 95% 0%, 100% 95%, 5% 100%);
    border: 2px solid rgba(180, 180, 180, 0.3);
    z-index: 1;
}
.home-view4::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(26, 25, 25, 0.2), white);
    clip-path: polygon(0% 0%, 100% 5%, 95% 100%, 10% 90%);
    border: 3px solid rgba(41, 39, 39, 0.5);
    z-index: 1;
}

.home-view4::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 230, 230, 0.3) 30%, transparent 70%);
    clip-path: polygon(10% 5%, 95% 0%, 100% 95%, 5% 100%);
    border: 2px solid rgba(180, 180, 180, 0.3);
    z-index: 2;
}
.darker{
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    color: white;
    text-align: center;
    font-size: 1vw;
    gap: 20px;
}
.poto-profile{
    height: auto;
    width: 12%;
    border-radius: 50%;
    border: 10px solid rgba(255,255,255,0.7);
    background-image: url("assets/profile.png");
    background-position: top;
    background-size: cover;
}
.my-name{
    font-family: "Poppins";
    color: white;
    font-size: 2vw !important;
    font-weight: bold;
}
.burger-menu{
    display: none;
}
.about-me1{
    width: 50%;
    height: fit-content;
    text-align: left;
    display: flex;
    padding: 10px;
    font-size: 0.8vw;
}
.skill-box{
    width: 50%;
    height: 30%;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    gap: 10px;
}
.skill{
    position: relative;
    height: 100%;
    width: 35%;
    box-shadow: 0px 0px 3px white;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    animation: naik 0.3s ease-in;
}
.darker-2{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    top: 100%;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 10px;
    font-size: 0.7vw;
}
.skill:hover .darker-2{
    transform: translateY(-100%);
}
.login-box{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    animation: membesar 0.5s ease-in;
}
.close-button{
    position: absolute;
    top: 10px;
    left: calc(100% - 90px);
    width: 80px;
    height: 30px;
    font-family: "Poppins", sans-serif;
    background-color: rgba(255,0,0,0.7);
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
}
.login-form{
    width: 50%;
    height: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.input-box{
    width: 50%;
    height: 30px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    padding: 5px;
}
.login-button{
    width: 200px;
    height: 30px;
    border: none;
    background-color: rgb(20, 75, 75);
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border: 1px solid white;
    border-radius: 5px;
    box-sizing: border-box;
}
.swal2-container{
    z-index: 9999;
}
#img-sect-2{
    font-size: 1vw;
}
.button-box{
    height: fit-content;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.myTable{
    width: 100%;
    border-collapse: collapse;
}
th{
    background-color: rgba(0, 0, 0, 0.8);
    height: 50px;
    border: 1px solid white;
}
td{
    padding: 5px;
    border: 1px solid white;
}
.text-left{
    align-items: left;
}
.text-white{
    color: white;
}
.about-me{
    width: 60%;
    height: 60%;
    display: flex;
    gap: 50px;
    font-size: 0.7vw;
}
.img-about{
    position: relative;
    height: 100%;
    width: 50%;
    background-image: url('assets/about-me.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.img-about:hover .darker-2{
    transform: translateY(-100%);
}
.text-about-me{
    position: relative;
    width: 50%;
    height: 100%   ;
    text-align: left;
    font-size: 0.7vw !important;
    border: 1px solid grey;
    padding: 10px;
}
.signature{
    position: relative;
    bottom: 0px;
    right: 0px;
    text-align: right;
    font-size: 1.5vw !important;
}
.image-explain1{
    position: absolute;
    left: 10%;
    top: 10%;
    width: 30%;
    height: 30%;
    background-image: url('assets/explain1.jpg');
    background-position: center;
    background-size: cover;
    rotate: -10deg;
    box-shadow: 
        0px 15px 20px rgba(59, 59, 58, 0.2), /* Gold glow */
        0px 5px 10px rgba(75, 74, 74, 0.5); /* Shadow halus */
    transform-origin: top right;
    animation: sway1 5s infinite ease-in-out alternate;
}
.image-explain2{
    position: absolute;
    left: 60%;
    top: 10%;
    width: 30%;
    height: 30%;
    background-image: url('assets/explain2.jpg');
    background-position: center;
    background-size: cover;
    rotate: 10deg;
    box-shadow: 
        0px 15px 20px rgba(59, 59, 58, 0.2), /* Gold glow */
        0px 5px 10px rgba(75, 74, 74, 0.5); /* Shadow halus */
    transform-origin: top right;
    animation: sway1 5s infinite ease-in-out alternate;
    z-index: 100;
}
.image-explain3{
    position: absolute;
    left: 60%;
    top: 60%;
    width: 30%;
    height: 30%;
    background-image: url('assets/explain3.jpg');
    background-position: center;
    background-size: cover;
    rotate: -10deg;
    box-shadow: 
        0px 15px 20px rgba(59, 59, 58, 0.2), /* Gold glow */
        0px 5px 10px rgba(75, 74, 74, 0.5); /* Shadow halus */
    transform-origin: top right;
    animation: sway1 5s infinite ease-in-out alternate;
    z-index: 100;
}
.image-explain4{
    position: absolute;
    left: 10%;
    top: 60%;
    width: 30%;
    height: 30%;
    background-image: url('assets/explain4.jpg');
    background-position: center;
    background-size: cover;
    rotate: 10deg;
    box-shadow: 
        0px 15px 20px rgba(59, 59, 58, 0.2), /* Gold glow */
        0px 5px 10px rgba(75, 74, 74, 0.5); /* Shadow halus */
    transform-origin: top right;
    animation: sway1 5s infinite ease-in-out alternate;
    z-index: 100;
}
.image-explain5{
    position: absolute;
    left: 30%;
    top: 30%;
    width: 40%;
    height: 40%;
    background-image: url('assets/explain5.jpg');
    background-position: center;
    background-size: cover;
    rotate: 0deg;
    box-shadow: 
        0px 15px 20px rgba(59, 59, 58, 0.2), /* Gold glow */
        0px 5px 10px rgba(75, 74, 74, 0.5); /* Shadow halus */
    transform-origin: top right;
    animation: sway1 5s infinite ease-in-out alternate;
    z-index: 100 !important;
}
.darker-explanation{
    position: absolute;
    top: 80%;
    height: 20%;
    width: calc(100%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    padding: 10px;
    font-family: "Poppins", sans-serif;
    align-items: center;
    font-size: 0.7vw;
}
.pin1{
    display: flex;
    position: absolute;
    top: 10px;
    left: calc(100% - 35px);
}
.pin2{
    display: flex;
    position: absolute;
    top: 10px;
    left: 10px;
}
.pin3{
    display: flex;
    position: absolute;
    top: 10px;
    left: calc(100% - 35px);
}
.pin4{
    display: flex;
    position: absolute;
    top: 10px;
    left: 10px;
}
.home-view4{
    width: 100%;
    min-height: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    gap: 10px;
    background-color: antiquewhite;
    
}
.form-time-line{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 200px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    background-color: rgba(255,255,255,0.8);
    z-index: 99999;
}
.timelineContainer{
    width: 60%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.time-data{
    animation: naik 0.3s ease-in;
}
.sc_anim{
    font-family: "Poppins", sans-serif;
    font-size: 0.7vw;
    z-index: 99;
}
.border-none{
    border:none
}
.imagePreview{
    position: relative;
    left: 25%;
    width: 50%;
    height: 200px;
    background-size: cover;
    background-position: center;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.profile-container {
    width: 60%;
    margin: 30px auto;
    z-index: 100;
}
.bg-items{
    background-image: url('assets/bgcridential.jpg');
    background-size: cover;
    background-position: center;
}
.bg-transparan{
    background-color: transparent;
}
.profile-section {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 500 !important;
}

.profile-section:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}
h1{
    font-size: 2vw !important;
    font-weight: bold;  
}
h2 {
    font-size: 1.3vw !important;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 5px;
    font-family: "Poppins", sans-serif;
}

h3 {
    font-size: 1vw;
    font-weight: bold;
    margin-top: 10px;
    color: #007bff;
    font-family: "Poppins", sans-serif;
}

ul {
    padding-left: 0.7vw;
}

ul li {
    font-size: 0.7vw;
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

a {
    color: #007bff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

a:hover {
    text-decoration: underline;
}

.footer {
    background: linear-gradient(135deg, #1e1e1e, #292929);
    color: white;
    text-align: center;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    width: 100%;
    height: 100%;
    z-index: 200 !important;
}

.footer-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-text {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    margin-bottom: 20px;
}

.social-icon {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.social-icon:hover {
    color: #f4b400;
}

.contact-button {
    background: #f4b400;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.contact-button:hover {
    background: #d89a00;
}

.copyright {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.6;
}
.home-view6 {
    position: relative;
    padding: 50px;
    background: radial-gradient(rgba(26, 25, 25, 0.2), white);
    clip-path: polygon(0% 0%, 100% 5%, 95% 100%, 10% 90%);
    border: 3px solid rgba(41, 39, 39, 0.5);
}
.comment-form {
    margin-bottom: 20px;
    width: 60%;
    z-index: 100;
}
.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1;
}
.comment-form button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}
.comments-container {
    width: 60%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}
#comments-list {
    margin-top: 10px;
}
.menu-slide{
    display: none;
}
@media(max-width:800px){
    .slide-container{
        width: 90%;
        height: 400px;
    }
    .menu-slide{
        position: fixed;
        left: 0px;
        top: 7%;
        width: 100%;
        height: 93%;
        display: flex;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        font-size: 2vw;
        padding: 30px;
        gap: 30px;
        z-index: 999;
    }
    .transparent-button{
        font-size: 4vw !important;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
    }
    .comment-form{
        width: 100%;
    }
    .comments-container{
        width: 100%;
    }
    .profile-container {
        width: 100%;
    }
    h1{
        font-size: 5vw !important;
    }
    h2 {
        font-size: 3vw !important;
    }

    ul li {
        font-size: 2.5vw;
    }
    .signature{
        font-size: 4vw !important;
    }
    .sc_anim{
        font-size: 2.5vw;
    }
    #img-sect-2{
        font-size: 3vw;
    }
    .timelineContainer{
        width: 100%;
    }
    .timeline-text{
        font-size: 3vw;
    }
    .darker-explanation{
        font-size: 2.5vw;
    }
    .image-explain1{
        position: static;
        width: 100%;
        height: 400px;
        rotate: 0deg;
        animation: none;
    }
    .image-explain2{
        position: static;
        width: 100%;
        height: 400px;
        rotate: 0deg;
        animation: none;
    }
    .image-explain3{
        position: static;
        width: 100%;
        height: 400px;
        rotate: 0deg;
        animation: none;
    }
    .image-explain4{
        position: static;
        width: 100%;
        height: 400px;
        rotate: 0deg;
        animation: none;
    }
    .image-explain5{
        position: static;
        width: 100%;
        height: 400px;
        rotate: 0deg;
    }
    .poto-profile{
        width: 40%;
    }
    .home-view2{
        display: block;
        min-height: 100vh;
        height: fit-content;
        width: 100%;
        background-size: cover;
        background-position: center;
    }
    .home-view3{
        position: relative;
        height: fit-content;
        width: 100%;
        background-size: cover;
        background-position: center;
    }
    #darker-2{
        min-height: fit-content;
        height: auto;
    }
    .form-time-line{
        width: 100%;
    }
    .about-me{
        width: calc(100% - 20px);
        min-height: fit-content;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 10px;
        gap: 10px;
    }
    .text-about-me{
        height: fit-content;
        width: 100%;
        font-size: 2.5vw !important;
        border: none;
    }
    .img-about{
        width: 100%;
        height: 400px;
    }
    .login-form{
        width: 100%;
        height: 100%;
    }
    .button-box{
        width: calc(100% - 20px);
    }
    .input-box{
        font-size: 12px;
    }
    .login-button{
        font-size: 12px;
    }
    .top-header{
        font-size: 18px;
    }
    .header-menu{
        display: none;
    }
    .burger-menu{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        width: 30px;
        border-radius: 5px;
        border: 1px solid white;
    }
    .burger-button{
        color: white;
        background-color: transparent;
        border: none;
    }
    .my-name{
        font-size: 4vw !important;
    }
    .about-me1{
        width: calc(100% - 20px);
        padding: 10px;
        font-size: 12px;
    }
    .skill-box{
        width: 95%;
        height: 25%;
    }
    .skill{
        font-size: 1vw;
    }
    .darker{
        font-size: 2vw;
    }
    .darker-2{
        font-size: 2vw;
    }
}
@keyframes masuk{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes naik{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes keluar{
    0%{
        transform: translateX(0px);
    }
    100%{
        transform: translateX(100px);
    }
}
@keyframes membesar{
    0%{
        scale: 0.5;
    }
    100%{
        scale: 1;
    }
}
@keyframes sway1 {
    0% { transform: rotate(1deg); }
    100% { transform: rotate(-1deg); }
}

@keyframes sway2 {
    0% { transform: rotate(-1deg); }
    100% { transform: rotate(1deg); }
}
@keyframes moveLines {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}
@keyframes glowEffect {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.2); }
}
@keyframes geser-kiri{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0%);
    }
}
@keyframes geser-kanan{
    0%{transform: translateX(0%);}
    100%{transform: translateX(100%);}
}
@keyframes slide-kiri{
    0%{transform:translateX(0%);}
    18%{transform: translateX(0%);}
    20%{transform: translateX(-20%);}
    38%{transform: translateX(-20%);}
    40%{transform: translateX(-40%);}
    58%{transform: translateX(-40%);}
    60%{transform: translateX(-60%);}
    78%{transform: translateX(-60%);}
    80%{transform: translateX(-80%);}
    98%{transform: translateX(-80%);}
    100%{transform: translateX(-100%);}
}
@keyframes slide-kiri2{
    0%{transform:translateX(0%);}
    18%{transform: translateX(0%);}
    20%{transform: translateX(-20%);}
    38%{transform: translateX(-20%);}
    40%{transform: translateX(-40%);}
    58%{transform: translateX(-40%);}
    60%{transform: translateX(-60%);}
    78%{transform: translateX(-60%);}
    80%{transform: translateX(-80%);}
    98%{transform: translateX(-80%);}
    100%{transform: translateX(-100%);}
}