body {
        font-family: 'Roboto', sans-serif;
    }
    
    /* === GLASSMORPHISM NAVBAR === */
.navbar {
    background: rgba(236, 240, 241, 0.85); /* Concrete light dengan transparansi */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(236, 240, 241, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* === ACTIVE INDICATOR ANIMATION === */
.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #e74c3c !important;
}

.active-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: #e74c3c;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover .active-indicator,
.nav-link.active .active-indicator {
    transform: translateX(-50%) scaleX(1);
}

/* === DROPDOWN MODERN === */
.dropdown-menu {
    border-radius: 8px !important;
    margin-top: 8px !important;
    padding: 8px 0;
    background: #fff;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-weight: 400;
    color: #34495e;
    border-radius: 4px;
    margin: 0 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #ecf0f1;
    color: #e74c3c;
    padding-left: 20px; /* Slide effect */
}

/* === HOVER DROPDOWN DESKTOP === */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-menu {
        margin-top: 12px !important;
    }
}

/* === MOBILE OPTIMIZATION === */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(236, 240, 241, 0.98);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-item {
        margin: 4px 0;
    }
    
    .nav-link {
        padding: 12px 16px !important;
        border-radius: 8px;
    }
    
    /* Dropdown mobile: full width & easy tap */
    .dropdown-menu {
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0 !important;
    }
    
    .dropdown-item {
        padding: 14px 20px !important;
        margin: 4px 0;
        background: #fff;
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    /* Hide arrow on mobile dropdown toggle */
    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
    
    /* CTA Button full width on mobile */
    .btn-custom {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

/* === FIX GAP DROPDOWN DESKTOP === */
@media (min-width: 992px) {
/* 1. Pastikan dropdown menempel tanpa jarak */
.dropdown-menu {
    margin-top: 0 !important; 
    border-top: 1px solid transparent; /* Mencegah flicker border */
}

/* 2. Buat "Jembatan Transparan" (Pseudo-element) */
/* Ini menciptakan area tak terlihat setinggi 10px di atas dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px; /* Menarik area ke atas menimpa celah */
    left: 0;
    width: 100%;
    height: 10px; /* Tinggi jembatan */
    background: transparent; /* Tidak terlihat */
}

/* 3. Aktifkan Hover */
.dropdown:hover .dropdown-menu {
    display: block;
    /* Opsional: Tambahkan animasi muncul */
    animation: slideDown 0.2s ease; 
}
}

/* === CUSTOM BUTTON === */
.btn-custom {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #a93226);
    color: white !important;
}

/* === TOGGLER ICON CUSTOM === */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === LOGO HOVER === */
.navbar-logo:hover {
    transform: scale(1.05);
}

.hero-section {
    background-color: #2c3e50; 
    color: #111;
    padding: 100px 0;
}

.feature-icon {
    font-size: 2.5rem;
    color: #95a5a6; 
    margin-bottom: 1rem;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-custom {
    background-color: #e74c3c; 
    color: white;
    border-radius: 0; 
    padding: 10px 30px;
    font-weight: bold;
    border: none;
}

.btn-custom:hover {
    background-color: #c0392b;
    color: white;
}

.footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding-top: 50px;
}

/* Dropdown Styling */
.dropdown-menu {
    border-radius: 0; 
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background-color: #ecf0f1;
    color: #2c3e50;
}
.text-brand-red {color: red;}
.text-bold {font-weight: 700;}
.text-shadow {text-shadow: 6px 4px 3px rgba(0, 0, 0, 0.21);}
.text-italic {font-style: italic;}
ul.li {margin-left: 1.5em;list-style: none}
ul.li li {padding-bottom: 10px}
ul.li li:before {content: '\f061'; /* Kode untuk icon Font Awesome (fa-arrow-right) */font-family: 'Font Awesome 5 Free'; /* Pastikan menggunakan FontAwesome 5 atau lebih baru */font-weight: 900; /* Menentukan apakah ikon bold atau tidak */float: left;margin-left: -1.5em;color: #35a498}
.tengah {float: none; margin: 0 auto;}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@media (max-width: 991px) {
    #tentang { text-align: center; }
    #tentang .col-lg-6[style*="padding-left"] { padding-left: 0 !important; }
    #tentang .row > div:last-child { margin: 0 auto; }
}
.judul {font-weight: 800; color: #1a1a2e; line-height: 1.3; margin: 0 0 20px 0; letter-spacing: -0.5px;}
.box-img { background: #fff; height: 150px; display: flex; justify-content: center; align-items: center; border: 1px solid #eaeaea; border-radius: 10px; box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.10); margin-bottom: 15px;}
/*testimonial*/
#emaxTestimonialSlider {
    font-family: "Nunito Sans", Poppins, Arial, sans-serif;
    background: linear-gradient(135deg, #f5fbfd, #ffffff);
    border-radius: 24px;
    padding: 40px 25px 55px;
    box-shadow: 0 25px 60px rgba(13, 71, 161, 0.08);
    position: relative;
    overflow: hidden;
}

#emaxTestimonialSlider .emax-slider-track {
    position: relative;
}

#emaxTestimonialSlider .emax-slide {
    opacity: 0;
    transform: translate3d(40px, 0, 0) scale(0.98);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

#emaxTestimonialSlider .emax-slide.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    position: relative;
}

#emaxTestimonialSlider .emax-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4fbff 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 36, 56, 0.08);
    border: 1px solid rgba(49, 164, 185, 0.15);
}

#emaxTestimonialSlider .emax-card p {
    font-size: 16px;
    font-style: italic;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 20px;
}

#emaxTestimonialSlider .emax-card h4 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--accent, #31A4B9);
    margin: 0;
    text-transform: uppercase;
}

#emaxTestimonialSlider .emax-slider-controls {
    position: absolute;
    top: 12px;
    right: 18px;
}

#emaxTestimonialSlider .emax-slider-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

#emaxTestimonialSlider .emax-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(49, 164, 185, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

#emaxTestimonialSlider .emax-dot.is-active {
    background: var(--accent, #31A4B9);
    width: 22px;
    height: 6px;
}

@media (max-width: 768px) {
    #emaxTestimonialSlider {
        padding: 30px 20px 60px;
    }

    #emaxTestimonialSlider .emax-card {
        padding: 25px;
    }

    #emaxTestimonialSlider .emax-slider-track {
        min-height: 360px;
    }
}

.footer-logo-box img {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.section-padding {
    padding: 80px 0;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 0.3s ease;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive untuk HP */
@media (max-width: 576px) {
    .modal-content {
        max-width: 95%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.box {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    border-top: 5px solid #be1e2d;
    box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.10);
    -webkit-box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.10);
    -moz-box-shadow: 1px 2px 5px 1px rgba(0,0,0,0.10);
    margin-bottom: 30px;
    padding: 20px 40px;
}

.exhibitor-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
.exhibitor-grid .box-img {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.exhibitor-grid .box-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@media (max-width: 1200px) {
    .exhibitor-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
    .exhibitor-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
    .exhibitor-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .exhibitor-grid .box-img { height: 100px; padding: 10px; }
}
.white-popup {
    position: relative;
    padding: 20px;
    width: auto;
    max-width: 600px;
    margin: 20px auto;
    background: #fff;
}
.mfp-close-btn-in .mfp-close {
    color: #fff;
    background: #000;
    border-radius: 50%;
    top: -20px;
    right: -20px;
    line-height: 48px;
}

/* default: sembunyikan semua */
    span[data-lang] {
    display: none;
}

.lang-en span[data-lang="en"],
.lang-vi span[data-lang="vi"] {
    display: inline;
}