        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            
        }
        
        .transition-all {
            transition: all 0.3s ease-in-out;
        }
        
        .lang-toggle {
            border-radius: 20px;
            overflow: hidden;
        }
        
        .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .group:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: #006837;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 70%;
        }
        
        .hero-gradient {
            background: linear-gradient(90deg, rgba(0,104,55,0.9) 0%, rgba(0,125,64,0.8) 100%);
        }
        
        .university-stats {
            background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .btn-primary {
            background: linear-gradient(90deg, #006837 0%, #008a47 100%);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: linear-gradient(90deg, #004d28 0%, #006837 100%);
            box-shadow: 0 4px 12px rgba(0, 104, 55, 0.5);
        }
        
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fadeInUp {
            animation: fadeInUp 0.5s ease forwards;
        }
        
        .animate-delay-100 {
            animation-delay: 0.1s;
        }
        
        .animate-delay-200 {
            animation-delay: 0.2s;
        }
        
        .animate-delay-300 {
            animation-delay: 0.3s;
        }

/* Styling untuk navbar pada tampilan mobile */
@media screen and (max-width: 640px) {
    /* Posisi logo di kiri */
    .flex-1 {
        display: flex;
        justify-content: flex-start;
    }

    /* Posisi tombol menu (garis tiga) di kanan */
    .sm\:hidden.absolute {
        position: absolute;
        right: 0;
    }

    /* Memberikan jarak pada tombol menu */
    #mobile-menu-button {
        margin-right: 10px;
    }
}



.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.main-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.main-image {
    flex: 0 0 40%;
}

.main-image img {
    width: 100%;
    border-radius: 20px;
}

.main-text {
    flex: 0 0 60%;
    color: #abb4c8;
    line-height: 1.6;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.faculty-box {
    background-color: #006837;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faculty-box:hover {
    background-color: #008a47;
    transform: translateY(-5px);
}

.stats-section {
    background-color: white;
    border-radius: 15px;
    margin-top: -40px;
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #006837;
    margin-bottom: 10px;
}

.stat-label {
    color: #64748b;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}