  <style>
        body {
            box-sizing: border-box;
        }
        
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .main-wrapper {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            background: linear-gradient(180deg, #0a1f3d 0%, #1a3a5c 50%, #2d5a7b 100%);
            position: relative;
        }

        /* Animated Background */
        .ocean-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.15;
        }

        .wave-animation {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C150,100 350,0 600,60 C850,120 1050,60 1200,60 L1200,120 L0,120 Z' fill='%2308d9ff'/%3E%3C/svg%3E");
            background-size: 50% 100%;
            animation: wave-move 15s linear infinite;
        }

        @keyframes wave-move {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Bubbles */
        .bubbles-container {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .bubble {
            position: absolute;
            bottom: -100px;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(8, 217, 255, 0.2));
            border-radius: 50%;
            opacity: 0.6;
            animation: bubble-rise 20s infinite ease-in;
        }

        .bubble:nth-child(1) { left: 5%; width: 60px; height: 60px; animation-delay: 0s; }
        .bubble:nth-child(2) { left: 15%; width: 40px; height: 40px; animation-delay: 3s; }
        .bubble:nth-child(3) { left: 30%; width: 50px; height: 50px; animation-delay: 6s; }
        .bubble:nth-child(4) { left: 45%; width: 45px; height: 45px; animation-delay: 2s; }
        .bubble:nth-child(5) { left: 60%; width: 55px; height: 55px; animation-delay: 5s; }
        .bubble:nth-child(6) { left: 75%; width: 35px; height: 35px; animation-delay: 8s; }
        .bubble:nth-child(7) { left: 90%; width: 48px; height: 48px; animation-delay: 4s; }
        .bubble:nth-child(8) { left: 25%; width: 42px; height: 42px; animation-delay: 7s; }

        @keyframes bubble-rise {
            0% {
                bottom: -100px;
                transform: translateX(0);
                opacity: 0;
            }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% {
                bottom: 110%;
                transform: translateX(100px);
                opacity: 0;
            }
        }

        .content-wrapper {
            position: relative;
            z-index: 1;
        }

        /* Navbar */
        .navbar {
            background: rgba(10, 31, 61, 0.95) !important;
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 30px rgba(8, 217, 255, 0.3);
            border-bottom: 2px solid rgba(8, 217, 255, 0.3);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 31, 61, 0.98) !important;
            box-shadow: 0 6px 40px rgba(8, 217, 255, 0.5);
            padding: 0.5rem 0;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.7rem;
            color: #08d9ff !important;
            text-shadow: 0 0 25px rgba(8, 217, 255, 0.6);
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            text-shadow: 0 0 35px rgba(8, 217, 255, 0.9);
            transform: scale(1.05);
        }

        .navbar-brand i {
            animation: ship-float 3s ease-in-out infinite;
        }

        @keyframes ship-float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-5px) rotate(5deg); }
        }

        .nav-link {
            font-weight: 600;
            color: #ffffff !important;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem !important;
            margin: 0 0.2rem;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #08d9ff, #06a6cc);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            box-shadow: 0 0 10px rgba(8, 217, 255, 0.8);
        }

        .nav-link:hover::before {
            width: 85%;
        }

        .nav-link:hover {
            color: #08d9ff !important;
            transform: translateY(-2px);
        }

        .dropdown-menu {
            background: rgba(10, 31, 61, 0.97);
            border: 2px solid rgba(8, 217, 255, 0.4);
            backdrop-filter: blur(15px);
            box-shadow: 0 10px 40px rgba(8, 217, 255, 0.3);
            animation: dropdown-slide 0.3s ease;
        }

        @keyframes dropdown-slide {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-item {
            color: #ffffff !important;
            transition: all 0.3s ease;
            padding: 0.8rem 1.5rem;
        }

        .dropdown-item:hover {
            background: rgba(8, 217, 255, 0.2);
            color: #08d9ff !important;
            padding-left: 2rem;
            transform: translateX(5px);
        }

        .dropdown-item i {
            margin-right: 10px;
            color: #08d9ff;
        }

        /* Hero Carousel */
        .hero-carousel {
            margin-top: 85px;
        }

        .carousel-item {
            height: 650px;
            position: relative;
            overflow: hidden;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 31, 61, 0.85) 0%, rgba(8, 217, 255, 0.4) 100%);
            z-index: 1;
        }

        .carousel-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            animation: zoom-effect 25s ease infinite;
        }

        @keyframes zoom-effect {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        .carousel-caption {
            z-index: 10;
            bottom: 50%;
            transform: translateY(50%);
        }

        .carousel-caption h1 {
            font-size: 4rem;
            font-weight: 900;
            text-shadow: 0 0 40px rgba(8, 217, 255, 0.8);
            animation: slide-down 1s ease;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .carousel-caption p {
            font-size: 1.7rem;
            text-shadow: 0 0 25px rgba(8, 217, 255, 0.6);
            animation: slide-up 1s ease 0.3s backwards;
            color: #ffffff;
        }

        @keyframes slide-down {
            from {
                opacity: 0;
                transform: translateY(-60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slide-up {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .floating-icon {
            position: absolute;
            font-size: 4rem;
            color: #08d9ff;
            filter: drop-shadow(0 0 25px rgba(8, 217, 255, 0.8));
            z-index: 10;
            animation: float-icon 7s ease-in-out infinite;
        }

        @keyframes float-icon {
            0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
            25% { transform: translateY(-25px) translateX(15px) rotate(10deg); }
            50% { transform: translateY(0) translateX(30px) rotate(0deg); }
            75% { transform: translateY(-25px) translateX(15px) rotate(-10deg); }
        }

        /* News Ticker */
        .news-ticker-wrap {
            background: linear-gradient(135deg, rgba(8, 217, 255, 0.25), rgba(10, 31, 61, 0.85));
            border-radius: 20px;
            padding: 1.5rem 2rem;
            margin: 3rem 0;
            box-shadow: 0 10px 50px rgba(8, 217, 255, 0.3);
            border: 2px solid rgba(8, 217, 255, 0.4);
            overflow: hidden;
        }

        .news-ticker {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            height: 45px;
        }

        .news-ticker-content {
            display: inline-block;
            padding-left: 100%;
            animation: ticker-scroll 40s linear infinite;
        }

        @keyframes ticker-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .news-ticker-item {
            display: inline-block;
            padding: 0 4rem;
            font-weight: 700;
            font-size: 1.1rem;
            color: #ffffff;
        }

        .news-ticker-item i {
            color: #08d9ff;
            margin-right: 12px;
            animation: pulse-icon 2.5s ease infinite;
        }

        @keyframes pulse-icon {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); }
        }

        /* Section Styles */
        .section-title {
            font-weight: 900;
            font-size: 3rem;
            margin-bottom: 3.5rem;
            position: relative;
            display: inline-block;
            color: #ffffff;
            text-shadow: 0 0 30px rgba(8, 217, 255, 0.7);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 6px;
            background: linear-gradient(90deg, #08d9ff, #06a6cc);
            border-radius: 3px;
            box-shadow: 0 0 25px rgba(8, 217, 255, 0.8);
        }

        .section-title i {
            color: #08d9ff;
            margin-right: 20px;
        }

        /* Cards */
        .card {
            border: none;
            border-radius: 25px;
            background: linear-gradient(145deg, rgba(26, 58, 92, 0.9), rgba(10, 31, 61, 0.95));
            box-shadow: 0 15px 50px rgba(8, 217, 255, 0.25);
            transition: all 0.5s ease;
            overflow: hidden;
            height: 100%;
            border: 2px solid rgba(8, 217, 255, 0.3);
        }

        .card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 25px 70px rgba(8, 217, 255, 0.5);
            border-color: rgba(8, 217, 255, 0.7);
        }

        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .card:hover .card-img-top {
            transform: scale(1.2) rotate(3deg);
        }

        .card-title {
            font-weight: 800;
            color: #08d9ff;
            font-size: 1.4rem;
            text-shadow: 0 0 15px rgba(8, 217, 255, 0.5);
        }

        .card-text {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        .badge-date {
            background: linear-gradient(135deg, #08d9ff, #06a6cc);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-size: 0.9rem;
            box-shadow: 0 5px 20px rgba(8, 217, 255, 0.5);
            font-weight: 700;
        }

        /* Program Cards */
        .program-card {
            background: linear-gradient(145deg, rgba(8, 217, 255, 0.18), rgba(10, 31, 61, 0.9));
            border-radius: 25px;
            padding: 3rem 2rem;
            box-shadow: 0 15px 60px rgba(8, 217, 255, 0.25);
            transition: all 0.5s ease;
            border: 2px solid rgba(8, 217, 255, 0.35);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(8, 217, 255, 0.15) 0%, transparent 70%);
            animation: rotate-gradient 25s linear infinite;
        }

        @keyframes rotate-gradient {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .program-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 80px rgba(8, 217, 255, 0.45);
            border-color: rgba(8, 217, 255, 0.7);
        }

        .program-icon {
            width: 110px;
            height: 110px;
            background: linear-gradient(135deg, #08d9ff, #06a6cc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: 0 15px 40px rgba(8, 217, 255, 0.6);
            animation: bounce-icon 3.5s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        @keyframes bounce-icon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .program-icon i {
            font-size: 3rem;
            color: white;
        }

        .program-card h4 {
            color: #08d9ff;
            font-weight: 800;
            position: relative;
            z-index: 1;
            font-size: 1.5rem;
            text-shadow: 0 0 20px rgba(8, 217, 255, 0.5);
        }

        .program-card p {
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 1;
            line-height: 1.8;
        }

        /* Vision Mission */
        .vision-card {
            background: linear-gradient(135deg, rgba(8, 217, 255, 0.2), rgba(10, 31, 61, 0.85));
            border-radius: 25px;
            padding: 0.5rem 3rem;
            box-shadow: 0 20px 60px rgba(8, 217, 255, 0.3);
            border: 2px solid rgba(8, 217, 255, 0.4);
            margin-bottom: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .vision-card::before {
            content: '⚓';
            position: absolute;
            font-size: 15rem;
            opacity: 0.05;
            right: -50px;
            top: 50%;
            transform: translateY(-50%) rotate(-15deg);
        }

        .vision-card h3 {
            color: #08d9ff;
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 20px rgba(8, 217, 255, 0.6);
        }

        .vision-card p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.15rem;
            line-height: 1.9;
            position: relative;
            z-index: 1;
        }

        .mission-list {
            list-style: none;
            padding: 0;
        }

        .mission-list li {
            padding: 1.2rem 1.5rem;
            background: rgba(8, 217, 255, 0.1);
            border-left: 5px solid #08d9ff;
            margin-bottom: 1.2rem;
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.95);
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(8, 217, 255, 0.15);
        }

        .mission-list li:hover {
            background: rgba(8, 217, 255, 0.2);
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(8, 217, 255, 0.3);
        }

        .mission-list li i {
            color: #08d9ff;
            margin-right: 15px;
            font-size: 1.3rem;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, rgba(8, 217, 255, 0.18), rgba(10, 31, 61, 0.6));
            padding: 5rem 0;
            margin: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '⚓';
            position: absolute;
            font-size: 25rem;
            opacity: 0.04;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: spin-slow 40s linear infinite;
        }

        @keyframes spin-slow {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .stat-card {
            text-align: center;
            padding: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .stat-icon {
            font-size: 3.5rem;
            color: #08d9ff;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 25px rgba(8, 217, 255, 0.8));
            animation: bounce-stat 2.5s ease infinite;
        }

        @keyframes bounce-stat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: #08d9ff;
            text-shadow: 0 0 35px rgba(8, 217, 255, 0.8);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-top: 0.5rem;
            font-weight: 700;
        }

        /* Gallery */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(8, 217, 255, 0.25);
            border: 2px solid rgba(8, 217, 255, 0.3);
            margin-bottom: 2rem;
            height: 300px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 70px rgba(8, 217, 255, 0.5);
            border-color: rgba(8, 217, 255, 0.7);
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.15);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(8, 217, 255, 0.7), rgba(10, 31, 61, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 3rem;
            color: white;
        }

        /* Video Section */
        .video-card {
            background: linear-gradient(145deg, rgba(26, 58, 92, 0.9), rgba(10, 31, 61, 0.95));
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 60px rgba(8, 217, 255, 0.3);
            border: 2px solid rgba(8, 217, 255, 0.35);
            transition: all 0.4s ease;
            margin-bottom: 2rem;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 80px rgba(8, 217, 255, 0.5);
        }

        .video-thumbnail {
            position: relative;
            height: 250px;
            background: linear-gradient(135deg, #08d9ff, #06a6cc);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-thumbnail::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cpath fill='%231a3a5c' opacity='0.3' d='M0,200 Q300,100 600,200 T1200,200 L1200,600 L0,600 Z'/%3E%3C/svg%3E");
            background-size: cover;
        }

        .play-btn {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .play-btn:hover {
            transform: scale(1.15);
            background: white;
            box-shadow: 0 10px 40px rgba(8, 217, 255, 0.6);
        }

        .play-btn i {
            font-size: 2rem;
            color: #08d9ff;
            margin-left: 5px;
        }

        /* Facility Cards */
        .facility-card {
            background: linear-gradient(145deg, rgba(8, 217, 255, 0.15), rgba(10, 31, 61, 0.9));
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 12px 45px rgba(8, 217, 255, 0.25);
            border: 2px solid rgba(8, 217, 255, 0.3);
            transition: all 0.4s ease;
            height: 100%;
        }

        .facility-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 65px rgba(8, 217, 255, 0.45);
            border-color: rgba(8, 217, 255, 0.6);
        }

        .facility-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #08d9ff, #06a6cc);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 35px rgba(8, 217, 255, 0.5);
            transition: all 0.4s ease;
        }

        .facility-card:hover .facility-icon {
            transform: rotateY(360deg);
        }

        .facility-icon i {
            font-size: 2.5rem;
            color: white;
        }

        .facility-card h5 {
            color: #08d9ff;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Agenda Timeline */
        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #08d9ff, #06a6cc);
            box-shadow: 0 0 20px rgba(8, 217, 255, 0.6);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 20px;
            width: 25px;
            height: 25px;
            background: #08d9ff;
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 25px rgba(8, 217, 255, 0.8);
            z-index: 2;
            animation: pulse-timeline 2s ease infinite;
        }

        @keyframes pulse-timeline {
            0%, 100% { box-shadow: 0 0 25px rgba(8, 217, 255, 0.8); }
            50% { box-shadow: 0 0 40px rgba(8, 217, 255, 1); }
        }

        .timeline-content {
            width: 45%;
            padding: 2rem;
            background: linear-gradient(145deg, rgba(8, 217, 255, 0.15), rgba(10, 31, 61, 0.9));
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(8, 217, 255, 0.3);
            border: 2px solid rgba(8, 217, 255, 0.35);
            position: relative;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 55%;
        }

        .timeline-date {
            background: linear-gradient(135deg, #08d9ff, #06a6cc);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            display: inline-block;
            font-weight: 700;
            margin-bottom: 1rem;
            box-shadow: 0 5px 20px rgba(8, 217, 255, 0.5);
        }

        .timeline-content h5 {
            color: #08d9ff;
            font-weight: 800;
            margin-bottom: 0.8rem;
        }

        .timeline-content p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
        }

        /* Ekskul Cards */
        .ekskul-card {
            background: linear-gradient(145deg, rgba(26, 58, 92, 0.9), rgba(10, 31, 61, 0.95));
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(8, 217, 255, 0.25);
            border: 2px solid rgba(8, 217, 255, 0.3);
            transition: all 0.5s ease;
            height: 100%;
        }

        .ekskul-card:hover {
            transform: translateY(-15px) rotate(2deg);
            box-shadow: 0 25px 70px rgba(8, 217, 255, 0.5);
            border-color: rgba(8, 217, 255, 0.7);
        }

        .ekskul-img {
            height: 220px;
            background: linear-gradient(135deg, #08d9ff, #06a6cc);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .ekskul-img::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse-bg 3s ease infinite;
        }

        @keyframes pulse-bg {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .ekskul-img i {
            font-size: 5rem;
            color: white;
            z-index: 1;
        }

        .ekskul-body {
            padding: 2rem;
        }

        .ekskul-body h5 {
            color: #08d9ff;
            font-weight: 800;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #08d9ff, #06a6cc);
            border: none;
            padding: 1rem 3rem;
            border-radius: 35px;
            font-weight: 800;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(8, 217, 255, 0.4);
            position: relative;
            overflow: hidden;
            font-size: 1.05rem;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 350px;
            height: 350px;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 50px rgba(8, 217, 255, 0.6);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0a1f3d 0%, #1a3a5c 100%);
            color: white;
            padding: 5rem 0 2rem;
            border-top: 3px solid rgba(8, 217, 255, 0.5);
            box-shadow: 0 -10px 50px rgba(8, 217, 255, 0.25);
            position: relative;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 0.9rem;
            font-size: 1.05rem;
        }

        .footer-link:hover {
            color: #08d9ff;
            padding-left: 18px;
            text-shadow: 0 0 15px rgba(8, 217, 255, 0.8);
        }

        .footer-link i {
            margin-right: 10px;
        }

        .social-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, rgba(8, 217, 255, 0.3), rgba(6, 166, 204, 0.3));
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 0.6rem;
            transition: all 0.4s ease;
            border: 2px solid rgba(8, 217, 255, 0.4);
        }

        .social-icon:hover {
            background: linear-gradient(135deg, #08d9ff, #06a6cc);
            transform: translateY(-10px) rotate(360deg);
            box-shadow: 0 15px 40px rgba(8, 217, 255, 0.6);
        }

        .social-icon i {
            color: white;
            font-size: 1.5rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .timeline::before {
                left: 30px;
            }

            .timeline-item::before {
                left: 30px;
            }

            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }

            .carousel-caption h1 {
                font-size: 2.5rem;
            }

            .carousel-caption p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                height: 450px;
            }

            .carousel-caption h1 {
                font-size: 2rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stat-number {
                font-size: 3rem;
            }

            .program-icon {
                width: 90px;
                height: 90px;
            }

            .program-icon i {
                font-size: 2.2rem;
            }
        }
    </style>