        :root {
            --primary-blue: #083072;
            --primary-yellow: #cba60c;
        }
        html, body {
            height: 100%;
            margin: 0;
        }
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .content-wrapper {
            flex: 1 0 auto;
        }
        footer {
            flex-shrink: 0;
        }
        .bg-primary-blue { background-color: var(--primary-blue); }
        .bg-primary-yellow { background-color: var(--primary-yellow); }
        .text-primary-blue { color: var(--primary-blue); }
        .text-primary-yellow { color: var(--primary-yellow); }
        .hover\:bg-primary-yellow:hover { background-color: var(--primary-yellow); }
        .hover\:text-primary-blue:hover { color: var(--primary-blue); }
        .modal-image {
            max-height: 80vh;
            max-width: 90vw;
            object-fit: contain;
        }


        /* Hero Section */
        .hero {
            position: relative;
            height: 87vh;
            overflow: hidden;
        }
        .hero video, .hero img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .program-card {
            position: relative;
            transition: transform 0.3s;
        }
        .program-card:hover {
            transform: translateY(-5px);
        }
        .program-icon {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-yellow);
            border-radius: 50%;
            padding: 12px;
            color: var(--primary-blue);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Animasi untuk Hero Section */
        .hero-content {
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Animasi untuk tombol */
        .see-all-btn {
            transition: all 0.3s ease;
        }
        .see-all-btn:hover {
            transform: scale(1.05);
            background-color: var(--primary-yellow);
            color: var(--primary-blue);
        }
        .daftar-sekarang {
            transition: all 0.3s ease;
            background-color: var(--primary-yellow);
        }
        .daftar-sekarang:hover {
            transform: scale(1.05);
            background-color: var(--primary-blue);
            color: var(--primary-yellow);
        }
        /* Animasi untuk menu navigasi */
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--primary-yellow);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        /* Berita */
        .news-card {
            transition: transform 0.3s;
        }
        .news-card:hover {
            transform: translateY(-5px);
        }
.category-active {
    color: var(--primary-blue);
    font-weight: bold;
}
.popular-news img {
    transition: transform 0.3s;
}
.popular-news:hover img {
    transform: scale(1.05);
}
.breadcrumb a {
    color: var(--primary-blue);
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.share-icon {
    transition: transform 0.3s;
}
.share-icon:hover {
    transform: scale(1.2);
}

.gallery-item {
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .gallery-item:hover {
            transform: scale(1.05);
        }
        .fade-in {
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }
        @keyframes fadeIn {
            to { opacity: 1; }
        }
.dropdown {
            position: relative;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #1f2937;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 100;
            top: 100%;
            right: 0;
        }
        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s;
        }
        .dropdown-content a:hover {
            background-color: var(--primary-yellow);
            color: var(--primary-blue);
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown-header {
            display: flex;
            align-items: center;
        }
        .dropdown-header i {
            margin-left: 8px;
        }
        .mobile-dropdown-content {
            display: none;
            background-color: #1e3a8a;
            padding-left: 20px;
        }
        .mobile-dropdown-content a {
            padding: 10px 0;
            display: block;
        }
        .mobile-dropdown-header {
            display: flex;
            align-items: center;
        }
        .mobile-dropdown-header i {
            margin-left: 8px;
        }