    /* Section Prodi */
    html {
    scroll-behavior: smooth;
    }
    #berita {
    scroll-margin-top: 100px; 
    }
    #kurikulum {
    scroll-margin-top: 100px;
    }

    /* Section Ubah Bendera */
    .language-switcher img {
        width: 24px;
        height: auto;
        border-radius: 2px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .language-switcher a:hover img {
        transform: scale(1.2);
        opacity: 1 !important;
    }

    .opacity-50 { opacity: 0.5; }
    .opacity-100 { opacity: 1; border: 1px solid white; }

    /* Section Landing Page */
    .bg-creamy { background-color: #FDF5E6; } 
    .bg-dark-green { background-color: #0B5E44; } 
    .text-custom-green { color: #0B5E44; }
    .btn-custom-green { background-color: #0B5E44; color: white; border-radius: 8px; }
    .btn-outline-custom { border: 2px solid #0B5E44; color: #0B5E44; border-radius: 8px; font-weight: bold; }
    .video-placeholder { background: #D9D9D9; min-height: 350px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
    .row { display: flex; flex-wrap: wrap; }
    .badge-figma {
        background-color: #FDF5E6 !important;
        color: #0B5E44 !important;
        font-weight: bold;
        padding: 10px 25px !important;
        border-radius: 12px !important;
        font-size: 1rem;
        display: inline-block;
    }
    .profil-content h2, .profil-content p {
        color: white !important;
    }
    /* Section Profile  */
    .stats-row {
        position: relative;
        z-index: 99; 
        margin-top: 80px; 
        margin-bottom: -60px; 
        box-shadow: 0 15px 40px rgba(0,0,0,0.2); 
    }
    .stats-overlap {
        position: relative;
        z-index: 10;
        margin-bottom: -70px;
        margin-top: 50px;
    }
    .stat-box {
        padding: 45px 20px;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: pointer;
    }

    .stat-box:hover {
        transform: translateY(-15px); 
        box-shadow: 0 15px 30px rgba(0,0,0,0.3); 
        z-index: 11;
    }

    .stat-box:hover h3 {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .stats-overlap {
        position: relative;
        z-index: 10;
        margin-bottom: -70px;
        margin-top: 50px;
        /* --- TAMBAHKAN INI --- */
        animation: fadeInUp 1s ease-out both;
    }
    .stat-box:nth-child(1) { animation-delay: 0.1s; }
    .stat-box:nth-child(2) { animation-delay: 0.2s; }
    .stat-box:nth-child(3) { animation-delay: 0.3s; }
    .stat-box:nth-child(4) { animation-delay: 0.4s; }

    #berita-section {
        padding-top: 100px !important; 
    }
    .bg-stat-1 { background-color: #064D39 !important; }
    .bg-stat-2 { background-color: #007A58 !important; }
    .bg-stat-3 { background-color: #00A87A !important; }
    .bg-stat-4 { background-color: #17D899 !important; }
    

    /* Section Kompetensi */
    .competency-card {
        background-color: #E9E9E9;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        border: none;
        position: relative;
    }
    .competency-card:hover {
        transform: translateY(-15px); 
        background-color: #ffffff; 
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    .competency-icon {
        font-size: 3.5rem;
        color: #000;
        margin-bottom: 25px;
        display: block;
    }
    .competency-title {
        font-weight: 800;
        font-size: 1.25rem;
        margin-bottom: 20px;
        color: #000;
    }
    .competency-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #333;
    }
    .badge-yellow {
        background-color: #FFF9E6 !important; 
        color: #0B5E44 !important;
        font-weight: bold;
        padding: 8px 20px !important;
        border-radius: 10px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    /* Section Kurikulum */
    .curriculum-card {
        background-color: #E9E9E9 !important; 
        border-radius: 20px;
        border-left: 8px solid #0B5E44; 
        position: relative;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .curriculum-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .semester-header {
        background-color: #0B5E44;
        color: white;
        padding: 10px 15px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
    }

    .curriculum-category {
        color: #0B5E44;
        font-weight: 800;
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .curriculum-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 15px; 
    }

    .curriculum-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 5px;
        font-size: 0.85rem;
        color: #333;
        line-height: 1.3;
    }

    .curriculum-list li::before {
        content: "•";
        color: #0B5E44;
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    .btn-link-view {
        color: #0B5E44; 
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-link-view:hover {
        color: #ffd700;
        transform: translateX(5px);
        text-decoration: none;
    }

    /* Section Fasilitas */
    .facility-item {
        text-align: center;
        padding: 20px;
        transition: all 0.3s ease;
    }
    .facility-img-wrapper {
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 30px;
        margin-bottom: 20px;
    }
    .facility-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .facility-item:hover .facility-img-wrapper img {
        transform: scale(1.1); 
    }
    .facility-item h5 {
        color: white;
        font-weight: 700;
        margin-bottom: 15px;
    }
    .facility-item p {
        color: white;
        opacity: 0.8;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Section Event */
    .event-card {
        background-color: #E9E9E9; 
        border-radius: 25px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: none;
    }

    .event-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .event-img-wrapper {
        position: relative;
        height: 220px;
    }

    .event-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .badge-event-type {
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: #0B5E44;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    .event-body {
        padding: 25px;
    }
    .event-title {
        font-weight: 800;
        color: #000;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }
    .event-title i {
        margin-right: 10px;
        color: #F4B400; 
    }
    .event-description {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .event-meta {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        border-top: 1px solid #ddd;
        padding-top: 15px;
    }
    .meta-item {
        font-size: 0.85rem;
        font-weight: 700;
        color: #0B5E44;
        display: flex;
        align-items: center;
    }
    .meta-item i {
        margin-right: 8px;
    }
    .badge-event-header {
        background-color: #0B5E44 !important;
        color: white !important;
        font-weight: bold;
        padding: 12px 30px !important;
        border-radius: 12px !important;
        display: inline-block;
    }
    .btn-penelitian-all {
        display: inline-block;
        background-color: #0B5E44;
        color: #ffffff !important;
        border: 2px solid #ffffff; 
        padding: 12px 35px;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        text-transform: none; 
    }

    .btn-penelitian-all:hover {
        background-color: #ffffff; 
        color: #0B5E44 !important; 
        text-decoration: none;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Section Karya Mahasiswa */
    .karya-card {
        background: #ffffff;
        border-radius: 25px;
        padding: 25px; 
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .karya-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .karya-category {
        color: #0B5E44;
        font-weight: 700;
        font-size: 0.95rem; 
        margin-bottom: 8px; 
    }

    .karya-title {
        color: #064D39; 
        font-weight: 800;
        font-size: 1.25rem; 
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .karya-author {
        color: #0B5E44;
        font-weight: 600;
        font-size: 0.85rem; 
        margin-bottom: 12px;
    }

    .karya-desc {
        font-size: 0.8rem; 
        color: #666;
        margin-bottom: 15px;
        flex-grow: 1;
        line-height: 1.5;
    }

    .tech-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 15px;
    }

    .badge-tech {
        background-color: #0B5E44;
        color: white;
        padding: 4px 12px; 
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .link-more {
        text-align: right;
        color: #bbb; 
        font-size: 0.75rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }

    .link-more:hover {
        color: #0B5E44;
        text-decoration: none;
        transform: translateX(3px);
    }

    .btn-cream-green {
        background-color: #FDF5E6 !important; 
        color: #0B5E44 !important;            
        border: 2px solid #0B5E44 !important; 
        font-weight: 700;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
    }

    .btn-cream-green:hover {
        background-color: white !important; 
        color: #0B5E44 !important;           
        transform: translateY(-3px);          
        box-shadow: 0 8px 15px rgba(11, 94, 68, 0.2);
        text-decoration: none;
    }
    
    /* --- Global Button Transition --- */
    .btn-custom-green, .btn-outline-custom {
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    /* 1. Info Pendaftaran */
    .btn-custom-green:hover {
        background-color: #084733 !important; 
        transform: translateY(-3px); 
        box-shadow: 0 8px 15px rgba(11, 94, 68, 0.3); 
        color: white !important;
    }

    .btn-custom-green:active {
        transform: translateY(-1px); 
        box-shadow: 0 4px 8px rgba(11, 94, 68, 0.2);
    }

    /* 2. Profil Kelulusan */
    .btn-outline-custom:hover {
        background-color: #0B5E44 !important; 
        color: white !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    /* 3. Lihat Detail Event */
    .btn-sm.btn-outline-custom:hover {
        background-color: #0B5E44 !important;
        color: white !important;
        letter-spacing: 0.5px; 
    }
    .btn-outline-custom::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    .btn-outline-custom:hover::after {
        opacity: 1;
    }
    .section-kompetensi {
        padding-top: 160px !important; 
        padding-bottom: 60px !important; 
    }
    .section-kurikulum {
        padding-top: 60px !important;
        padding-bottom: 100px !important;
    }
    .stats-overlap .row {
        box-shadow: 0 20px 50px rgba(0, 71, 51, 0.15) !important; 
    }

    /* Adjust CSS some button */
    .course-tag a {
        background-color: #06543C !important; 
        color: #ffffff !important; 
        border-radius: 50px !important; 
        padding: 5px 15px !important;
        display: inline-block;
    }

    .btn-primary, 
    .btn-primary-round,
    .btn-block.mt-4 { 
        background-color: #06543C !important;
        border-color: #06543C !important;
        color: #ffffff !important;
        border-radius: 50px !important;
        padding: 12px 25px !important;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-primary:hover, 
    .btn-primary-round:hover,
    .btn-block.mt-4:hover {
        background-color: #043d2c !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .btn-primary i, 
    .btn-primary-round i {
        color: #ffffff !important;
    }

    /* Section Button Page */
    .btn-panduan {
        background-color: #004d40;
        color: white;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
        border: none;
        display: inline-flex;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .btn-panduan:hover {
        color: white;
        background-color: #00695c; 
        transform: translateY(-5px); 
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
        text-decoration: none;
    }

    .btn-panduan:active {
        transform: translateY(-2px); 
    }

    /* Section Akreditasi */
    .accreditation-section {
        border-top: 1px solid #f0f0f0;
        padding: 40px 0; 
    }

    .logo-strip-container {
        overflow-x: auto; 
        overflow-y: hidden;
        padding: 10px 0;
    }
    .logo-strip {
        max-height: 80px; 
        width: auto;
        object-fit: contain;
        transition: opacity 0.3s;
    }
    .logo-strip:hover {
        opacity: 0.9;
    }

    @media (max-width: 768px) {
        .logo-strip {
            max-height: 50px; 
        }
    }

