 :root {
            --primary: #2c3e50;
            --secondary: #2b41c0;
            --accent: #3498db;
            --light: #f8f9fa;
            --dark: #2c3e50;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: #333;
        }
        
        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            background-color: white !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
        }
        
        .navbar-brand span {
            color: var(--secondary);
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--dark);
        }
        
        .nav-link:hover {
            color: var(--secondary);
        }
        
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: #2b41c0;
            border-color: #2b41c0;
        }
        
        .btn-outline-primary {
            color: var(--secondary);
            border-color: var(--secondary);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        .page-header {
            padding: 120px 0 80px;
            background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            margin-top: 15px;
        }
        
        .section-title.text-center:after {
            margin-left: auto;
            margin-right: auto;
        }
        
        .about-content {
            padding: 80px 0;
        }
        
        .vision-mission {
            background-color: var(--light);
            padding: 80px 0;
        }
        
        .value-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
            background: white;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .team-section {
            padding: 80px 0;
        }
        
        .team-card {
            text-align: center;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-title:after {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background: var(--secondary);
            margin-top: 10px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
        }
        
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            width: 2px;
            height: 100%;
            background: var(--secondary);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            margin-bottom: 40px;
            position: relative;
            width: 50%;
            padding-right: 40px;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 40px;
            padding-right: 0;
        }
        
        .timeline-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .timeline-date {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        
        .timeline-item:after {
            content: '';
            position: absolute;
            top: 20px;
            right: -10px;
            width: 20px;
            height: 20px;
            background: var(--secondary);
            border-radius: 50%;
        }
        
        .timeline-item:nth-child(even):after {
            left: -10px;
            right: auto;
        }
        
        .legalitas-card {
            border-left: 4px solid var(--secondary);
            transition: all 0.3s ease;
        }
        
        .legalitas-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .legalitas-icon {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        @media (max-width: 767px) {
            .timeline:before {
                left: 20px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 50px;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
                padding-left: 50px;
            }
            
            .timeline-item:after {
                left: 10px;
                right: auto;
            }
            
            .timeline-item:nth-child(even):after {
                left: 10px;
            }
        }
        /* ==================== ANIMASI UMUM ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi untuk elemen yang muncul dari kiri */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animasi untuk elemen yang muncul dari kanan */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animasi untuk scaling */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Animasi hover untuk kartu */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Animasi untuk tombol */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:hover:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Animasi untuk navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Animasi untuk icon */
.value-icon, .legalitas-icon {
    transition: all 0.5s ease;
}

.card:hover .value-icon,
.card:hover .legalitas-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent);
}

/* Animasi untuk social icons */
.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

/* Animasi untuk timeline */
.timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi untuk gambar */
.img-fluid {
    transition: all 0.5s ease;
}

.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Animasi untuk list items */
.list-unstyled li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.list-unstyled li.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animasi berurutan untuk list */
.list-unstyled li:nth-child(1) { transition-delay: 0.1s; }
.list-unstyled li:nth-child(2) { transition-delay: 0.2s; }
.list-unstyled li:nth-child(3) { transition-delay: 0.3s; }
.list-unstyled li:nth-child(4) { transition-delay: 0.4s; }
.list-unstyled li:nth-child(5) { transition-delay: 0.5s; }

/* Animasi untuk page header */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(43, 65, 192, 0.7), rgba(52, 152, 219, 0.7));
    opacity: 0;
    transition: opacity 1s ease;
}

.page-header.loaded:before {
    opacity: 1;
}

.page-header h1, .page-header p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.page-header.loaded h1, .page-header.loaded p {
    opacity: 1;
    transform: translateY(0);
}

/* Animasi untuk progress bar (jika diperlukan) */
.progress-bar {
    transition: width 1.5s ease-in-out;
}

/* Leadership Section Styles */
.leadership-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.leadership-img-container {
    height: 50%;
    overflow: hidden;
    position: relative;
    padding-left: 50px;
    padding-top: 20px;
}

.leadership-img {
    transition: transform 0.5s ease;
}

.leadership-card:hover .leadership-img {
    transform: scale(1.05);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .leadership-img-container {
        height: 300px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}