@import url('https://fonts.googleapis.com/css2?family=Anton&family=Antonio:wght@100..700&family=Audiowide&family=League+Spartan:wght@100..900&family=Podkova:wght@400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'poppins';
}

.btn-fixed {
    position: fixed;
    bottom: 4%;
    right: 1%;
    z-index: 11111;
}

.btn-fixed a {
    text-decoration: none;
    color: white;
    background-color: #00ff91;
    padding: 20px;
    border-radius: 5px;
}

.btn-fixed i {
    font-size: 20px;
}

/* home */

#home {
    position: relative;
    width: 100%;
    height: 100dvh;
    background-image: url('../assets/image/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px 10px 10px 0px;
}

#home .menu-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding-top: 12px;
}

#home .menu-list .nav-item {
    display: inline-block;
    margin: 0 10px;
    position: relative;
}

#home .menu-list .nav-link {
    text-decoration: none;
    color: #333;
    padding: 8px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

#home .menu-list .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background-color: black;
    transition: width 0.3s ease;
}

#home .menu-list .nav-item:hover .nav-link::after,
#home .menu-list .nav-item.active .nav-link::after {
    width: 100%;
}


#home .introduction {
    position: absolute;
    top: 25%;
    left: 5%;
}

#home .introduction .btn-hubungi {
    border: 1px solid #000;
}

#home .sosial-media {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 300px;
    bottom: 0;
    padding: 40px;
    background-color: white;
    border-radius: 0px 30px 0px 0px;
}

#home .sosial-media a {
    text-decoration: none;
}

#home .sosial-media img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 28px;
}

/* tentang */

#tentang {
    margin-top: 137px;
    width: 100%;
    height: auto;
    margin-bottom: 137px;
}

#tentang .row {
    justify-content: center;
    row-gap: 100px;
}

#tentang .row .circle {
    position: absolute;
    z-index: -1;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: #9EC6F3;
}

#tentang .row .img-tentang {
    width: 400px;
    margin-top: 70px;
    margin-left: 40px;
    transform: rotate(-15deg);
}

#tentang .row .brand-tentang {
    font-weight: bold;
    font-size: 45px;
}

/* layanan */

#layanan {
    width: 100%;
    height: auto;
    margin-bottom: 100px;
}

#layanan .icon-service {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 50px;
}

#layanan .brand-service {
    font-weight: bold;
    font-size: 40px;
}

#layanan .card {
    margin-top: 50px;
    background-color: #9EC6F3;
    height: 400px;
}

#layanan .card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

#layanan .card .circle-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

#layanan .card .circle-icon .icon-service-item {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 50px;
}

#layanan .card .brand-service-item {
    color: white;
    font-weight: bold;
}

/* produk */

#produk {
    width: 100%;
    height: auto;
    margin-bottom: 80px;
}

#produk .icon-product {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 50px;
}

#produk .brand-produk {
    font-weight: bold;
    font-size: 40px;
}

#produk .slide-container {
    /* Sembunyikan scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE & Edge */
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-top: 10px;
}

#produk .slide-product {
    display: inline-flex;
    gap: 10px;
}

#produk .product-card {
    display: inline-block;
    width: 400px;
    min-width: 400px;
    margin-top: 40px;
}

#produk .btn-tanya {
    border: 1px solid #9EC6F3;
    color: #9EC6F3;
}

#produk .btn-tanya:hover {
    background-color: #9EC6F3;
    color: #ffffff;
}

#produk .product-card .img-product {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    border-radius: 5px 5px 0px 0px;
}

#produk .product-card h4 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
}

/* testimoni */

#testimoni {
    width: 100%;
    height: auto;
    margin-bottom: 80px;
}

#testimoni .brand-testimoni {
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

#testimoni .brand-testimoni::after {
    content: "";
    display: block;
    height: 1px;
    width: 60%;
    background-color: #000;
    margin: 8px auto 0 auto;
}

#testimoni .col-md-4 {
    background-color: #9EC6F3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    border-radius: 10px;
    padding-bottom: 20px;
}

#testimoni .col-md-4 h3 {
    margin-left: 10px;
    font-weight: bold;
}

#testimoni .col-md-4 p {
    font-size: 13px;
    margin-left: 10px;
    width: 70%;
    color: white;
}

#testimoni .col-md-4 .btn-testimoni {
    border: 1px solid white;
    color: white;
    width: 60%;
    margin-left: 10px;
}

.testimoni-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px;
}

#testimoni #list-1 {
    display: flex;
    gap: 20px;
    animation: scroll-left 15s linear infinite alternate;
    animation-play-state: running;
}

#list-2 {
    display: flex;
    gap: 20px;
    animation: scroll-left 15s linear infinite alternate;
    animation-delay: 1s;
    animation-play-state: running;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Optional: pause animation on hover */
.testimoni-wrapper:hover .testimoni-list {
    animation-play-state: paused;
}

#testimoni .testimoni-list .testimoni-item .card {
    width: 400px;
    max-width: 400px;
}

#testimoni .testimoni-list .testimoni-item .card h4 {
    font-weight: bold;
    font-size: 15px;
}

#testimoni .testimoni-list .testimoni-item .card p {
    font-size: 13px;
}

.rating-stars i {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-stars i.selected {
    color: gold;
}

/* footer */

.footer {
    background-color: #9EC6F3;
    width: 100%;
    height: auto;
}

.footer .container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer .container .brand-footer {
    font-weight: bold;
    color: white;
}

.footer .container .des-footer {
    font-size: 12px;
    color: white;
}

.footer .container .sosial-media-footer {
    display: flex;
    gap: 10px;
}

.footer .container .sosial-media-footer img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 20px;
}

.footer iframe {
    width: 100%;
    height: 300px;
    border-radius: 5px;
}


@media (max-width: 500px) {
    /* home */
    #home .menu-list {
        flex-wrap: wrap;
        gap: 1px;
    }

    #home .menu-list a {
        font-size: 15px;
    }

    /* tentang */

    #tentang {
        margin-bottom: 70px;
    }

    #tentang .brand-tentang {
        font-size: 25px;
    }

    #tentang .row .col:nth-child(1) {
        margin-left: 60px;
    }

    #tentang .row .col:nth-child(2) {
        text-align: center;
    }

    #tentang .row .circle {
        width: 250px;
        height: 250px;
    }

    #tentang .row .img-tentang {
        width: 250px;
    }

    /* layanan */
    #layanan .brand-service {
        font-size: 30px;
    }

    /* produk */

    #produk .brand-produk {
        font-size: 30px;
    }

    /* testimoni */
    #testimoni .brand-testimoni {
        font-size: 30px;
    }

    #testimoni .row .col-md-4 {
        padding-top: 70px;
        padding-bottom: 70px;
        border-radius: 0px;
    }

    /* footer */
    .footer .row {
        flex-wrap: wrap-reverse;
    }

    .footer .brand-footer {
        margin-top: 50px;
    }

    .btn-fixed {
        position: fixed;
        bottom: 4%;
        right: 5%;
        z-index: 11111;
    }
    .btn-fixed a {
        font-size: 10px;
        padding: 10px;
    }
    .btn-fixed i {
        font-size: 10px;
    }
}
