/* Index */
.fw-900 { font-weight: 900; }
.fw-800 { font-weight: 800; }
.ls-1 { letter-spacing: -1px; }
.article-card { transition: all 0.4s ease; }
.article-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important; }
.img-floating { animation: floating 3s ease-in-out infinite; }
@keyframes floating { 
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
.announcement-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.pulse { animation: pulse-animation 2s infinite; }
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(25, 135, 84, 0.4); }
    100% { box-shadow: 0 0 0 10px rgba(25, 135, 84, 0); }
}
.fw-900 { font-weight: 900; }
.text-gradient {
    background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    -webkit-text-fill-color: transparent;
}
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.rotate-45 { transform: rotate(45deg); }
.transition-up:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3) !important; }

/* Animations */
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-slow { animation: float 6s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pulse { animation: pulse-border 2s infinite; }
@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(25, 135, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
}


/* Navbar Modern */
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-link {
    font-weight: 600;
    color: var(--primary-green) !important;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--accent-green) !important;
}

/* Premium Footer Styles */
.footer-main {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.footer-brand-text {
    font-weight: 900;
    letter-spacing: -1px;
    color: #064e3b;
    font-size: 1.4rem;
}

.footer-list-title {
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-list-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #10b981;
    border-radius: 10px;
}

.footer-link-premium {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.footer-link-premium:hover {
    color: #10b981;
    transform: translateX(8px);
}

.footer-social-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f0fdf4;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-circle:hover {
    background: #10b981;
    color: white;
    transform: translateY(-5px);
}

.contact-box-footer {
    background: #f8fafc;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
    border-radius: 0 0 50px 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-green);
}

/* Card Jurusan Friendly */
.card-jurusan {
    border: none;
    border-radius: 24px;
    background: var(--white);
    padding: 40px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.card-jurusan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 94, 32, 0.1);
    background: var(--primary-green);
    color: white;
}

.card-jurusan i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 20px;
    transition: 0.3s;
}

.card-jurusan:hover i {
    color: white;
}

/* Modern Detail Jurusan - Premium Styles */
.jurusan-hero-section {
    position: relative;
    padding: 120px 0 180px;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 80px 80px;
    color: white;
}

.jurusan-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 78, 59, 0.3) 0%, rgba(6, 78, 59, 0.95) 100%);
    border-radius: 0 0 80px 80px;
}

.floating-stats-card {
    background: white;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    margin-top: -100px; /* Menarik kartu ke atas area hero */
    border: 1px solid #f1f5f9;
    position: relative;
    z-index: 10;
}

.career-tag {
    background: #ecfdf5;
    color: #064e3b;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-block;
    margin: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.career-tag:hover {
    background: #10b981;
    color: white;
    transform: scale(1.05);
}

/* Alumni Styles */
.alumni-card {
    background: #ffffff;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    padding: 35px;
    height: 100%;
    transition: all 0.4s ease;
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(16, 185, 129, 0.15);
}

.alumni-img-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #10b981;
    padding: 3px;
}

.alumni-quote {
    font-style: italic;
    color: #475569;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #ecfdf5;
}

/* Button Custom */
.btn-green {
    background-color: var(--primary-green);
    color: white;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-green:hover {
    background-color: var(--accent-green);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    color: white;
}
/* Hero Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.img-floating {
    animation: float 6s ease-in-out infinite;
}

/* Glassmorphism Stat Card */
.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: 0.3s;
}

.stat-card:hover {
    background: var(--primary-green);
    color: white !important;
}

.stat-card:hover h2, .stat-card:hover p {
    color: white !important;
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.bg-soft-green {
    background-color: #f0f7f2;
}

    
/* CSS Tambahan untuk menjamin header tetap di atas */
.main-header {
    top: 0;
    z-index: 1030; /* Prioritas tampilan di atas konten lain */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Memberikan padding pada body agar konten tidak langsung tertutup header saat awal load */
body {
    /* Sesuaikan tinggi ini jika header Anda lebih tinggi/rendah */
    padding-top: 0; 
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #198754;
}

/* Artikel Terkini Styles */
.article-card {
    background: #ffffff;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.article-card:hover {
    transform: translateY(-12px);
    border-color: #10b981;
    box-shadow: 0 40px 80px -20px rgba(16, 185, 129, 0.12);
}

.article-thumb {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-thumb img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #064e3b;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Detail Berita Styles */
.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #064e3b;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #10b981;
    color: white;
    transform: translateY(-3px);
}

.sidebar-card {
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    background: #ffffff;
}

/* All Agenda Styles */
.search-box-agenda {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.search-box-agenda:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.agenda-item-list {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    padding: 25px;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.agenda-item-list:hover {
    border-color: #10b981;
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.1);
}

.status-badge {
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* Homepage Announcement Preview */
.announcement-preview-card {
    background: #ffffff;
    border-radius: 30px;
    border-left: 6px solid #10b981;
    padding: 25px;
    transition: all 0.3s ease;
    border-top: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.announcement-preview-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.announcement-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Announcement Styles */
.announcement-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #f1f5f9;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.announcement-card:hover {
    border-color: #10b981;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.1);
}

.priority-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.bg-mendesak { background-color: #ef4444; } /* Merah */
.bg-penting { background-color: #f59e0b; }  /* Oranye */
.bg-normal { background-color: #10b981; }   /* Hijau */

/* Staff Profile Styles */
.staff-card {
    background: #ffffff;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.staff-card:hover {
    transform: translateY(-12px);
    border-color: #10b981;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.15);
}

.staff-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #10b981, #064e3b);
}

.staff-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
}

.staff-dept {
    font-size: 0.7rem;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

/* Student Statistics Styles */
.stats-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08);
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.progress-custom {
    height: 10px;
    border-radius: 100px;
    background-color: #f1f5f9;
}

/* Modern Emerald & Slate Theme (No Black) */
:root {
    --deep-emerald: #064e3b;
    --vibrant-emerald: #10b981;
    --soft-emerald: #ecfdf5;
    --slate-text: #334155;
    --light-gray: #f8fafc;
}

.premium-heading {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    color: var(--deep-emerald);
}

.bento-card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 40px;
    padding: 48px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
}

.bento-card-premium:hover {
    transform: translateY(-12px);
    border-color: var(--vibrant-emerald);
    box-shadow: 0 40px 80px -15px rgba(16, 185, 129, 0.1);
}

.icon-box-ultra {
    width: 72px;
    height: 72px;
    background: var(--soft-emerald);
    color: var(--vibrant-emerald);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 32px;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--soft-gray);
    color: var(--text-dark);
}

/* Hero Typography */
.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--primary-green);
}

/* Modern Card (Glassmorphism Light) */
.modern-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

/* Badge Friendly */
.badge-friendly {
    background: #e8f5e9;
    color: var(--primary-green);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}

/* Animasi Halus */
.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Berita */
/* News Portal Style (No Black) */


/* Sinkronisasi Hover Efek dengan Index & Jurusan */
.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(16, 185, 129, 0.15) !important;
}
.news-card:hover img {
    transform: scale(1.05);
}
.text-inherit {
    color: inherit;
    transition: 0.3s;
}
.text-inherit:hover {
    color: #10b981;
}

/* Sejarah */
/* Timeline Style */
.timeline-section {
    position: relative;
    padding: 50px 0;
}

.timeline-line {
    position: absolute;
    width: 4px;
    background: #e8f5e9;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: #10b981;
    border: 4px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.1);
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: #ffffff;
    border-radius: 25px;
    border: 1px solid #f1f5f9;
    transition: 0.4s;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .timeline-line { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-content { width: 85%; margin-left: 50px !important; }
}

/* Visi & Misi */
/* Visi Misi Premium Styles */
:root {
    --emerald-gradient: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
    --soft-emerald-bg: #f0fdf4;
}

.visi-hero-card {
    background: var(--emerald-gradient);
    border-radius: 50px;
    padding: 100px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(6, 78, 59, 0.25);
}

.visi-hero-card::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.misi-bento-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 35px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
}

.misi-bento-card:hover {
    transform: translateY(-15px);
    border-color: #10b981;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.05);
}

.icon-badge-modern {
    width: 60px;
    height: 60px;
    background: var(--soft-emerald-bg);
    color: #10b981;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Struktur Organisasi Premium */
/* Container Utama */
.org-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Kartu Pimpinan Tertinggi (Kabid) */
.card-top-management {
    background: linear-gradient(135deg, #064e3b 0%, #1a5c32 100%);
    color: white;
    border-radius: 40px;
    padding: 45px;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(6, 78, 59, 0.25);
    max-width: 550px;
    margin: 0 auto;
}

/* Kartu Staff & Wakasek */
.card-standard {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 32px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
}

.card-standard:hover {
    transform: translateY(-12px);
    border-color: #10b981;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
}

/* Foto Profil Bulat */
.img-container-premium {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: #ffffff;
    border: 2px solid #10b981;
}

.img-container-premium img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Garis Penghubung (Tree Line) */
.connector-vertical {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #10b981, #e2e8f0);
    margin: 0 auto;
}

/* Sarpras Modern Styles */
.facility-card {
    background: #ffffff;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.facility-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -20px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.facility-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.facility-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.facility-card:hover .facility-img-wrapper img {
    transform: scale(1.1);
}

.facility-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #064e3b;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-circle-sarpras {
    width: 45px;
    height: 45px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Achievement Premium Styles */
.achievement-card {
    background: #ffffff;
    border-radius: 35px;
    border: 1px solid #f1f5f9;
    padding: 35px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-12px);
    border-color: #10b981;
    box-shadow: 0 30px 60px -15px rgba(16, 185, 129, 0.12);
}

.medal-icon {
    width: 60px;
    height: 60px;
    background: #fffbeb;
    color: #d97706;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.achievement-year {
    position: absolute;
    top: 35px;
    right: 35px;
    font-weight: 800;
    color: #f1f5f9;
    font-size: 3rem;
    line-height: 1;
    z-index: 0;
}

.achievement-content {
    position: relative;
    z-index: 1;
}

.category-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Pesantren Modern Styles */
.pesantren-hero {
    background: linear-gradient(135deg, #064e3b 0%, #0f766e 100%);
    border-radius: 0 0 60px 60px;
    padding: 100px 0;
    color: white;
}

.program-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 35px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-12px);
    border-color: #10b981;
    box-shadow: 0 30px 60px -15px rgba(16, 185, 129, 0.15);
}

.icon-box-islamic {
    width: 65px;
    height: 65px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.quote-box {
    background: #f8fafc;
    border-left: 5px solid #10b981;
    padding: 30px;
    border-radius: 0 25px 25px 0;
    font-style: italic;
}

/* PPDB Modern Styles */
.ppdb-hero {
    background: radial-gradient(circle at top right, #ecfdf5, #ffffff);
    padding: 80px 0;
}

.registration-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 40px 100px -20px rgba(6, 78, 59, 0.05);
}

.form-label {
    font-weight: 700;
    color: #064e3b;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.form-control-modern {
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 18px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    background: #ffffff;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    outline: none;
}

.stepper-badge {
    width: 35px;
    height: 35px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 15px;
}

/* Agenda Modern Styles */
.agenda-card {
    background: #ffffff;
    border-radius: 25px;
    border: 1px solid #f1f5f9;
    padding: 20px;
    transition: all 0.4s ease;
}

.agenda-card:hover {
    background: #f0fdf4;
    border-color: #10b981;
    transform: translateX(10px);
}

.date-box {
    width: 70px;
    height: 80px;
    background: #10b981;
    color: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.date-box .day { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.date-box .month { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; opacity: 0.9; }

.agenda-category {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #10b981;
    letter-spacing: 1px;
}

/* Alumni Testimonial Index Styles */
.alumni-index-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    height: 100%;
}

.alumni-index-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.quote-icon-modern {
    width: 50px;
    height: 50px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Mencegah gambar memotong teks di layar sedang */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem !important;
    }
    .hero-img-wrapper img {
        max-width: 120% !important;
    }
}

/* Mengatur hierarki tumpukan elemen */
.hero-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-floating {
    /* Pastikan gambar tidak memiliki margin negatif yang ekstrem */
    margin-right: -500px; 
}

/* Menambah ruang agar teks tidak terlalu mepet ke gambar */
.col-lg-6 {
    position: relative;
    z-index: 5; /* Teks harus berada di atas elemen dekoratif apa pun */
}
/* Efek Transparan Gradasi pada Bagian Bawah Gambar */
.img-student-mask {
    position: relative;
    z-index: 2;
    /* Menjaga ukuran gambar tetap besar sesuai preferensi sebelumnya */
    width: 120%; 
    max-width: 500px;
    height: auto;
    
    /* Properti Masking Utama */
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 65%,    /* Atas sampai 65% tetap tajam */
        rgba(0,0,0,0) 100%    /* Bawah memudar total menjadi transparan */
    );
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 65%, 
        rgba(0,0,0,0) 100%
    );

    /* Penyesuaian agar posisi tetap keren */
    object-fit: cover;
    display: block;
    margin-right: -100px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Memastikan animasi melayang tetap aktif */
.img-floating {
    animation: float 6s ease-in-out infinite;
}

/* Admin */
/* Premium Admin UI Variables */
:root {
    --adm-emerald: #10b981;
    --adm-dark: #064e3b;
    --adm-slate: #64748b;
    --adm-bg: #f8fafc;
}

#sidebar {
    background: #ffffff;
    border-right: 1px solid #f1f5f9;
    padding: 40px 24px;
    height: 100vh;
    position: sticky;
    top: 0;
}

/* Nav Link Hover Animation */
.nav-pills .nav-link {
    color: var(--adm-slate);
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 20px;
    margin-bottom: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-pills .nav-link i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.nav-pills .nav-link:hover:not(.active) {
    background-color: #f0fdf4;
    color: var(--adm-emerald);
    transform: translateX(8px);
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Bento Stat Cards */
.bento-stat-card {
    background: #ffffff;
    border-radius: 35px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    transition: all 0.5s ease;
}

.bento-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(16, 185, 129, 0.15);
    border-color: var(--adm-emerald);
}

.icon-box-premium {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}