:root {
            --primary-green: #0f6f3e;
            --accent-green: #22c55e;
            --gradient-1: linear-gradient(135deg, #0f6f3e 0%, #22c55e 100%);
            --gradient-2: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
            --glow-green: rgba(34, 197, 94, 0.4);
        }
        
        [data-bs-theme="dark"] {
            --bs-body-bg: #0a0f0d;
            --bs-body-color: #e5e7eb;
        }
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        /* Glassmorphism Effect */
        .glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        [data-bs-theme="dark"] .glass {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Gradient Text */
        .gradient-text {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Hover Glow Button */
        .btn-glow {
            background: var(--gradient-1);
            border: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px var(--glow-green);
            color: white;
        }
        
        .btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .btn-glow:hover::before {
            left: 100%;
        }
        
        /* Animated Background */
        .hero-section {
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -250px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            bottom: -150px;
            left: -50px;
            animation: float 8s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        /* Cards with 3D Effect */
        .card-3d {
            transition: all 0.3s ease;
            border: none;
            background: white;
        }
        
        [data-bs-theme="dark"] .card-3d {
            background: #1a1a1a;
        }
        
        .card-3d:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
        }
        
        /* Icon Box */
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--gradient-2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            position: relative;
            animation: pulse-icon 2s ease-in-out infinite;
        }
        
        @keyframes pulse-icon {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Timeline Style */
        .timeline-item {
            position: relative;
            padding-left: 40px;
            padding-bottom: 20px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 10px;
            bottom: -10px;
            width: 2px;
            background: var(--gradient-1);
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 5px;
            width: 12px;
            height: 12px;
            background: var(--accent-green);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
        }
        
        .timeline-item:last-child::before {
            display: none;
        }
        
        /* Form Styling */
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-green);
            box-shadow: 0 0 0 0.25rem rgba(34, 197, 94, 0.25);
        }
        
        /* Badge Custom */
        .badge-custom {
            background: var(--gradient-2);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
        }
        
        /* Rektor Card */
        .rektor-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        }
        
        [data-bs-theme="dark"] .rektor-card {
            background: #1a1a1a;
        }
        
        .rektor-avatar {
            width: 150px;
            height: 150px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
        }
        
        /* Quote Style */
        .quote-mark {
            font-size: 4rem;
            color: var(--accent-green);
            opacity: 0.3;
            line-height: 0;
        }
        
        /* Emoji Animation */
        @keyframes bounce-emoji {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .bounce-emoji {
            display: inline-block;
            animation: bounce-emoji 2s ease-in-out infinite;
        }
        
        /* Sticky Header */
        .navbar {
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        [data-bs-theme="dark"] .navbar {
            background: rgba(26, 26, 26, 0.98) !important;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }
        
        [data-bs-theme="dark"] .navbar.scrolled {
            background: rgba(26, 26, 26, 0.98) !important;
        }
        
        .navbar-brand h5 {
            color: var(--primary-green);
        }
        
        [data-bs-theme="dark"] .navbar-brand h5 {
            color: var(--accent-green);
        }
        
        .navbar-nav .nav-link {
            color: #374151;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-green);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        [data-bs-theme="dark"] .navbar-nav .nav-link {
            color: #e5e7eb;
        }
        
        [data-bs-theme="dark"] .navbar-nav .nav-link:hover {
            color: var(--accent-green);
        }
        
        /* Success Modal */
        .success-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            animation: scale-in 0.5s ease-out;
        }
        
        @keyframes scale-in {
            0% { transform: scale(0); }
            100% { transform: scale(1); }
        }
        
        /* Scrollbar Custom */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        [data-bs-theme="dark"] ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-green);
        }
        
        /* Section Title */
        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }
        
        /* Parallax Effect */
        .parallax-section {
            position: relative;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }