* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", serif;
}

body {
    background-color: #f1f1f1;
}

.container {
    width: 80%;
    margin: auto;
}

@media (max-width: 992px) {
    .container {
        width: 90%;
    }
}

.navbar {
    padding: 20px 0;
}

.navbar-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-box .menu {
    display: flex;
    gap: 30px;
}

.navbar-box .menu li {
    list-style-type: none;
}

.navbar-box .menu a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.navbar-box .menu li a:hover {
    border-bottom: 3px solid white;
}

.navbar-box .ri-menu-3-line {
    display: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .navbar-box .ri-menu-3-line {
        display: block;
    }
    .navbar-box .menu {
        position: absolute;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        text-align: center;
        background-color: black;
        width: 100%;
        padding: 40px 0;
        transition: all 0.2s ease-in-out;
    }
    .navbar-box .menu.menu-active {
        top: 60px;
        opacity: 1;
    }
    .navbar-box .menu li a {
        color: white;
        font-size: 20px;
    }
}

.hero {
    padding-top: 60px;
}

.hero-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hero-box h1 {
    font-size: 54px;
    margin-bottom: 10px;
    color: black;
}

.hero-box p {
    margin-bottom: 30px;
}

.hero-box a {
    text-decoration: none;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.hero-box img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

@media (max-width: 768px) {
    .hero-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
}

.layanan {
    padding: 150px 0;
}

.layanan-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.layanan-box .box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.2s;
}

.layanan-box .box:hover {
    transform: translateY(-5px);
}

.layanan-box .box i {
    color: black;
}

.layanan-box .box h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: black;
}

@media (max-width: 992px) {
    .layanan-box {
        grid-template-columns: 1fr;
    }
}

.produk {
    padding-bottom: 150px;
}

.produk-box h1 {
    text-align: center;
    margin-bottom: 30px;
}

.produk-box ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.produk-box ul li {
    list-style-type: none;
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.produk-box ul li:hover {
    background-color: black;
    color: white;
}

.produk-box .produk-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.produk-box .produk-list .item {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.produk-box .produk-list .item.active {
    display: block;
}

.produk-box .produk-list .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p span {
    font-weight: bold;
    color: black;
}

.footer .box:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer .box i {
    cursor: pointer;
    color: black;
}

.footer .box i:hover {
    color: rgb(65, 60, 60);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: black;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    margin: 10px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
