/* assets/css/style.css */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stats-card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stats-card h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0;
    font-weight: bold;
}

.btn {
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.table {
    border-radius: 10px;
    overflow: hidden;
}

.table thead th {
    border-bottom: none;
}

.badge {
    padding: 5px 10px;
    font-weight: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-card h2 {
        font-size: 1.8rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }

/* Modern & Dynamic Styling */
:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --accent-color: #3b82f6;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

body {
    background: var(--bg-gradient);
    font-family: 'Inter', sans-serif;
    color: #1e293b;
}

/* Hero Section Animation */
.hero-section {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.8)), 
                url('../images/pattern-bg.png');
    background-size: cover;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Card Improvements */
.custom-card {
    border: none;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Unit Pendidikan Icon Animation */
.unit-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #eff6ff;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.custom-card:hover .unit-icon {
    background: var(--primary-color);
    color: white !important;
    transform: rotate(360deg);
}

/* Agenda List Styling */
.agenda-item {
    border-left: 4px solid var(--primary-color);
    margin-bottom: 10px;
    transition: background 0.3s;
}

.agenda-item:hover {
    background: #f1f5f9;
}

/* Responsive Image Hover */
.news-img-container {
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}

.news-img {
    transition: transform 0.5s ease;
}

.custom-card:hover .news-img {
    transform: scale(1.1);
}

/* Animations Trigger */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --primary: #0f172a;
    --accent: #2563eb;
    --success: #059669;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 2px 4px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: #334155;
    overflow-x: hidden;
}

/* Luxury Hero Section */
.hero-wrapper {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at top right, #e0e7ff, transparent),
                radial-gradient(circle at bottom left, #f1f5f9, transparent);
    border-radius: 40px;
    margin-top: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #0f172a, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Card Effect */
.card-modern {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Icon Box */
.icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

/* Agenda Date Badge */
.agenda-date {
    background: white;
    border-radius: 15px;
    padding: 10px;
    min-width: 70px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
}

/* News Image Overlay */
.img-zoom-container {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.img-zoom-container img {
    transition: transform 0.7s ease;
}

.card-modern:hover .img-zoom-container img {
    transform: scale(1.15);
}

/* Button Styling */
.btn-modern {
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-modern {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-primary-modern:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}
}