/* Container Hero Slider */
.hero-slider-section {
    position: relative;
    padding: 40px 0;
    overflow: visible !important; /* Agar tombol panah navigasi tidak terpotong */
}

.hero-slider-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Flexbox Layout untuk Konten Slider */
.hero-slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
    gap: 30px;
}

.hero-slide-content {
    flex: 1;
    max-width: 55%;
    z-index: 2;
}

/* Gambar Dekan / Hero Image */
.hero-slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.hero-slide-image img {
    max-height: 420px;
    width: auto;
    object-fit: contain; /* Agar foto Dekan utuh & tidak terpotong */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

/* Tombol Navigasi Panah (Kiri & Kanan) */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-slider-nav:hover {
    background: #ffffff;
    color: #1e3a8a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Posisi Panah Keluar Sedikit Agar Rapi & Tidak Kena Gambar */
.hero-slider-nav.prev {
    left: 20px;
}

.hero-slider-nav.next {
    right: 20px;
}

/* Badge Nama Dekan */
.dekan-badge {
    position: absolute;
    bottom: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    text-align: center;
    color: #ffffff;
}