* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    line-height: 1.6;
}


/* Hero Carousel Section */
.hero {
    height: 100vh;
    width: 100%;
    background: 
    url("culture3.jpg") no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.floating-icons {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
    z-index: 2;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-icon img {
    width: 400px;
    height: auto;
    animation: spin 10s linear infinite;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Interactive Background Elements */
.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.bg-particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bg-particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: -2s;
    animation-duration: 15s;
}

.bg-particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 30%;
    animation-delay: -4s;
    animation-duration: 18s;
}

.bg-particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 40%;
    animation-delay: -6s;
    animation-duration: 14s;
}

.bg-particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-delay: -8s;
    animation-duration: 16s;
}

.bg-particle:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 60%;
    animation-delay: -10s;
    animation-duration: 13s;
}

.bg-particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: -12s;
    animation-duration: 17s;
}

.bg-particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: -14s;
    animation-duration: 15s;
}

.bg-particle:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: -16s;
    animation-duration: 19s;
}

.bg-particle:nth-child(10) {
    width: 6px;
    height: 6px;
    left: 95%;
    animation-delay: -18s;
    animation-duration: 14s;
}

/* Animated geometric shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    opacity: 0.1;
    animation: shapeMove 20s infinite linear;
}

.bg-shape.circle {
    border-radius: 50%;
    background: linear-gradient(45deg, #04164d, #04164d);
}

.bg-shape.triangle {
    width: 0;
    height: 0;
    background: transparent;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(76, 175, 80, 0.3);
}

.bg-shape.square {
    background: linear-gradient(45deg, #04164d, #04164d);
    transform: rotate(45deg);
}

.bg-shape:nth-child(1) {
    width: 30px;
    height: 30px;
    left: 5%;
    top: 10%;
    animation-delay: 0s;
}

.bg-shape:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 15%;
    top: 60%;
    animation-delay: -3s;
}

.bg-shape:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 25%;
    top: 30%;
    animation-delay: -6s;
}

.bg-shape:nth-child(4) {
    width: 35px;
    height: 35px;
    left: 35%;
    top: 80%;
    animation-delay: -9s;
}

.bg-shape:nth-child(5) {
    width: 28px;
    height: 28px;
    left: 45%;
    top: 20%;
    animation-delay: -12s;
}

.bg-shape:nth-child(6) {
    width: 22px;
    height: 22px;
    left: 55%;
    top: 70%;
    animation-delay: -15s;
}

.bg-shape:nth-child(7) {
    width: 32px;
    height: 32px;
    left: 65%;
    top: 40%;
    animation-delay: -18s;
}

.bg-shape:nth-child(8) {
    width: 26px;
    height: 26px;
    left: 75%;
    top: 15%;
    animation-delay: -21s;
}

.bg-shape:nth-child(9) {
    width: 24px;
    height: 24px;
    left: 85%;
    top: 65%;
    animation-delay: -24s;
}

.bg-shape:nth-child(10) {
    width: 30px;
    height: 30px;
    left: 95%;
    top: 35%;
    animation-delay: -27s;
}

/* Mouse follower effect */
.mouse-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(45, 98, 196, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

/* Scroll-triggered floating image */
.scroll-floating-image {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.scroll-floating-image.visible {
    opacity: 0.8;
}

.scroll-floating-image img {
    width: 200px;
    height: auto;
    animation: gentleSpin 20s linear infinite, gentleFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Interactive hover zones */
.hover-zone {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.hover-zone.active {
    opacity: 1;
    transform: scale(1.5);
}

/* Parallax layers */
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
}

.parallax-layer-1 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="200" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="500" cy="150" r="2.5" fill="rgba(255,255,255,0.12)"/><circle cx="700" cy="300" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="900" cy="250" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="1100" cy="180" r="1.8" fill="rgba(255,255,255,0.09)"/></svg>');
    z-index: 1;
}

.parallax-layer-2 {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><polygon points="50,50 70,90 30,90" fill="rgba(76,175,80,0.05)"/><polygon points="250,150 270,190 230,190" fill="rgba(76,175,80,0.07)"/><polygon points="450,100 470,140 430,140" fill="rgba(76,175,80,0.06)"/><polygon points="650,250 670,290 630,290" fill="rgba(76,175,80,0.08)"/><polygon points="850,180 870,220 830,220" fill="rgba(76,175,80,0.05)"/></svg>');
    z-index: 2;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.carousel-btn {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Featured Posts */
.featured-posts {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4689fd, #003795);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.section-header h2 {
    font-size: 36px;
    color: #04164d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.featured-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.featured-article:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.featured-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4689fd, #04164d);
    position: relative;
}

.featured-content {
    padding: 25px;
}

.article-category {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.article-category.featured {
    background: #ff9800;
    color: white;
}

.featured-article h3 {
    font-size: 20px;
    color: #04164d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-article p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

/* Latest Posts */
.latest-posts {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafdff 0%, #f4f5f6 100%);
}


.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.latest-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.latest-article:hover {
    transform: translateY(-5px);
}

.latest-image {
    width: 100%;
    height: 150px;
    /* background: linear-gradient(135deg, #81c784, #66bb6a); */
    background: linear-gradient(45deg, #04164d, #04164d);
}

.latest-content {
    padding: 20px;
}

.article-category.latest {
    background: #2196f3;
    color: white;
}

.latest-article h4 {
    font-size: 16px;
    color: #04164d;
    margin-bottom: 10px;
    line-height: 1.3;
}

.latest-article p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

.date {
    font-size: 12px;
    color: #999;
}

/* Announcements */
.announcements {
    padding: 80px 0;
    background: white;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.announcement-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #4689fd;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.announcement-item:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.announcement-item.important {
    border-left-color: #f44336;
    background: #fff3e0;
}

.announcement-item.important:hover {
    background: #ffecb3;
}

.announcement-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.announcement-content h3 {
    color: #04164d;
    margin-bottom: 10px;
    font-size: 18px;
}

.announcement-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.announcement-date {
    font-size: 12px;
    color: #999;
}

/* Services Section */
.services-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4689fd, #04164d);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4689fd, #04164d);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.service-item h3 {
    font-size: 20px;
    color: #04164d;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Quick Links */
.quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.quick-link-btn {
    background: #4689fd;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-link-btn:hover {
    background: #04164d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #04164d;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #c8e6c9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #c8e6c9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #4689fd;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #04164d;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .floating-icons {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 20px;
        right: auto;
    }

    .floating-icon img {
        width: 200px;
    }

    .scroll-floating-image {
        right: 10px;
    }

    .scroll-floating-image img {
        width: 120px;
    }

    .carousel-controls {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .featured-grid,
    .latest-grid,
    .announcement-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .container {
        padding: 0 15px;
    }

    .quick-links {
        gap: 10px;
    }

    .quick-link-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .bg-particle,
    .bg-shape {
        display: none;
    }

    .mouse-follower {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 0 !important;
        margin-top:0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .floating-icon img {
        width: 150px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .announcement-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .featured-article h3,
    .service-item h3 {
        font-size: 18px;
    }

    .latest-article h4 {
        font-size: 15px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: linear-gradient(
        #04164dd3,
       #04164d44
    ),
        url("culture3@2x.jpg");
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #ffffff;
        --card-bg: #2d2d2d;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .carousel-controls,
    .carousel-indicators,
    .floating-icons {
        display: none;
    }
    
    .hero {
        height: auto;
        background: none;
        color: black;
    }
    
    .hero-content h1 {
        color: black;
        text-shadow: none;
    }
    
    .hero-content p {
        color: black;
        text-shadow: none;
    }
}

/* body {
    background: #f5faff;
    color: #0d47a1;
} */

/* Header */
.header {
    background: #04164d;
    color: white;
}

/* Navigasi */
.nav-menu a {
    color: white;
}
.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #e3f2fd;
}

/* Tombol Login */
.login-btn {
    background: white;
    color: #04164d;
}
.login-btn:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(
        #04164d,
       #04164d59
    ),
    url("culture3.jpg") no-repeat center center/cover;
}

/* Judul dan Paragraf */

.section-header h2 {
    color: #003795;
}
.hero-content h1 {
    color: #ffffff;
}
/* .hero-content p {
    color: #e3f2fd;
} */

/* Tombol Link */
.quick-link-btn {
    background: #2196f3;
    color: white;
}
.quick-link-btn:hover {
    background: #1565c0;
}

/* Kategori */
.article-category.featured {
    background: #64b5f6;
    color: white;
}

/* Footer */
.footer {
    background: #04164d;
    color: white;
}
.footer-section h3 {
    color: #bbdefb;
}
.footer-section ul li a:hover {
    color: #e3f2fd;
}

/* Hover Icon */
.social-links a:hover {
    background: #2196f3;
}

/* Parallax dan efek partikel bisa tetap putih transparan */
   /* Header Styles - DESKTOP (tidak diubah) */
        .header {
            background: #04164d !important;
            padding: 15px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            min-height: auto;
        }

        .header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100'><path d='M0,0 C300,100 700,0 1000,50 L1000,100 L0,100 Z' fill='rgba(255,255,255,0.1)'/></svg>") repeat-x;
            opacity: 0.3;
            z-index: 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        /* Top Row untuk Logo dan Info */
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Bottom Row untuk Navigation */
        .header-bottom {
            display: flex;
            justify-content: center;
            padding: 10px 0;
        }

        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            font-size: 18px;
            color: #fff;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 40px;
            height: 45px;
            /* border-radius: 50%; */
            display: flex;
            align-items: center;
            justify-content: center;
            /* background: rgba(255, 255, 255, 0.1); */
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            /* border-radius: 50%; */
        }

        /* Header Info (Clock, etc) */
        .header-info {
            display: flex;
            align-items: center;
            gap: 20px;
            color: #fff;
            font-size: 14px;
        }

        .header-info i {
            color: #f7ca44;
        }

        /* Navigation Menu - DESKTOP */
        .nav {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: center;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0;
            margin: 0;
            padding: 0;
            justify-content: center;
            width: 100%;
        }

        .nav-menu li {
            position: relative;
            margin: 2px 0;
        }

        .nav-menu>li>a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
            font-size: 14px;
        }

        .nav-menu>li>a:hover,
        .nav-menu>li>a.active {
            color: #f7ca44;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Dropdown Styles - DESKTOP */
        .dropdown>a::after {
            content: '\f140';
            font-family: 'bootstrap-icons';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover>a::after {
            transform: rotate(180deg);
        }

        /* Level 1 Dropdown - DESKTOP */
        .nav-menu li ul {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            background: #ffffff;
            list-style: none;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            padding: 10px 0;
            min-width: 220px;
            z-index: 999;
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.2s ease;
        }

        .nav-menu li:nth-last-child(-n+2) ul {
            left: auto;
            right: 0;
        }

        .nav-menu li:hover>ul {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .nav-menu li ul::before {
            content: '';
            position: absolute;
            top: -15px;
            left: 0;
            right: 0;
            height: 15px;
            background: transparent;
        }

        .nav-menu li ul li {
            width: 100%;
            padding: 0;
            position: relative;
        }

        .nav-menu li ul li a {
            display: block;
            padding: 12px 20px;
            color: #04164d;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .nav-menu li ul li a:hover {
            background-color: #f8f9fa;
            color: #007bff;
            padding-left: 25px;
        }

        /* Level 2 Dropdown - DESKTOP */
        .nav-menu li ul li.dropdown>a::after {
            content: '\f285';
            font-family: 'bootstrap-icons';
            float: right;
            margin-top: 2px;
            transition: transform 0.3s ease;
        }

        .nav-menu li ul li.dropdown:hover>a::after {
            transform: rotate(90deg);
        }

        .nav-menu li ul li ul {
            top: 0;
            left: 100%;
            margin-left: 10px;
            min-width: 200px;
        }

        .nav-menu li:nth-last-child(-n+2) ul li ul {
            left: auto;
            right: 100%;
            margin-left: 0;
            margin-right: 10px;
        }

        .nav-menu li ul li ul::before {
            content: '';
            position: absolute;
            top: 0;
            left: -15px;
            width: 15px;
            height: 100%;
            background: transparent;
        }

        .nav-menu li:nth-last-child(-n+2) ul li ul::before {
            left: auto;
            right: -15px;
        }

        /* Level 3 Dropdown - DESKTOP */
        .nav-menu li ul li ul li ul {
            top: 0;
            left: 100%;
            margin-left: 10px;
            min-width: 180px;
        }

        .nav-menu li:nth-last-child(-n+2) ul li ul li ul {
            left: auto;
            right: 100%;
            margin-left: 0;
            margin-right: 10px;
        }

        .nav-menu li ul li ul li ul::before {
            content: '';
            position: absolute;
            top: 0;
            left: -15px;
            width: 15px;
            height: 100%;
            background: transparent;
        }

        .nav-menu li:nth-last-child(-n+2) ul li ul li ul::before {
            left: auto;
            right: -15px;
        }

        /* ================================ */
        /* MOBILE HAMBURGER BUTTON - SIMPLE */
        /* ================================ */
        .hamburger {
            display: none;
            width: 30px;
            height: 30px;
            cursor: pointer;
            position: relative;
            z-index: 10001;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hamburger Animation */
        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* ================================ */
        /* MOBILE SIDEBAR */
        /* ================================ */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: #04164d;
            z-index: 10000;
            transition: right 0.3s ease;
            overflow-y: auto;
        }

        .mobile-sidebar.open {
            right: 0;
        }

        /* Sidebar Header */
        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-logo {
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .close-btn {
            color: white;
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        /* Sidebar Menu */
        .sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-menu li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar-menu a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background: rgba(255, 255, 255, 0.1);
            color: #f7ca44;
        }

        /* Dropdown dalam sidebar */
        .sidebar-dropdown {
            position: relative;
        }

        .sidebar-dropdown>a::after {
            content: '+';
            float: right;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .sidebar-dropdown.active>a::after {
            transform: rotate(45deg);
        }

        .sidebar-submenu {
            max-height: 0;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.2);
            transition: max-height 0.3s ease;
        }

        .sidebar-dropdown.active .sidebar-submenu {
            max-height: 1000px;
        }

        .sidebar-submenu a {
            padding-left: 40px;
            font-size: 14px;
        }

        .sidebar-submenu .sidebar-submenu a {
            padding-left: 60px;
        }

        .sidebar-submenu .sidebar-submenu .sidebar-submenu a {
            padding-left: 80px;
        }

        /* Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* Demo content */
        .demo-content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .demo-content h1 {
            color: #04164d;
            margin-bottom: 20px;
        }

        .demo-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* ======================================= */
        /* RESPONSIVE STYLES */
        /* ======================================= */

        /* Desktop Styles (tidak diubah) */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 0 15px;
            }

            .nav-menu>li>a {
                padding: 8px 12px;
                font-size: 13px;
            }

            .logo {
                font-size: 16px;
            }

            .nav-menu li ul {
                min-width: 200px;
            }
        }

        @media (max-width: 1024px) {
            .nav-menu>li>a {
                padding: 8px 10px;
                font-size: 12px;
            }

            .logo {
                font-size: 15px;
            }

            .header-info {
                font-size: 12px;
            }

            .nav-menu li ul {
                min-width: 180px;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .hero-image{
                display: none;
            }
            .header {
                padding: 12px 0;
            }

            .nav-container {
                padding: 0 15px;
            }

            .logo {
                font-size: 14px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }

            .nama_web{
                display: none;
            }
            /* Hide desktop nav */
            .nav {
                display: none;
            }

            /* Show hamburger */
            .hamburger {
                display: block;
            }

            body {
                padding-top: -75px;
            }

            /* Prevent scroll when sidebar open */
            body.no-scroll {
                overflow: hidden;
            }
        }

        @media (max-width: 480px) {
            .mobile-sidebar {
                width: 100%;
            }

            .logo {
                font-size: 12px;
            }

            .logo-icon {
                width: 30px;
                height: 30px;
            }
              .nama_web{
                display: none;
            }
        }