/* Reset dasar untuk mencegah scrolling horizontal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: rgb(249 250 251);  /* Sesuaikan dengan total tinggi navbar + info-bar */
}

.logo-img {
    height: 40px;
    width: auto;
}

.company-name {
    font-weight: 600;
    color: #333;
    font-size: 1.2rem;
}


.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, center) var(--mouse-y, center),
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.4) 45%,
        rgba(255,255,255,0.7) 100%
    );
    animation: gradientMove 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientMove {
    0% {
        --mouse-x: 0%;
        --mouse-y: 0%;
    }
    25% {
        --mouse-x: 100%;
        --mouse-y: 0%;
    }
    50% {
        --mouse-x: 100%;
        --mouse-y: 100%;
    }
    75% {
        --mouse-x: 0%;
        --mouse-y: 100%;
    }
    100% {
        --mouse-x: 0%;
        --mouse-y: 0%;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.hero-section:hover::before {
    background: radial-gradient(circle at center,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(135deg, #1141B0 0%, #1141B0 50%, #1141B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient 8s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.hero-section:hover h1 {
    transform: scale(1.02);
}

.hero-section p {
    color: #2d3436;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.hero-section:hover p {
    transform: translateY(-5px);
}

.btn-primary {
    padding: 12px 30px;
    border-radius: 30px;
    background-color: #007bff;
    border: none;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}



.dropdown-menu {
    display: none;
    margin-top: 0;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Styling untuk dropdown yang aktif */
.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Menghapus animasi fadeIn yang lama karena sudah diganti dengan transition */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}

.company-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.company-tagline {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .logo-img {
        height: 40px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-tagline {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 35px;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .company-tagline {
        display: none;
    }

   
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        background-size: 90% auto;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .about-us-section {
        padding: 20px;
    }
}
.product-description {
    background-color: #4F7A92;
    border-radius: 1rem;
    padding: 2rem;
}

.product-description p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.product-description button {
    width: 100%;
    background: white;
    color: black;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-description button:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}
/* Animasi fade in */
[data-aos="fade"] {
    opacity: 0;
    transition: opacity 1.5s ease;
}

[data-aos="fade"].aos-animate {
    opacity: 1;
}

/* Tambahkan kelas baru untuk wave divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}
/* Product Carousel Styles */
.product-carousel {
    position: relative;
    overflow: hidden;
}

.product-swiper {
    padding: 20px 0 40px;
}

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card {
    background-color: #4F7A92;
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 400px;
    margin: auto;
}

.white-container {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.product-label {
    margin-bottom: -16px; /* menghilangkan space bawah */
}

.product-label span {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
}

.logo-section {
    margin: 1rem 0;
    padding: 1rem 0;
}

.logo-section img {
    max-width: 160px; /* Mengatur lebar maksimal */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Spacing untuk konten di sekitar logo */
.white-container {
    padding: 1.5rem;
}

.title-section {
    margin-top: 1rem;
}

.odoo-logo {
    width: 256px;
    height: auto;
    object-fit: contain;
    transform: scale(1.2);
}

.ready-partner-badge {
    background-color: #10B981;
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    display: inline-block;
}

.title-section {
    text-align: center;
}

.title-section h3 {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 700; /* membuat teks lebih bold */
    margin-bottom: 0; /* menghilangkan margin bottom */
    line-height: 1.2; /* mengatur line height agar lebih rapat */
}

.title-section p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.2; /* mengatur line height agar lebih rapat */
}

.image-container {
    border-radius: 0.75rem;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hover Effects */
.product-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 640px) {
    .product-card {
        padding: 1rem;
    }
    
    .white-container {
        padding: 1rem;
    }
    
    .odoo-logo {
        width: 150px;
    }
    
    .title-section h3 {
        font-size: 1.25rem;
    }
}

/* Custom Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.swiper-button-prev {
    left: -2% !important;
}

.swiper-button-next {
    right: -2% !important;
}


.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
}

/* Custom Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #2563eb;
}
/* Tambahkan animasi untuk wave */
@keyframes wave {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Tambahkan animasi untuk logo */
@keyframes logoAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.animate-logo {
    animation: logoAnimation 0.5s ease;
}

/* Tambahkan animasi untuk background */
.bg-hero-animation {
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
                url('../assets/gambar/logo bg horizon.png') center/cover;
    animation: backgroundAnimation 10s ease infinite;
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}



.about-us-section {
    background-color: #ffffff; /* Warna latar belakang */
}

.about-us-section h2 {
    color: #333; /* Warna teks judul */
}

.about-us-section p {
    color: #555; /* Warna teks paragraf */
}

/* Animasi untuk gambar dan teks */
[data-aos="fade-right"], [data-aos="fade-left"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-right"].aos-animate, [data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Penyesuaian responsif yang ditingkatkan */
@media (max-width: 576px) {
    /* Hero Section */
    .hero-section {
        min-height: 100vh;
        padding: 80px 20px;
    }

    .hero-section h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-section p {
        font-size: 1rem !important;
        line-height: 1.5;
    }

    

    .logo-img {
        height: 35px;
    }

   

    /* Animasi */
    [data-aos] {
        transition-duration: 0.4s !important;
    }

    .animate-logo {
        animation-duration: 0.3s;
    }

    /* Partner Logo */
    .partner-logo-container {
        height: 80px;
        padding: 10px;
    }

    .partner-logo {
        width: 120px;
        height: 40px;
    }
}

/* Penyesuaian untuk Performa Animasi di Mobile */
@media (max-width: 768px) {
    /* Optimasi Background Animation */
    .bg-hero-animation {
        background-size: 120% auto;
        animation: backgroundAnimation 20s ease infinite;
    }

    /* Blog Cards */
    .blog-card {
        transform: none !important;
    }

    .blog-card:hover {
        transform: translateY(-5px) !important;
    }

    /* Parallax Effect */
    #parallax-bg img {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }

    /* Dropdown Animation */
    .dropdown-menu {
        animation-duration: 0.2s;
    }

    /* Smooth Scroll */
    html {
        scroll-behavior: smooth;
    }
}

/* Perbaikan Performa Animasi */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



/* Animasi fadeIn */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styling untuk teks About */
.about-us-section .text-lg {
    background: linear-gradient(135deg, 
        rgba(17, 65, 176, 0.9) 0%,
        rgba(0, 59, 115, 0.8) 50%,
        rgba(17, 65, 176, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Efek hover untuk teks */
.about-us-section .text-lg:hover {
    background: linear-gradient(135deg, 
        rgba(0, 59, 115, 0.9) 0%,
        rgba(17, 65, 176, 0.8) 50%,
        rgba(0, 59, 115, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.5s ease;
}

/* Tambahkan efek glow di sekitar teks */
.about-us-section .text-lg::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 4px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-us-section .text-lg:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-section .text-lg {
        background: linear-gradient(135deg, 
            rgba(17, 65, 176, 0.85) 0%,
            rgba(0, 59, 115, 0.75) 50%,
            rgba(17, 65, 176, 0.85) 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

/* Styling untuk About Us Section */
.about-us-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-us-section img {
    transition: transform 0.5s ease;
}

.about-us-section img:hover {
    transform: scale(1.02);
}

/* Animasi untuk feature items */
.feature-item {
    transition: transform 0.3s ease, padding-left 0.3s ease;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    padding-left: 5px;
}

/* Animasi untuk SVG icons */
.feature-item svg {
    transition: transform 0.3s ease;
}

.feature-item:hover svg {
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-section {
        padding: 3rem 1rem;
    }
    
    .about-us-section h2 {
        font-size: 2rem;
    }
    
    .about-us-section .text-lg {
        font-size: 1rem;
    }

    .feature-item {
        padding: 8px 0;
        gap: 10px;
    }
    
    .feature-item svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-item span {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Styling untuk Partners Section - Clean Version dengan Ukuran Konsisten */
.partners-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.partner-logo-container {
    background: #ffffff;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Menghapus filter grayscale */
    transition: transform 0.3s ease;
}

.partner-logo-container:hover .partner-logo {
    /* Menghapus reset filter grayscale */
    transform: scale(1.05); /* Menambahkan efek scaling sebagai gantinya */
}

/* Menghapus animasi pulse */
.partner-logo-container:hover {
    animation: none; /* Menghapus animasi pulse */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .partner-logo-container {
        height: 100px;
        padding: 1.5rem;
    }
    
    .partner-logo {
        width: 150px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 1rem;
    }

    .partner-logo-container {
        height: 80px;
        padding: 1rem;
    }
    
    .partner-logo {
        width: 120px;
        height: 40px;
    }

    .partners-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .partner-logo-container {
        height: 60px;
    }
    
    .partner-logo {
        width: 100px;
        height: 35px;
    }

    .partner-logo-container:hover .partner-logo {
        transform: scale(1.05) translateY(-2px);
    }
}

/* Blog Section Styling - Menyamakan dengan Partners Section */
.blog-section {
    position: relative;
    background-color: #ffffff; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Update warna card untuk kontras yang lebih baik */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* Blog Image Styling */
.blog-image-wrapper {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

/* Blog Content Styling */
.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #1141B0;
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #1141B0;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Blog Footer Styling */
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.blog-date {
    color: #888;
    font-size: 0.875rem;
}

.blog-read-more {
    color: #1141B0;
    font-weight: 500;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    transform: translateX(5px);
}

/* View All Button Styling */
.view-all-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #1141B0;
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    background-color: #0d2f7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 65, 176, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 1rem;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }

    .view-all-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Parallax Effect */
@media (min-width: 769px) {
    .blog-section {
        background-attachment: fixed;
    }

    .blog-card {
        transform: perspective(1000px) rotateX(0deg);
        transition: transform 0.5s ease;
    }

    .blog-card:hover {
        transform: perspective(1000px) rotateX(5deg) translateY(-5px);
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease forwards;
}

/* Mega Menu Styling */
.mega-menu {
    width: 280px;
    padding: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-item {
    position: relative;
}

.dropdown-item.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    transition: all 0.3s ease;
}

.submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Submenu Styling */
.submenu {
    position: absolute;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(229, 231, 235, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: translateY(-15px) scaleY(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100; /* Menaikkan z-index */
    display: none;
    margin-top: 0.5rem; /* Menambah jarak dari parent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.submenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
    display: block;
    animation: submenuFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Animasi baru untuk submenu */
@keyframes submenuFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scaleY(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

/* Perbaikan styling item submenu */
.submenu a {
    color: #1f2937;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.75rem 1rem;
    margin: 0.25rem;
    border-radius: 0.375rem;
    display: block;
    background: transparent;
    z-index: 101; /* Memastikan link tetap di atas */
}

.submenu a:hover {
    background-color: rgba(59, 130, 246, 0.08);
    color: #2563eb;
    transform: translateX(4px);
}

/* Menambahkan overlay untuk mencegah interaksi dengan elemen di bawah */
.submenu::before {
    content: '';
    position: absolute;
    top: -10px; /* Memperluas area di atas submenu */
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .submenu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        border-radius: 0;
    }
    
    .submenu::before {
        display: none;
    }
}

/* Hover Effects */
@media (min-width: 992px) {
    .mega-menu-item:hover > .dropdown-item.has-submenu {
        background-color: #f8f9fa;
        color: #1141B0;
    }

    .mega-menu-item:hover > .dropdown-item .submenu-arrow {
        transform: rotate(-90deg);
    }

    .mega-menu-item:hover > .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

/* Mobile Styling */
@media (max-width: 991.98px) {
    .mega-menu {
        width: 100%;
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .mega-menu-item.show > .submenu {
        display: block;
    }

    .dropdown-item.has-submenu {
        padding: 12px 15px;
    }

    .submenu-arrow {
        transform: rotate(90deg);
    }

    .mega-menu-item.show .submenu-arrow {
        transform: rotate(-90deg);
    }
}

/* Tambahkan animasi hover untuk item dropdown */
.dropdown-item {
    position: relative;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #1141B0;
    transition: width 0.3s ease;
}

.dropdown-item:hover:before {
    width: 100%;
}

/* Animasi untuk mobile toggle */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }

    .mega-menu-item {
        border-bottom: 1px solid #eee;
    }

    .mega-menu-item:last-child {
        border-bottom: none;
    }
}


/* Contact Section Styling */
.contact-section {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

/* Frosted Glass Effect */
.frosted-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frosted-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Solar Flare Effect */
.solar-flare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(17, 65, 176, 0.05) 0%,
        rgba(17, 65, 176, 0) 70%
    );
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contact Items Styling */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 65, 176, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover .icon-wrapper {
    background: #1141B0;
    color: white;
}

/* Form Styling Enhancement */
.form-group {
    position: relative;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(17, 65, 176, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #333;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.form-input::placeholder {
    color: #999;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231141B0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 2.5rem;
}

label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.form-group:focus-within label {
    color: #1141B0;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #1141B0;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
    position: relative;
}

.submit-button:hover {
    background: #0d2f7a;
    transform: translateY(-2px);
}

.submit-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-button:hover::after {
    left: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-input,
    .form-select {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    label {
        font-size: 0.85rem;
    }
}

/* Error State */
.form-input.error,
.form-select.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Success State */
.form-input.success,
.form-select.success {
    border-color: #28a745;
}

/* 1. Depth Cascade Effect */
.depth-cascade {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.cascade-item {
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

.cascade-item:hover {
    transform: translateZ(50px);
}

/* 2. Timeless Scroll Effect */
.timeless-scroll {
    position: relative;
    overflow: hidden;
}

.time-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
    background-size: 60px 60px;
    animation: timeScroll 20s linear infinite;
}

@keyframes timeScroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

/* 3. Forest Wander Effect */
.forest-wander {
    position: relative;
    overflow: hidden;
}

.forest-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('path/to/leaf-texture.png');
    opacity: 0.1;
    animation: forestMove 15s ease-in-out infinite;
}

@keyframes forestMove {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-20px) translateY(10px);
    }
}

/* 4. Ocean Ripple Effect */
.ocean-ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: rippleExpand 4s ease-out infinite;
}

@keyframes rippleExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Background & Animation Effects */
.modern-bg {
    position: relative;
    background: linear-gradient(135deg, #f6f8ff 0%, #f0f4ff 100%);
    overflow: hidden;
}

/* Soft Gradient Glow */
.gradient-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(17, 65, 176, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 15s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Multi-Layer Parallax */
.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.layer-1 {
    background: radial-gradient(circle at center, transparent 50%, rgba(17, 65, 176, 0.03) 100%);
    animation: floatLayer 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at center, transparent 50%, rgba(147, 51, 234, 0.03) 100%);
    animation: floatLayer 25s ease-in-out infinite reverse;
}

.layer-3 {
    background: linear-gradient(45deg, transparent 45%, rgba(17, 65, 176, 0.02) 50%, transparent 55%);
    animation: floatLayer 30s linear infinite;
}

@keyframes floatLayer {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(-5px, 15px);
    }
    75% {
        transform: translate(-15px, -5px);
    }
}

/* Cursor Effects */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #1141B0;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(17, 65, 176, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
}

/* Interactive Elements Hover Effect */
.interactive-hover {
    position: relative;
    transition: all 0.3s ease;
}

.interactive-hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at var(--x) var(--y), 
                rgba(17, 65, 176, 0.1) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interactive-hover:hover::after {
    opacity: 1;
}

/* Footer Styling */
.footer-section {
    position: relative;
    padding-top: 8rem;
    background: linear-gradient(to bottom, #1a1f2c, #0f172a);
    color: #ffffff;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    transform: rotateY(180deg);
}

.footer-wave .shape-fill {
    fill: #1a1f2c;
}

.footer-logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(1.2) drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
    transform: translateY(-2px);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1141B0;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(17, 65, 176, 0.3);
}

.operational-hours {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.operational-hours:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding-top: 6rem;
    }

    .footer-wave {
        top: -50px;
    }

    .footer-wave svg {
        height: 50px;
    }

    .footer-logo img {
        height: 150px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-extra-links {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-start;
}

.footer-logo img {
    width: auto;
    height: 250px; /* Ukuran diperbesar */
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1); /* Meningkatkan kejelasan */
    transition: all 0.3s ease;
    /* Menambahkan efek bayangan halus untuk meningkatkan keterbacaan */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

/* Menyesuaikan ukuran untuk layar mobile */
@media (max-width: 768px) {
    .footer-logo img {
        height: 300px;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-item:hover .icon-wrapper {
    background: rgba(17, 65, 176, 0.3);
}

.contact-details a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #747373;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }
}

.dropdown-menu {
    transform-origin: top;
    animation: dropdownFade 0.3s ease forwards;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1141B0, #4CAF50);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
    transform: translateX(0);
}

/* Form Styling */
.shake-animation {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.frosted-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Input focus effects */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

/* Placeholder animation */
input::placeholder, textarea::placeholder {
    transition: all 0.3s ease;
}

input:focus::placeholder, textarea:focus::placeholder {
    opacity: 0.5;
    transform: translateX(10px);
}

/* Contact Info Styling */
.frosted-glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-item-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.icon-wrapper-glow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    position: relative;
}

.icon-wrapper-glow::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item-card:hover .icon-wrapper-glow::after {
    opacity: 1;
}

.contact-details-enhanced {
    flex: 1;
}

.address-line {
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.address-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #60a5fa;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.contact-item-card:hover .address-line::before {
    opacity: 1;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link .link-text {
    position: relative;
}

.contact-link .link-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.contact-link:hover .link-text::after {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-item-card {
        padding: 1rem;
    }

    .icon-wrapper-glow {
        width: 40px;
        height: 40px;
    }

    .address-line {
        font-size: 0.9rem;
    }
}

/* Hover Animation for Contact Items */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.contact-item-card:hover .icon-wrapper-glow {
    animation: pulseGlow 1.5s infinite;
}

/* Contact Info Styling */
.contact-info-wrapper {
    background: linear-gradient(145deg, #ffffff, #f5f7ff);
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.contact-item-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    position: relative;
}

.icon-wrapper.whatsapp {
    background: rgba(37, 211, 102, 0.1);
}

.contact-item-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.15);
}

.contact-item-card:hover .icon-wrapper.whatsapp {
    background: rgba(37, 211, 102, 0.15);
}

.contact-details {
    flex: 1;
}

.address-line {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.address-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #60a5fa;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.contact-item-card:hover .address-line::before {
    opacity: 1;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.contact-link .link-text {
    position: relative;
}

.contact-link .link-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.contact-link:hover .link-text::after {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-item-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .address-line {
        font-size: 0.95rem;
    }
}

/* Hover Animation for Contact Items */
@keyframes softPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.contact-item-card:hover .icon-wrapper i {
    animation: softPulse 1.5s infinite;
}

/* Animasi untuk background parallax */
#parallax-bg {
    animation: floatUpDown 6s ease-in-out infinite;
}

#parallax-bg img {
    animation: floatUpDownImage 8s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatUpDownImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Tambahkan efek blur gradient yang bergerak */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--mouse-x, center) var(--mouse-y, center),
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.4) 45%,
        rgba(255,255,255,0.7) 100%
    );
    animation: gradientMove 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientMove {
    0% {
        --mouse-x: 0%;
        --mouse-y: 0%;
    }
    25% {
        --mouse-x: 100%;
        --mouse-y: 0%;
    }
    50% {
        --mouse-x: 100%;
        --mouse-y: 100%;
    }
    75% {
        --mouse-x: 0%;
        --mouse-y: 100%;
    }
    100% {
        --mouse-x: 0%;
        --mouse-y: 0%;
    }
}

/* Efek parallax yang lebih halus */
.parallax-bg {
    position: absolute;
    inset: -20% -20%;
    background-size: cover;
    background-position: center;
    transform: translateZ(-1px) scale(2);
    z-index: 0;
    will-change: transform;
    transition: all 0.3s ease;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    filter: blur(2px);
}

/* Animasi floating untuk background */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) scale(1.1);
    }
    50% {
        transform: translateY(-20px) scale(1.15);
    }
}

.parallax-bg img {
    animation: floatAnimation 15s ease-in-out infinite;
}

/* Custom cursor styling */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: #1141B0;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}

.cursor-follower {
    width: 24px;
    height: 24px;
    background: rgba(17, 65, 176, 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .parallax-bg img {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-section h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .custom-cursor,
    .cursor-follower {
        display: none; /* Hide custom cursor on mobile */
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .scroll-indicator {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* 3D Carousel Styling */
.carousel-3d-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.carousel-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-3d-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.carousel-3d-slide.active {
    opacity: 1;
    transform: translateZ(0) rotateY(0);
}

.carousel-3d-slide:not(.active) {
    transform: translateZ(-100px) rotateY(90deg);
}

/* Slide background styling */
.slide-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Pattern background styling */
.pattern-background {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.pattern-overlay {
    opacity: 0.15;
}

/* Logo container styling */
.logo-container-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container-slide img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container-slide {
        width: 90%;
        padding: 1.5rem;
    }

    .logo-container-slide img {
        max-height: 200px;
    }
}

/* Parallax Background Pattern */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.92));
}

/* Logo Pattern Grid */
.hero-section::before {
    content: '';
    position: absolute;
    inset: -50% -50%;
    background-size: 300px auto;
    background-repeat: repeat;
    opacity: 0.08;
    transform: rotate(-15deg);
    animation: slowMove 60s linear infinite;
    z-index: 0;
}

/* Slow Movement Animation */
@keyframes slowMove {
    0% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateY(-5%);
    }
    100% {
        transform: rotate(-15deg) translateY(0);
    }
}

/* Content Container */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Parallax Effect on Scroll */
.parallax-wrapper {
    position: absolute;
    inset: 0;
    perspective: 8px;
    perspective-origin: center;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.parallax-layer-back {
    transform: translateZ(-6px) scale(1.75);
}

.parallax-layer-base {
    transform: translateZ(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section::before {
        background-size: 200px auto;
    }
    
    .parallax-bg {
        inset: -10% -10%;
    }
}

/* Optimize Performance */
@media (prefers-reduced-motion: reduce) {
    .hero-section::before {
        animation: none;
    }
    
    .parallax-bg {
        transform: none;
    }
}

/* Styling untuk Swiper */
.swiper-container {
    width: 100%;
    height: 100vh; /* Ubah ke 100vh */
    max-height: 800px; /* Tambah max-height untuk membatasi ketinggian maksimal */
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    height: 100%; /* Pastikan slide mengisi container */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-container {
        height: 80vh; /* Kurangi tinggi pada layar mobile */
        max-height: 600px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .swiper-container {
        height: 70vh; /* Lebih pendek lagi untuk smartphone */
        max-height: 500px;
    }
}

/* Styling untuk navigasi */
.swiper-button-next,
.swiper-button-prev {
    color: #000000 !important;
    background: transparent !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
    opacity: 0.7;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px !important; /* Mengatur ukuran icon */
    font-weight: bold;
}

/* Styling untuk pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #1141B0;
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1rem;
    }
}

/* Styling untuk pagination Swiper */
.swiper-pagination {
    position: relative !important;
    bottom: -20px !important;
    left: 0 !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #CBD5E0;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #4F7A92 !important;
    opacity: 1;
}

/* Pastikan container swiper memiliki padding bottom yang cukup */
.product-swiper {
    padding-bottom: 50px !important;
}

/* Hero Text Styling */
.hero-title {
    font-family: 'Poppins', sans-serif;
    color: #003366;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #003366;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
}

/* Background putih transparan untuk area terang */
.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.15) 100%
    );
    border-radius: 8px;
    z-index: -1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    position: relative;
    color: #ffffff;
    text-align: center; /* Menambahkan text-align center */
    width: 100%; /* Memastikan lebar penuh */
    max-width: 600px; /* Membatasi lebar maksimal */
    margin: 20px auto 0; /* Margin atas dan otomatis di sisi */
    padding: 0 20px; /* Menambahkan padding */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
    z-index: 2;
}

/* Background untuk subtitle dengan kontras yang lebih baik */
.hero-subtitle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -15px;
    right: -15px;
    bottom: -5px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.15) 100%
    );
    border-radius: 6px;
    z-index: -1;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Hover effect dengan warna biru tua */
.hero-title:hover {
    background: linear-gradient(135deg, #003B73 0%, #1141B0 50%, #003B73 100%);
    -webkit-background-clip: text;
    transition: all 0.3s ease;
}

.hero-subtitle:hover {
    color: #003B73;
    transition: color 0.3s ease;
}

/* Animasi untuk text */
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important; /* Ukuran font lebih kecil untuk mobile */
        max-width: 95%; /* Lebar maksimal lebih besar di mobile */
        padding: 0 15px; /* Padding lebih kecil */
    }

    .hero-subtitle {
        font-size: 1.2rem !important;
        max-width: 90%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem !important; /* Ukuran font lebih kecil lagi untuk device sangat kecil */
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4;
    }
}

/* Animasi untuk karakter judul */
@keyframes fadeInChar {
    from {
        opacity: 0;
        transform: translateY(-20px) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

/* Animasi untuk kata-kata subtitle */
@keyframes slideInWord {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Styling untuk container teks */
.text-container {
    transform: translateY(20px);
    animation: containerFadeIn 1s ease forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 0 32px rgba(255, 255, 255, 0.5);
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect untuk container */
.text-container:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Responsive styling */
@media (max-width: 768px) {
    .text-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}

/* Styling untuk logo kecil */
.small-logo-img {
    height: 30px; /* Ukuran lebih kecil dari logo utama */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Menyesuaikan ukuran logo utama */
.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .small-logo-img {
        height: 25px;
    }
    
    .logo-img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .small-logo-img {
        height: 20px;
    }
    
    .logo-img {
        height: 30px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .smal2-logo-img {
        height: 30px;
    }
    
    .logo-img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .small2-logo-img {
        height: 20px;
    }
    
    .logo-img {
        height: 30px;
    }
}

/* Styling untuk logo-logo */
.small-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Styling khusus untuk logo kedua */
.small2-logo-img {
    height: 60px; /* Ukuran lebih kecil dari logo pertama */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-left: 8px; /* Tambah margin untuk jarak */
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-right: 12px; /* Tambah margin untuk jarak */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .small-logo-img {
        height: 25px;
    }
    
    .small2-logo-img {
        height: 20px;
    }
    
    .logo-img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .small-logo-img {
        height: 20px;
    }
    
    .small2-logo-img {
        height: 18px; /* Ukuran lebih kecil lagi untuk mobile */
    }
    
    .logo-img {
        height: 30px;
    }
}

/* Top Info Bar Styling */
.top-info-bar {
    width: 100vw;
    background: linear-gradient(180deg, #1141B0 0%, #1E90FF 100%);
    padding: 0.75rem 2rem;
    color: white;
    position: relative;
    height: 60px; /* Mengurangi tinggi dari 150px menjadi 60px */
    overflow: hidden;
}

.top-info-bar.hidden {
    transform: scaleY(0);
    height: 0;
    padding: 0;
}

.top-info-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-info-bar a:hover {
    opacity: 0.8;
}

.social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-info-bar {
        font-size: 0.8rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        space-y: 4px;
    }
    
    .social-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-info-bar {
        padding: 5px 0;
    }
    
    .contact-info a {
        font-size: 0.75rem;
    }
}



/* Partner Section Infinite Scroll */
.partners-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-group {
    display: flex;
    gap: 48px;
    padding: 0 24px;
}

.partner-logo-container {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Menghapus filter grayscale */
    transition: transform 0.3s ease;
}

.partner-logo-container:hover .partner-logo {
    /* Menghapus reset filter grayscale */
    transform: scale(1.05); /* Menambahkan efek scaling sebagai gantinya */
}

/* Menghapus animasi pulse */
.partner-logo-container:hover {
    animation: none; /* Menghapus animasi pulse */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-logo-container {
        width: 150px;
        height: 80px;
    }
    
    .partners-group {
        gap: 24px;
        padding: 0 12px;
    }
}

.cta-button.primary {
    position: relative;
    overflow: hidden;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button.primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary:active {
    transform: scale(0.95) !important;
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    video {
        object-fit: contain;
    }
}

/* CTA Section Styling */
.cta-section {
    background: linear-gradient(rgba(17, 65, 176, 0.1), rgba(17, 65, 176, 0.2));
    border-radius: 20px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-section:hover::before {
    opacity: 1;
}

.cta-button.primary {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button.primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary:active {
    transform: scale(0.95) !important;
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .cta-section {
        margin: 0 20px;
    }

    .cta-button.primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Map container styling */
.map-container {
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.01);
}

.feature-list {
    background-color: #4F7A92;
    border-radius: 1rem;
    padding: 1rem;
    width: 390px; /* Fixed width */
    height: auto;
}

.feature-item {
    background-color: #4F7A92;
    border-radius: 1rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.inner-box {
    background: white;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem; /* Mengurangi padding vertical */
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem; /* Mengurangi margin */
    height: 86px;
}

.inner-box:last-child {
    margin-bottom: 0;
}

.icon-wrapper {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-box span {
    font-size: 1rem;
    font-weight: 500;
    color: #1F2937;
}

/* Hover effect */
.inner-box:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}



#home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0) 70%);
    pointer-events: none;
}

#home .container {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #home {
        min-height: 80vh;
    }
}

.decorative-image {
    width: 1000.60px;
    height: 612.56px;
    transform: rotate(-2.20deg);
    object-fit: contain;
    opacity: 0.60;
    filter: drop-shadow(inset 0 0 20px rgba(0, 0, 0, 0.25)); /* Efek inner shadow */
}

/* Untuk memastikan gambar tetap responsif */
@media (max-width: 1440px) {
    .decorative-image {
        width: 100%;
        height: auto;
        max-width: 1000.65px;
        max-height: 612.56px;
    }
}

@media (max-width: 768px) {
    .decorative-image {
        width: 80%;
        transform: rotate(2.17deg) translateX(-20%);
    }
}

.logo-spacing {
    margin: 2rem 0;  /* Margin atas dan bawah */
    padding: 1rem 0; /* Padding tambahan */
    display: block;
    max-height: 80px; /* Mengontrol tinggi maksimal */
}

/* Memastikan container memiliki ruang yang cukup */
.logo-section {
    min-height: 120px; /* Tinggi minimum untuk menampung logo dan spacing */
    display: flex;
    align-items: center;
    justify-content: center;
}

.statistics-section {
    position: relative;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: 4rem 0;
}

.stat-circle {
    width: 280px;  /* Diubah dari 220px */
    height: 280px; /* Diubah dari 220px */
    background: linear-gradient(145deg, #f0f9ff, #e6f3ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 10px solid #ffffff; /* Diubah dari 8px */
}

/* Animasi mengambang */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-soft {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delay {
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-float-delay-2 {
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-pulse-soft {
    animation: pulse-soft 3s ease-in-out infinite;
}

.stat-content {
    text-align: center;
    padding: 2.5rem; /* Diubah dari 2rem */
    display: flex;
    color: #083562;
    flex-direction: column;
    gap: 1rem; /* Diubah dari 0.75rem */
    transform: translateY(5px);
}

.stat-value {
    font-size: 2.5rem; /* Diubah dari 2.5rem */
    font-weight: 700;
    color: #424F5B;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.stat-description {
    font-size: 1.10rem; /* Diubah dari 1.1rem */
    color: #64748b;
    font-weight: 500;
    max-width: 200px; /* Diubah dari 180px */
    margin: 0 auto;
    line-height: 1.4;
}

/* Hover Effects */
.stat-circle:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.12),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    border-color: #f0f9ff;
}

/* Glow effect on hover */
.stat-circle::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-circle:hover::after {
    opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid {
        gap: 3rem;
    }
    
    .stat-item {
        transform: none !important;
    }

    .stat-circle {
        width: 240px; /* Diubah dari 220px */
        height: 240px;
    }
}

@media (max-width: 768px) {
    .stat-circle {
        width: 200px;
        height: 200px;
        border-width: 8px;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-description {
        font-size: 1.1rem;
        max-width: 170px;
    }
}

@media (max-width: 640px) {
    .statistics-section {
        padding: 2rem 0;
    }

    .stat-circle {
        width: 180px;
        height: 180px;
    }

    .grid {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* Tambahkan CSS untuk garis penghubung */
.connector-line {
    position: absolute;
    top: 50%;
    height: 60px; /* Tinggi garis 40px */
    background-color: #D1D5DB; /* Warna abu-abu */
    transform: translateY(-50%);
}

.connector-line.left {
    left: 25%;
    right: 45%;
}

.connector-line.right {
    left: 55%;
    right: 25%;
}

/* Pastikan garis berada di belakang lingkaran */
.stat-circle {
    position: relative;
    z-index: 2;
}

.connector-line {
    z-index: 1;
}

/* Responsive Design untuk garis penghubung */
@media (max-width: 768px) {
    .connector-line {
        display: none; /* Sembunyikan garis pada tampilan mobile */
    }
}

/* Animasi dan Efek */
@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-soft {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate-soft {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

.animate-bounce-soft {
    animation: bounce-soft 2s infinite;
}

.animate-pulse-soft {
    animation: pulse-soft 2s infinite;
}

.animate-rotate-soft {
    animation: rotate-soft 2s infinite;
}

/* Particle Effects */
.particle {
    position: absolute;
    background: radial-gradient(circle, #4F46E5 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Hover Effects */
.stat-circle {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-circle: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);
}

/* Counter Animation */
.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

/* Connector Line Animation */
.connector-line {
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.connector-line.right {
    transform-origin: right;
}

/* Glow Effect */
.stat-circle::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4F46E5, #60A5FA);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.stat-circle:hover::after {
    opacity: 0.15;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stat-circle {
        transform: none !important;
    }
    
    .connector-line {
        display: none;
    }
}

/* Tambahkan animasi CSS baru */
@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-soft {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate-soft {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-bounce-soft {
    animation: bounce-soft 2s infinite ease-in-out;
}

.animate-pulse-soft {
    animation: pulse-soft 2s infinite ease-in-out;
}

.animate-rotate-soft {
    animation: rotate-soft 10s infinite linear;
}

/* Particle styling */
.particle {
    position: absolute;
    background: radial-gradient(circle, #4F46E5 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Connector line animation */
.connector-line {
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.connector-line.right {
    transform-origin: right;
}

/* Glow Effect */
.stat-circle::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4F46E5, #60A5FA);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.stat-circle:hover::after {
    opacity: 0.15;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stat-circle {
        transform: none !important;
    }
    
    .connector-line {
        display: none;
    }
}

/* Animasi dasar */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 1s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fade-in 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
    animation-play-state: paused;
}

.rotate-180 {
    transform: rotate(180deg);
}

/* Navbar Styling */
header {
    position: relative;
    max-width: 1850px; /* Memperlebar max-width */
    transition: all 0.3s ease-in-out;
    margin-top: -80px; /* Menyesuaikan margin-top */
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem; /* Menambah padding kanan kiri */
    width: 100%; /* Memastikan lebar penuh */
    /* Menghilangkan margin atas */
}



/* Container untuk navbar */
.container {
    position: relative;
    max-width: 1850px; /* Memperlebar max-width */
    transition: all 0.3s ease-in-out;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem; /* Menambah padding kanan kiri */
    width: 100%;
}

nav img {
    transition: all 0.3s ease-in-out;
}


/* Menu Navigation */
.nav-menu li a {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    position: relative;
    overflow: hidden;
}

.nav-menu {
    gap: 1.5rem;
}

/* Contact Info Bar */
#contact-info-bar {
    position: relative;
    z-index: 60;
    padding: 4px 20px; /* Menambah padding kanan kiri */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0; /* Memastikan tidak ada margin */
    margin-left: 80px; /* Menambah margin kiri */
}

/* Scroll Effect */
header.scrolled nav {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    animation: slideDown 0.5s forwards;
}


/* Hover Effects */
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdown Menus */
.group:hover .group-hover\:visible {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
}

/* Logo Animation */
.logo-container img {
    transition: transform 0.3s ease;
}

.logo-container:hover img {
    transform: scale(1.05);
}

/* Submenu Animation */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-15px);
        max-height: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        max-height: 300px;
    }
}

/* Submenu Styling */
.submenu {
    position: absolute;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(229, 231, 235, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: translateY(-15px) scaleY(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100; /* Menaikkan z-index */
    display: none;
    margin-top: 0.5rem; /* Menambah jarak dari parent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.submenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
    display: block;
    animation: submenuFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Animasi baru untuk submenu */
@keyframes submenuFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scaleY(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

/* Perbaikan styling item submenu */
.submenu a {
    color: #1f2937;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.75rem 1rem;
    margin: 0.25rem;
    border-radius: 0.375rem;
    display: block;
    background: transparent;
    z-index: 101; /* Memastikan link tetap di atas */
}

.submenu a:hover {
    background-color: rgba(59, 130, 246, 0.08);
    color: #2563eb;
    transform: translateX(4px);
}

/* Menambahkan overlay untuk mencegah interaksi dengan elemen di bawah */
.submenu::before {
    content: '';
    position: absolute;
    top: -10px; /* Memperluas area di atas submenu */
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .submenu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        border-radius: 0;
    }
    
    .submenu::before {
        display: none;
    }
}

/* Navbar Container Styling */
.navbar-container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 40;
    max-width: 1850px;
    padding: 1rem 2rem;
    transform: translateY(30px); /* Mendorong navbar ke bawah */
}

/* Logo dan Partner Container */
.logo-partner-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo-container img {
    height: 48px;
    width: auto;
}

.partner-logos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.partner-logos img:first-child {
    height: 28px;
    width: auto;
    margin-top: 0.5rem;
}

.partner-logos img:last-child {
    height: 36px;
    width: auto;
}

/* Top Info Bar dengan Background Gradient yang diperluas */
.top-info-bar {
    background: linear-gradient(180deg, #1141B0 0%, #1E90FF 100%);
    padding: 0.75rem 2rem;
    color: white;
    position: relative;
    height: 60px; /* Menambah tinggi sedikit */
}

.info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.nav-menu a {
    color: #4B5563;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover {
    color: #1141B0;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid #E5E7EB;
}

.globe-icon {
    color: #4B5563;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-container {
        margin: -20px 1rem 0;
        padding: 1rem;
    }
    
    .logo-partner-container {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
}

/* Top Info Bar Styling */
.top-info-bar {
    width: 100vw;
    background: linear-gradient(180deg, #1141B0 0%, #1E90FF 100%);
    padding: 0.75rem 2rem;
    color: white;
    position: relative;
    height: 120px; /* Mengurangi tinggi dari 150px menjadi 60px */
    overflow: hidden;
}

/* Container untuk info */
.info-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}


nav.container {
    width: 100%;
    max-width: 1850px;
    margin-top: -80px; /* Menyesuaikan margin-top */
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
#home {
    width: 100%;
    margin-top: -50px;
    padding-top: 100px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, #1E90FF 20%, white 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-container {
        padding: 0 0.5rem;
    }
    
    nav.container {
        margin: 0 1rem;
        padding: 1rem;
    }
}

/* Mega Menu adjustments */
.mega-menu {
    max-width: 100vw;
    overflow-x: hidden;
}

