body {
    overflow-x: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2563eb;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    display: none;
    /* Hidden by default */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    z-index: 1000;
}

#back-to-top:hover {
    background-color: #1e40af;
}

/* Video Modal Styles */
.video-modal {
    background-color: rgba(0, 0, 0, 0.8);
    /* Lebih gelap sedikit untuk kontras */
    transition: opacity 0.3s ease-in-out;
    z-index: 10000;
}

.video-modal-content {
    background-color: #fff;
    /* Latar belakang putih */
    border-radius: 0.5rem;
    /* rounded-lg */
    padding: 1.5rem;
    /* p-6 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    position: relative;
    width: 90%;
    /* Lebar responsif */
    max-width: 800px;
    /* Batas lebar maksimum */
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.375rem;
    /* rounded-md */
}

.video-modal-close-btn {
    position: absolute;
    top: 0.75rem;
    /* top-3 */
    right: 0.75rem;
    /* right-3 */
    background: none;
    border: none;
    font-size: 2rem;
    /* text-3xl */
    line-height: 1;
    color: #4a5568;
    /* text-gray-700 */
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s ease-in-out;
}

.video-modal-close-btn:hover {
    color: #1a202c;
    /* text-gray-900 */
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #2c5282;
    /* Warna latar belakang dropdown */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    right: 0;
    /* Posisikan ke kanan */
    top: 100%;
    /* Di bawah tombol */
    margin-top: 0.5rem;
    /* Sedikit jarak */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #3b82f6;
    /* Warna hover item dropdown */
}

