  /* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff;
            color: #333;
            font-size: 16px;
            line-height: 1.6;
        }
        header {
            background-color: #fff;
            border-bottom: 2px solid #e0e0e0;
            padding: 20px 0;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: #333;
            padding: 10px 20px;
            font-weight: bold;
            position: relative;
        }
        nav a:hover {
            color: #1e90ff;
        }
        nav .dropdown {
            position: relative;
        }
		
		nav .dropdown > a::after {
    content: " ▼"; /* Tanda panah ke bawah */
    font-size: 12px;
    margin-left: 5px;
    color: #333;
}
		
        nav .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 1;
            min-width: 160px;
        }
        nav .dropdown-content a {
            display: block;
            padding: 10px 20px;
            color: #333;
            text-align: left;
        }
        nav .dropdown-content a:hover {
            background-color: #1e90ff;
            color: #fff;
        }
        nav .dropdown:hover .dropdown-content {
            display: block;
        }
        .logo {
            font-size: 1.5em;
            color: #1e90ff;
        }
        .hero {
            text-align: center;
            padding: 20px 20px;
            background-color: #f0f8ff;
        }
        .hero h1 {
            font-size: 2em;
            margin-bottom: 20px;
            color: #333;
        }
        .hero p {
            font-size: 1.2em;
            margin-bottom: 30px;
        }
        .btn {
            background-color: #1e90ff;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1em;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #1c86ee;
        }

        /* Slider Section */
        .slider {
            max-width: 1200px;
			
            margin: 20px auto;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
			
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            min-width: 100%;
            transition: 0.5s;
        }
        .slide img {
            width: 60%;
			height: auto; /* Menyesuaikan proporsi tinggi */
            border-radius: 10px;
        }
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        .slider-nav button {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 1.5em;
            transition: background-color 0.3s;
        }
        .slider-nav button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .about, .gallery, .contact {
            padding: 20px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .about h2, .gallery h2, .contact h2 {
            font-size: 2em;
            margin-bottom: 20px;
            text-align: center;
        }
        .about p, .contact p {
            font-size: 1.1em;
            text-align: center;
            margin-bottom: 40px;
        }
        .gallery img {
            width: 100%;
            max-width: 300px;
            margin: 10px;
            display: inline-block;
            border-radius: 10px;
			
			
			/* About Us Section */
.about {
    padding: 20px 20px;
    background-color: #fff;
    text-align: center;
}
.about h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}
.about p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Vision and Mission Section */
.vision-mission {
    text-align: left; /* Menjadikan teks rata kiri */
    margin: 0 auto;
    max-width: 800px;
}

.vision-mission h3 {
    font-size: 1.8em;
    color: #1e90ff;
    margin-bottom: 20px;
    text-align: left; /* Menjadikan judul rata kiri */
}

.vision-mission ul {
    list-style-type: disc;
    padding-left: 40px;
    text-align: left; /* Menjadikan daftar misi rata kiri */
}

.vision-mission ul li {
    margin-bottom: 10px;
    text-align: left; /* Memastikan setiap item dalam daftar rata kiri */
}

			
			
			
        }
        footer {
            background-color: #1e90ff;
            padding: 40px 0;
            text-align: center;
            color: white;
        }
        footer .footer-links {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        footer .footer-links a {
            color: white;
            margin: 5px;
            text-decoration: none;
        }
        footer .footer-links a:hover {
            text-decoration: underline;
        }
        footer p {
            color: white;
            margin-top: 20px;
        }
        footer .social-icons {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        footer .social-icons a {
            color: white;
            margin: 0 10px;
            font-size: 1.5em;
            text-decoration: none;
        }

        /* Floating WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            
            color: white;
            border-radius: 50%;
            padding: 15px;
            font-size: 24px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .whatsapp-button:hover {
            transform: scale(1.1);
        }
        .whatsapp-button img {
            width: 25px;
            height: 25px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2em;
            }
            .about, .gallery, .contact {
                padding: 40px 10px;
            }
            .slider-nav button {
                font-size: 1.2em;
            }
        }

/* Kenapa Harus Aerialiance Section */
.why-us {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.why-us h2 {
    font-size: 2.0em;
    margin-bottom: 20px;
    color: #333;
}

.feature-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Ensures responsive behavior */
}

.feature-item {
    flex-basis: 22%; /* Make items take up approximately 1/4th of the container */
    max-width: 300px; /* Limit the maximum width */
    min-width: 200px; /* Ensure a minimum width */
    text-align: center;
    margin: 10px; /* Adds some spacing around items */
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.icon-box img {
    width: 30px; /* Adjust icon size as needed */
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-item {
        flex-basis: 45%; /* Two items per row on tablet screens */
    }
}

@media (max-width: 480px) {
    .feature-item {
        flex-basis: 100%; /* One item per row on small mobile screens */
    }
}


/* Services Section */
.services {
    padding: 20px 20px;
    background-color: #f0f8ff;
    text-align: center;
}
.services h2 {
    font-size: 2.0em;
    margin-bottom: 20px;
    color: #333;
}
.service-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.service-item {
    flex-basis: 45%;
    background-color: #fff;
    padding: 30px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.service-item:hover {
    transform: translateY(-10px);
}
.service-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
   background-color: #1e90ff; /* Biru */
    color: white; /* Tulisan putih */
    padding: 20px; /* Ruang tambahan di sekitar teks */
    text-align: center; /* Teks di tengah */

}
.service-item p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}
.service-item ul {
    list-style: none;
    padding: 0;
}
.service-item ul li {
    font-size: 1.0em;
    margin-bottom: 10px;
}


/* Navigation Menu */
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    font-weight: bold;
    position: relative;
}
nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    min-width: 160px;
}
nav .dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-align: left;
}
nav .dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive Navigation Menu for Mobile */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 100;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: center;
        padding: 10px;
        width: 100%;
    }

    nav .menu-toggle {
        display: block;
        cursor: pointer;
    }

    nav .menu-toggle div {
        width: 30px;
        height: 3px;
        background-color: #333;
        margin: 6px 0;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 100;
        transition: max-height 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }

    nav ul.active {
        display: flex;
        max-height: 500px; /* Pastikan cukup tinggi untuk semua menu */
    }

    nav ul li {
        text-align: center;
        padding: 10px;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    /* Menu toggle animation */
    .menu-toggle.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active div:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.slide img {
    width: 100%;
    height: auto;
}

.menu-toggle.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active div:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}.menu-toggle.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active div:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menyelaraskan konten di bagian layanan sewa drone */
.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Menjaga agar konten selalu di tengah */
    gap: 20px;
}

/* Pada perangkat mobile, atur layout untuk item layanan */
@media (max-width: 768px) {
    .service-item {
        flex-basis: 100%; /* Item akan memenuhi 100% lebar layar */
        text-align: center; /* Menyelaraskan teks ke tengah */
    }
}

@media (max-width: 768px) {
    .slide img {
        width: 100%; /* Pada layar kecil, gambar akan memenuhi lebar slider */
        max-width: 100%; /* Pastikan gambar tidak lebih besar dari layar */
    }
}

/* Ubah warna teks pada link di dalam tombol */
.btn a {
    color: #fff; /* Ubah warna teks menjadi putih */
    text-decoration: none; /* Hilangkan garis bawah pada link */
}

/* Hover effect untuk memperjelas interaksi */
.btn a:hover {
    color: #f0f0f0; /* Bisa gunakan warna yang lebih terang saat dihover */
}

.clients {
    padding: 20px 20px;
    background-color: #f0f8ff;
    text-align: center;
}

.clients h2 {
    font-size: 2.0em;
    margin-bottom: 40px;
    color: #333;
}

.client-slider {
    overflow: hidden; /* Hanya menampilkan bagian yang terlihat */
    width: 100%;
    margin: 0 auto;
}

.client-slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: slideClients 20s linear infinite; /* Animasi berjalan otomatis */
}

.client-slide img {
    width: 150px; /* Atur lebar gambar */
    margin: 0 20px; /* Jarak antar gambar */
    transition: transform 0.3s ease;
}

@keyframes slideClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Floating WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366; /* Warna khas WhatsApp */
    border-radius: 1%;
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.whatsapp-button:hover {
    transform: scale(1.0);
}

/* Hidden text by default */
.whatsapp-text {
    display: none;
    background-color: #fff;
    color: #333;
    padding: 1px 1px;
    border-radius: 1px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1em;
    margin-left: 1px; /* Jarak teks dari ikon */
    white-space: nowrap; /* Teks tetap di satu baris */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    opacity: 0;
}

/* Show the text when hovered */
.whatsapp-button:hover .whatsapp-text {
    display: inline-block;
    visibility: visible;
    opacity: 1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 1em;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background-color: #1e90ff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}

.contact-form button:hover {
    background-color: #1c86ee;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Bagi menjadi 4 kolom di layar besar */
    gap: 10px;
    justify-items: center; /* Gambar tetap center */
    align-items: center;
    padding: 20px;
}

.gallery-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsif untuk perangkat kecil */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Bagi menjadi 2 kolom di layar tablet */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Satu kolom di layar kecil */
    }
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Bagi menjadi 4 kolom di layar besar */
    gap: 20px;
    justify-items: center; /* Agar item center */
    align-items: center;
    padding: 20px;
}

.feature-item {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

/* Responsif untuk perangkat kecil */
@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(2, 1fr); /* Bagi menjadi 2 kolom di layar tablet */
    }
}

@media (max-width: 480px) {
    .feature-list {
        grid-template-columns: 1fr; /* Satu kolom di layar kecil */
    }
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Bagi menjadi 4 kolom di layar besar */
    gap: 20px;
    justify-items: center; /* Agar item center */
    align-items: stretch; /* Agar semua item memiliki tinggi yang sama */
    padding: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column; /* Membuat konten dalam item tetap terstruktur vertikal */
    justify-content: space-between; /* Menjaga konten merata dalam item */
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%; /* Membuat item memiliki tinggi penuh */
}

.feature-item:hover {
    transform: translateY(-10px);
}

/* Responsif untuk perangkat kecil */
@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(2, 1fr); /* Bagi menjadi 2 kolom di layar tablet */
    }
}

@media (max-width: 480px) {
    .feature-list {
        grid-template-columns: 1fr; /* Satu kolom di layar kecil */
    }
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    min-height: 60px; /* Menetapkan tinggi minimum yang sama untuk semua heading */
    display: flex;
    align-items: center;
    justify-content: center; /* Agar teks di tengah secara vertikal */
    text-align: center; /* Agar teks berada di tengah secara horizontal */
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%; /* Membuat gambar menyesuaikan lebar box */
    max-width: 300px; /* Batasi ukuran maksimal gambar */
    height: auto;
    margin-bottom: 20px; /* Beri jarak antara gambar dan judul */
    border-radius: 10px; /* Memberikan efek sudut membulat */
}

/* Untuk heading h3 tetap di tengah */
.service-item h3 {
    font-size: 1.0em;
    margin-bottom: 15px;
    background-color: #1e90ff;
    color: white;
    padding: 10px;
    text-align: center;
}

/* Responsif untuk gambar di perangkat kecil */
@media (max-width: 768px) {
    .service-image {
        max-width: 100%; /* Gambar akan memenuhi lebar box di perangkat kecil */
    }
}

.btn-detail {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-detail:hover {
    background-color: #1c86ee; /* Warna lebih terang saat hover */
    color: #fff;
}

/* Lightbox background */
.lightbox {
    display: none; /* Default, lightbox disembunyikan */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Background transparan */
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.lightbox-close:hover {
    color: red;
}

.feature-item p, 
.feature-item ul {
    text-align: left; /* Membuat teks rata kiri */
    margin-left: 0;   /* Pastikan margin kiri tidak ada */
}

.feature-item ul li {
    list-style-type: disc; /* Beri tanda titik di depan poin-poin */
    margin-left: 20px; /* Menambahkan sedikit spasi dari tepi kiri */
}

.service-item p, 
.service-item ul {
    text-align: left; /* Membuat teks rata kiri */
    margin-left: 0;   /* Pastikan margin kiri tidak ada */
}

.service-item ul li {
    list-style-type: disc; /* Beri tanda titik di depan poin-poin */
    margin-left: 20px; /* Menambahkan sedikit spasi dari tepi kiri */
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Membagi menjadi 4 kolom */
    gap: 20px; /* Jarak antara setiap kolom */
    padding: 20px;
    justify-items: center; /* Agar setiap item di tengah */
}

.service-item {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    width: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
}

/* Responsif: Untuk layar lebih kecil, tampilkan 2 kolom */
@media (max-width: 768px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di layar tablet */
    }
}

/* Responsif: Untuk layar sangat kecil, tampilkan 1 kolom */
@media (max-width: 480px) {
    .service-list {
        grid-template-columns: 1fr; /* 1 kolom di layar kecil */
    }
}


/* Lightbox background */
.lightbox {
    display: none; /* Default, lightbox disembunyikan */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Background transparan */
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.lightbox-close:hover {
    color: red;
}

.service-item img {
    width: 100%; /* Gambar akan menyesuaikan dengan lebar container */
    height: auto; /* Memastikan proporsi gambar tetap */
    max-width: auto; /* Atur ukuran maksimum agar gambar tidak terlalu besar */
    border-radius: 10px; /* Sudut gambar membulat */
    margin-bottom: 20px;
}


.video-section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-section h2 {
    font-size: 2.0em;
    margin-bottom: 40px;
    color: #333;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Default 1 kolom */
    gap: 20px;
}

.video-item {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item iframe {
    width: 100%;
    height: 300px; /* Ukuran default untuk video */
    border-radius: 10px;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di layar tablet */
    }

    .video-item iframe {
        height: 250px; /* Sesuaikan tinggi video di tablet */
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 kolom di layar besar */
    }

    .video-item iframe {
        height: 200px; /* Sesuaikan tinggi video di layar besar */
    }
}

/* Gaya untuk halaman yang aktif */
nav ul li a.active {
    color: #1e90ff; /* Warna biru untuk link aktif */
}

nav ul li a.active::after {
    width: 100%; /* Garis bawah penuh pada link aktif */
    left: 0;
}

/* Modern minimalist style */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px; /* Menambah jarak antar item menu */
}

nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 0.05em; /* Memberi jarak antar huruf */
    transition: color 0.3s ease; /* Efek transisi untuk warna */
}

nav a:hover {
    color: #1e90ff; /* Warna biru saat hover */
}

nav ul li a.active {
    color: #1e90ff; /* Warna berbeda untuk menu yang aktif */
    border-bottom: 2px solid #1e90ff; /* Garis bawah untuk menu aktif */
}

nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1e90ff;
    transition: width 0.3s ease;
}
