@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    text-transform: capitalize;
    list-style: none;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}
/* Light Theme */
:root {
    /* Warna background */
    --warna-background-1: #e7e7e7;
    --warna-background-2: #ffffff;

    /* Warna section */
    --warna-section-1: #222327;

    /* Warna button */
    --warna-button-1: #fd2929;
    --warna-button-2: #222327;
    --warna-button-3: #ffffff;

    /* Warna tulisan */
    --warna-tulisan-1: #ffffff;
    --warna-tulisan-2: #222327;
    --warna-tulisan-3: #fd2929;

    --transition-duration: .3s;

    --warna-hitam: #222327;
    --warna-putih: #ffffff;
    --warna-merah: #fd2929;
    --warna-wheat: #e7e7e7;
}
/* Dark Theme */
:root[data-theme="dark"] {
    /* Warna background */
    --warna-background-1: #666666;
    --warna-background-2: #393939;

    /* Warna section */
    --warna-section-1: #1c1c1c;

    /* Warna button */
    --warna-button-1: #fd2929;
    --warna-button-2: #ffffff;
    --warna-button-3: #000000;

    /* Warna tulisan */
    --warna-tulisan-1: #ffffff;
    --warna-tulisan-2: #ffffff;
    --warna-tulisan-3: #fd2929;
}
html {
    font-size: 100%;
}
body {
    background: var(--warna-background-1);
}
body.popup-open {
    overflow: hidden;
}
body.modal-open {
    overflow: hidden;
}



#loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #cccccc;
}
#loading-message {
    font-size: 16px;
}
.wrapper {
    width: 200px;
    height: 60px;
    position: relative;
    z-index: 1;
  }
  
  .circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left: 15%;
    transform-origin: 50%;
    animation: circle7124 .5s alternate infinite ease;
  }
  
  @keyframes circle7124 {
    0% {
      top: 60px;
      height: 5px;
      border-radius: 50px 50px 25px 25px;
      transform: scaleX(1.7);
    }
  
    40% {
      height: 20px;
      border-radius: 50%;
      transform: scaleX(1);
    }
  
    100% {
      top: 0%;
    }
  }
  
  .circle:nth-child(2) {
    left: 45%;
    animation-delay: .2s;
  }
  
  .circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
  }
  
  .shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.9);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow046 .5s alternate infinite ease;
  }
  
  @keyframes shadow046 {
    0% {
      transform: scaleX(1.5);
    }
  
    40% {
      transform: scaleX(1);
      opacity: .7;
    }
  
    100% {
      transform: scaleX(.2);
      opacity: .4;
    }
  }
  
  .shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
  }
  
  .shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
  }
  


/* Pengaturan tombol theme Start */
.saklar {
    width: 3.8rem;
    height: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: left;
    border-radius: 1rem;
    background-color: #b8b8b8;
    margin-right: 1rem;
}
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
    border-radius: 50%;
    background-color: #ffffff;
    color: #393939;
    cursor: pointer;
    transition: all .5s ease;
}
.theme-toggle i{
    padding: 0 2rem;
}
.theme-toggle.on {
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
    border-radius: 50%;
    color: #ffffff;
    background: #393939;
    transform: translateX(2rem);
}
/* Pengaturan tombol theme End */



/* Start Navigation Bar */
header {
    padding: 0rem 6%;
    position: fixed;
    top:0; left:0; right:0;
    background:var(--warna-background-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.2);;
    transition: transform 0.3s ease-in-out;
}
header.hidden {
    transform: translateY(-100%);
}
header .logo{
    padding: 1rem 2rem;
    font-size: 1.7rem;
    color: var(--warna-button-1);
    font-weight: bolder;
}
header .logo span{
    color:var(--warna-tulisan-2);
}
header .navbar a{
    font-size: 1rem;
    padding: 0.35rem 1.1rem;
    color: var(--warna-tulisan-2);
}
header .navbar a:hover{
    color: var(--warna-tulisan-3);
}
header .navbar a.active {
    color: var(--warna-tulisan-3);
}
.main {
    display: flex;
    align-items: center;
}
.button1 {
    margin-left: 2rem;
    margin-right: 2rem;
    border: none;
    background: var(--warna-button-1);
    padding: .4rem 1rem;
    border-radius: .3rem;
    color: var(--warna-tulisan-1);
    font-size: 1rem;
    transition: background-color .3s ease-in;
}
.button1:hover {
    background: var(--warna-button-2);
    color: var(--warna-button-3);
    cursor: pointer;
    transition: background-color .3s ease-out;
}
#menu-icon {
    font-size: 2.2rem;
    color: var(--warna-button-2);
    cursor: pointer;
    z-index: 10001;
    display: none;
}
/* End Navigation Bar */



/* Start Header Gambar */
.home{
    display: flex;
    align-items: center;
    min-height: 100vh;
    background:url(../images/Hero.png) no-repeat;
    background-size: cover;
    background-position: 10%;
    margin-bottom: 2rem;
}
.home .content{
    max-width: 50rem;
}
.home .content span{
    font-size: 1.7rem;
    color: var(--warna-tulisan-3);
    line-height: 1.5;
}
.home .content h1{
    font-size: 3rem;
    color: var(--warna-tulisan-1);
    margin-bottom: 2rem;
    text-transform: none;
}
.home .content h1 span{
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--warna-tulisan-3);
}
.button2 {
    border: .2rem solid var(--warna-button-1);
    padding: .5rem .7rem;
    border-radius: .4rem;
    color: var(--warna-tulisan-1);
    font-size: 1.3rem;
    transition: background-color .3s ease-in;
}
.button2:hover {
    border: none;
    padding: .7rem .9rem;
    background: var(--warna-button-1);
    color: var(--warna-tulisan-1);
    cursor: pointer;
    transition: background-color .3s ease-out;
}
/* End Header Gambar */



/* Pengaturan Section Start */
section {
    padding: 2rem 10%;
}
.heading{
    padding: 0.5rem 0;
    text-align: center;
    font-size: 2rem;
    color:var(--warna-tulisan-1);
    margin-bottom: 3rem;
    background:var(--warna-section-1);
    box-shadow: 0rem .3rem .5rem rgba(0,0,0,.2);
    border-radius: .3rem;
}
.heading span{
    color:var(--warna-tulisan-3);
}
/* Pengaturan Section Start */



/* Strat Container About*/
.about .row{
    display: flex;
    align-items: center;
    gap:2rem;
    flex-wrap: wrap;
    margin: 0 2rem;
}
.about .row .img-container{   
    flex:1 1 40rem;
    position: relative;
}
.about .row .img-container img{
    width:100%;
    border: .8rem solid var(--warna-putih);
    box-shadow: .1rem .3rem .5rem rgba(0,0,0,.2);
    border-radius: 1rem;
    height: 100%;
    object-fit: cover;
}
.about .row .img-container h3{
    position: absolute;
    top:50%; transform: translateY(-50%);
    font-size: 2rem;
    background:var(--warna-putih);
    color: var(--warna-hitam);
    width: 100%;
    padding: 0px 2rem;
    text-align: center;
    mix-blend-mode: screen;
}
.about .row .content{
    flex:1 1 40rem;
}
.about .row .content h3{
    font-size: 1.5rem;
    margin-bottom: .7rem;
    color:var(--warna-tulisan-3);
}
.about .row .content p{
    text-align: justify;
    font-size: 1rem;
    color:var(--warna-tulisan-2);
    padding: .1rem 0;
    padding-top: .5rem;
    line-height: 1.5;
    text-transform: none;
}

/* Start Button learn more */
.btn{
    display: inline-block;
    margin-top: 1rem;
    border-radius: .3rem;
    background: var(--warna-button-1);
    color:var(--warna-tulisan-1);
    padding: .6rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color .3s ease-in;
}
.btn:hover{
    background:var(--warna-button-2);
    color: var(--warna-button-3);
    transition: background-color .3s ease-out;
}
/* End Container About */



/* Start Container Skill */
.Skills {
    position: relative;
    text-align: center;
}
.heading {
    margin-bottom: 2rem;
}
.slide {
    position: relative;
    display: none;
}
.slideshow-container{
    position: relative;
}
.slide-number {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2.5rem;
    top: 10px;
    left: 10px;
    color: var(--warna-hitam);
    background: var(--warna-putih);
    font-weight: bold;
    font-size: 1rem;
    border-radius: .4rem;
}
.slide img {
    max-width: 100%;
    height: auto;
    border: .3rem solid var(--warna-putih);
    box-shadow: .1rem .3rem .5rem rgba(0,0,0,.2);
    border-radius: 1rem;
}
.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: .6rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    background-color:rgba(255, 255, 255, 0.83);
    color: var(--warna-hitam);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color .4s ease-in;
}
.prev-button:hover, 
.next-button:hover {
    background-color: var(--warna-merah);
    color: var(--warna-putih);
    transition: background-color .3s ease-out;
}
.prev-button {
    left: 10px;
}
.next-button {
    right: 10px;
}
/* End Container Skill */



/* Start Section Service */
.service .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.service .box-container .box{
    flex: 1 1 0rem;
    box-shadow: .1rem .3rem .5rem rgba(0,0,0,.2);
    border-radius: 0.5rem;
    border:.1rem solid rgba(0,0,0,.1);
    position: relative;
    margin: 0 auto;
    background: var(--warna-background-2);
}
.service .box-container .box .image{
    position: relative;
    text-align: center;
    overflow:hidden;
}
.service .box-container .box .image img{
    width: 20rem;
    height: auto;
    object-fit: cover;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
}
.service .box-container .box:hover .image img{
    transform: scale(1.1);
}
.service .box-container .box .image .icons{
    position: absolute;
    left:0; right:0;
    display: flex;
}
.service .box-container .box:hover .image .icons{
    bottom:0;
}
.service .box-container .box .image .icons .cart-btn{
    width:100%;
    font-size: 1.4rem;
}
.service .box-container .box .image .icons a{
    line-height: 3rem;
    font-size: 1.8rem;
    background:var(--warna-button-2);
    color:var(--warna-button-3);
    transition: background-color .3s ease-in;
}
.service .box-container .box .image .icons a:hover{
    background:var(--warna-button-1);
    color:var(--warna-tulisan-1);
    transition: background-color .3s ease-out;
}
.service .box-container .box .content{
    text-align: center;
    padding: 0.3rem;
}
.service .box-container .box .content h3{
    font-size: 1.4rem;
    color:var(--warna-tulisan-3);
    font-weight: bolder;
}
.service .box-container .box .content .paragraf{
    font-size: 1rem;
    color:var(--warna-tulisan-2);
    padding-top: 0.3rem;
    padding-bottom: 1rem;
    margin: 0 2rem;
    text-transform: none;
}
/* End Section Service */



/* Strat Container Service di halaman baru*/
.about-service{
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding: 0 3rem;
}
.about-service .service-left-container, .service-right-container{
    display: inline-block;
    vertical-align: top;
    margin: 0 .8%;
}

/* Start Service Left */
.service-left-container{
    width: 66%;
    height: auto;
    padding: 2rem;
    background: var(--warna-background-2);
    box-shadow: .1rem .3rem .5rem rgba(0,0,0,.2);
    border-radius: .5rem;
}
.service-left-container h3{
    color: var(--warna-tulisan-3);
    font-size: 1.3rem;
    margin: 1rem 0;
}
.service-left-container img{
    width: 100%;
    margin: 1rem 0;
}
.service-left-container p{
    line-height: 2;
    font-size: .9rem;
    color: var(--warna-tulisan-2);
    text-transform: none;
    text-align: justify;
}

/* Start Service Right */
.service-right-container{
    width: 30%;
    height: auto;
}
.service-right-container .service-right-box{
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    padding: 1rem;
    text-align: center;
    background: var(--warna-background-2);
    box-shadow: .1rem .3rem .5rem rgba(0,0,0,.2);
    border-radius: .5rem;
}
.service-right-container .service-right-box img{
    width: 50%;
}
.service-right-container .service-right-box h3{
    margin: 1rem 0;
    font-size: 1.3rem;
    color: var(--warna-tulisan-3);
}
.service-right-container .service-right-box p{
    line-height: 1.5;
    font-size: .9rem;
    text-transform: none;
    color: var(--warna-tulisan-2);
}

/* Other Service Button*/
.service-right-container .service-right-box a.active{
    background: var(--warna-button-2);
    color: var(--warna-button-3);
}
.service-right-container .service-right-box .custom-line{
    border: none;
    height: 2px; /* Atur ketebalan garis */
    background-color: var(--warna-tulisan-2); /* Atur warna garis */
    margin: 1rem;
}
.service-right-container .service-right-box a img{
    width: 15%;
    margin-right: 1rem;
}
.service-right-container .service-right-box a{
    font-size: .9rem;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 1rem 1rem 1rem;
    padding: 1rem;
    color: var(--warna-tulisan-2);
    text-align: left;
    background: var(--warna-background-1);
    border-radius: .4rem;
    transition: background-color 0.3s ease-out;
}
.service-right-container .service-right-box a:hover{
    background: var(--warna-button-2);
    color: var(--warna-button-3);
    transition: background-color 0.3s ease-in;
}
.service-right-container .service-right-box a span{
    font-size: 1rem;
    margin-left: 85%;
    position: absolute;
    font-weight: bold;
}

/* Icon Share Service Button*/
.service-right-container .service-right-box .icon a{
    font-size: 1rem;
    position: relative;
    font-weight: bold;
}
.service-right-container .service-right-box .icon a span{
    margin-left: 85%;
    position: absolute;
}
.service-right-container .service-right-box .icon a i{
    text-align: center;
    width: 2rem;
    font-size: 1.8rem;
    margin-right: 1rem;
    color: var(--warna-tulisan-2);
}
.service-right-container .service-right-box .icon a:hover i{
    color: var(--warna-button-3);
}
/* End Container Service di halaman baru*/



/* Start Section Portfolio */
.portfolio .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.portfolio .box-container .box{
    flex: 1 1 30rem;
    box-shadow: .1rem .3rem .5rem rgba(0,0,0,.2);
    border-radius: 0.5rem;
    border:.1rem solid rgba(0,0,0,.1);
    position: relative;
    background: var(--warna-background-2);
}
.portfolio .box-container .box .image{
    position: relative;
    text-align: center;
    overflow:hidden;
}
.portfolio .box-container .box .image img{
    width: 30rem;
    height: auto;
    object-fit: cover;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
}
.portfolio .box-container .box .image .icons{
    position: absolute;
    left:0; right:0;
    display: flex;
}
.portfolio .box-container .box:hover .image .icons{
    bottom:0;
}
.portfolio .box-container .box .image .icons a{
    line-height: 3rem;
    font-size: 1.8rem;
    width:65%;
    background:var(--warna-button-2);
    color:var(--warna-button-3);
}
.portfolio .box-container .box .image .icons span{
    line-height: 3rem;
    font-size: 1.4rem;
    width:65%;
    cursor: pointer;
    background:var(--warna-button-2);
    color:var(--warna-button-3);
}
.portfolio .box-container .box .image .icons .cart-btn{
    border-left: .1rem solid var(--warna-putih);
    border-right: .1rem solid var(--warna-putih);
    width:100%;
    font-size: 1.4rem;
}
.portfolio .box-container .box .image .icons span:hover{
    background:var(--warna-button-1);
    color: var(--warna-tulisan-1);
    font-size: 1.8rem;
}
.portfolio .box-container .box .image .icons a:hover{
    background:var(--warna-button-1);
    color: var(--warna-tulisan-1);
    font-size: 1.5rem;
}
.portfolio .box-container .box .content{
    text-align: center;
    padding: 0.3rem;
}
.portfolio .box-container .box .content h1{
    font-size: 1.6rem;
    color:var(--warna-tulisan-2);
    font-weight: bolder;
}
.portfolio .box-container .box .content .disclaimer{
    text-transform: none;
    font-size: 1.1rem;
    color:#999;
    padding: .8rem;

}
.portfolio .box-container .box .content .disclaimer span{
    text-transform: none;
    font-size: 0.9rem;
    color:var(--warna-tulisan-3);
    font-weight: lighter;
}
/* End Section Portfolio */



/* Gaya CSS untuk Popup gambar Start*/
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.popup.open {
    opacity: 1;
}
.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.popup-content {
    position: relative;
    margin: 3vh auto;
    max-width: 80%;
    background-color: var(--warna-putih);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 1.3rem rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
}
.popup img {
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
    border-radius: .6rem;
    border: .1rem solid var(--warna-hitam);
    box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .5);
}
.close1 {
    color: #aaa;
    position: absolute;
    top: 0;
    right: .5rem;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    float: right;
    transition: color 0.3s ease-in-out;
}
.close1:hover {
    color: var(--warna-merah);
}
/* Gaya CSS untuk Popup gambar End*/



/* Gaya CSS untuk Popup share Start */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    animation: modalFadeIn 0.3s ease-in-out;
}
.modal-content {
    background-color: var(--warna-putih);
    margin: 15% auto;
    padding: 1.2rem;
    border: .1rem solid #888;
    width: 80%;
    animation: modalSlideIn 0.3s ease-in-out;
    border-radius: .5rem;
}
.modal-content .social-icons a{
    display: inline-block;
    background: var(--warna-button-1);
    color: var(--warna-tulisan-1);
    padding: .2rem 2rem .2rem .8rem;
    font-size: 1.5rem;
    margin: 1rem 2rem 1rem 0;
    border-radius: .5rem;
    cursor: pointer;
}
.modal-content .social-icons a:hover{
    background-color: var(--warna-hitam);
    color: var(--warna-tulisan-1);
}
.close {
    color: #aaa;
    float: right;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}
.close:hover,
.close:focus {
    color: var(--warna-tulisan-3);
    text-decoration: none;
    cursor: pointer;
}
@keyframes modalFadeIn {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
}
@keyframes modalSlideIn {
    from {
    transform: translateY(-50%);
    }
    to {
    transform: translateY(0);
    }
}
/* Gaya CSS untuk Popup share End */



/* Start Section Contact */
.contact-container {
    background-color: var(--warna-background-2);
    padding: 6rem 0;
    margin-top: 2rem;
    text-align: center;
}
/* Heading */
.contact-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warna-tulisan-2);
    margin-bottom: 2.3rem;
}
/* Form */
.contact-form {
    max-width: 35rem;
    margin: 0 auto;
    position: relative;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background: #e7e7e7;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: .1rem solid #ccc;
    border-radius: .4rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #666;
}
.contact-form textarea {
    height: 120px;
    resize: vertical;
}
.contact-form button.btn-kirim {
    display: inline-block;
    background-color: var(--warna-button-1);
    color: var(--warna-tulisan-1);
    border: none;
    padding: .8rem 1.7rem;
    border-radius: .4rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: var(--warna-button-2);
    color: var(--warna-button-3);
}
.contact-form .button-none{
    display: none;
}
.contact-form button.button-none{
    display: none;
}

/* button loading spinners */
.loading-button {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: not-allowed;
    transition: opacity 0.3s;
}
.loading-button .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
    transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
    transform: translate(-50%, -50%) rotate(360deg);
    }
}
.loading-button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* alert */
.alert {
    position: absolute;
    padding: .7rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 10px;
    top: 24rem;
    left: 1.5rem;
}
.success {
    background-color: #a3d9a5;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.close-btn {
    position: absolute;
    top: .7rem;
    right: .7rem;
    background-color: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
}
/* End Section Contact */



/* Start Footer Bar */
footer {
    bottom: 0;
}
.footer-distributed {
    background-color: var(--warna-background-2);
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    padding: 2rem 2rem;
}
/* Footer center */
.footer-distributed .footer-center {
    width: 100%;
}
/* Footer links */
.footer-distributed .footer-links {
    color: var(--warna-tulisan-2);
    margin: 3rem 0;
    font-size: 1.2rem;
}
.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.5;
    text-decoration: none;
    color: inherit;
}
.footer-distributed .footer-links a:hover {
    color: var(--warna-tulisan-3);
}
.footer-distributed .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-distributed .social-icons p {
    color: var(--warna-tulisan-2);
}
.footer-distributed .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    border-radius: .3rem;
    color: var(--warna-tulisan-1);
    background-color: var(--warna-button-1);
    margin: 0 1rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.footer-distributed .social-icons a:hover {
    background-color: var(--warna-button-2); /* Ganti dengan warna media sosial yang sesuai */
    color: var(--warna-button-3);
}
.footer-distributed .social-icons i {
    font-size: 2rem;
}
.footer-distributed .footer-company-name {
    font-size: .9rem;
    color: rgb(163, 163, 163);
}
.footer-distributed .footer-company-name strong {
    font-weight: bold;
}
/* End Footer Bar */



/* Start Responsive Media */
@media (max-width: 1440px){
    html {
        font-size: 90%;
    }
}
@media (max-width: 1080px){
    html {
        font-size: 80%;
    }
    #menu-icon {
        display: block;
    }
    header .navbar {
        margin-top: .8rem;
        position: absolute;
        top: 100%;
        right: -100%;
        width: 16rem;
        height: 20rem;
        background: var(--warna-button-3);
        box-shadow: 0 .3rem .5rem rgba(0,0,0,.2);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-radius: 1rem;
        transition: all 0.5s ease-out;
        z-index: 10;
    }
    header .navbar a {
        font-size: 1.2rem;
        display: block;
        margin: 1rem 0;
        padding: 0 2rem;
        transition: all 0.5s ease;
    }
    header .navbar a:hover {
        color: var(--warna-tulisan-3);
        transform: translateY(5px);
    }
    header .navbar a.active {
        color: var(--warna-tulisan-3);
    }
    header .navbar.open {
        right: 2%;
    }



    .about-service .service-left-container, .service-right-container{
        width: 100%;
        margin: 0 auto;
    }
    .about-service .service-left-container{
        margin-bottom: 2rem;
    }
    .about-service .service-right-container{
        display: inline;
        width: 100%;
        margin-bottom: 3rem;
    }



    .footer-left {
        text-align: center;
    }
    .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
    }
    .footer-distributed .footer-center i {
        margin-left: 0;
    }
    .footer-right {
        text-align: center;
    }
}
@media (max-width: 720px) {
    html {
        font-size: 70%;
    }
    section {
        padding: 2rem 10%;
    }
    .about .row{
        margin: 0 0;
    }
    .about-service{
        padding: 0 0;
    }
    .service .box-container .box .image .icons{
        position: relative;
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%;
    }
}