 <style>
         body {
            background: red !important;
        }
        /* Animasi CSS */
        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Delay untuk animasi berurutan */
        .card-animation-delay-1 {
            animation-delay: 0.2s;
        }

        .card-animation-delay-2 {
            animation-delay: 0.4s;
        }

        .card-animation-delay-3 {
            animation-delay: 0.6s;
        }

        .card-animation-delay-4 {
            animation-delay: 0.8s;
        }

        .image-animation-delay {
            animation-delay: 1s;
        }

        .video-title:hover {
            white-space: normal;
            overflow: visible;
            text-overflow: unset;
            background-color: #fff;
            position: relative;
            z-index: 1;
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #1a2b6f;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top:hover {
            background-color: #0f1a4b;
            transform: translateY(-3px);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .video-title {
            font-size: 14px;
            /* perkecil font */
            font-weight: 600;
            /* tebal sedang */
            min-height: 45px;
            /* tinggi minimal agar sejajar */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.3;
        }

        .embed-responsive {
            border-radius: 10px;
            overflow: hidden;
        }

        #galeriCarousel,
        #galeriCarousel * {
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }

        .carousel-control-prev,
        .carousel-control-next {
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
            background: transparent !important;
        }

        .col-md-6 {
            border: none !important;
            box-shadow: none !important;
        }

        #galeriCarousel img {
            height: 200px;
            /* tinggi tetap */
            object-fit: cover;
            /* biar tetap proporsional */
        }
         .line {
            width: 120px;
            height: 3px;
            background: #b11226;
            border: none;
        }

        .feature-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        /* Strip warna atas */
        .feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 6px;
            width: 100%;
        }

        /* Hover effect */
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        /* Icon */
        .feature-icon {
            font-size: 32px;
            margin-bottom: 15px;
        }

        /* Variasi warna */
        .card-blue::before {
            background: #0d6efd;
        }

        .card-green::before {
            background: #198754;
        }

        .card-orange::before {
            background: #fd7e14;
        }

        .card-red::before {
            background: #dc3545;
        }

        .card-blue .feature-icon {
            color: #0d6efd;
        }

        .card-green .feature-icon {
            color: #198754;
        }

        .card-orange .feature-icon {
            color: #fd7e14;
        }

        .card-red .feature-icon {
            color: #dc3545;
        }

        .feature-title {
            font-weight: 600;
        }

        .feature-text {
            color: #666;
            font-size: 14px;
        }

        .feature-link {
            text-decoration: none;
            color: inherit;
        }
        
        .store-landing {
        position: relative;
    }

    .container-background {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
    }

    .container-background::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 1;
    }

    #carouselExampleControls,
    #carouselExampleControls .carousel-inner,
    #carouselExampleControls .carousel-item {
        height: 100vh;
    }

    #carouselExampleControls img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    .store-landing,
.container-background {
    position: relative;
}

.container-background {
    min-height: 100vh;
}
.landing-page-container {
    position: absolute;
    inset: 0;
    z-index: 2;
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-line-1,
.hero-line-2 {
    display: block;
}

.hero-line-2 {
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 16px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #1f2a44;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.4rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .hero-button {
            font-size: 1rem;
            padding: 12px 22px;
        }
    }
    .profile-section {
    padding: 80px 0;
    background: #f8f9fb;
    font-family: 'Poppins', sans-serif;
}

.profile-person-card {
    position: relative;
    width: 100%;
    height: 680px;
max-width: 500px;
    border-radius: 36px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.profile-person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.profile-person-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 42px 24px 38px;
    text-align: center;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
}


.profile-person-overlay h3 {
    margin: 0 0 8px;
    font-size: 2rem;
    font-weight: 700;
}

.profile-person-overlay p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.profile-content {
    padding: 10px 10px 0 10px;
    font-size: 11px;
}

.profile-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
}

.profile-title {
    font-size: clamp(1rem, 2vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

.profile-title .highlight {
    background: #16d87f;
    border-radius: 999px;
    padding: 0 10px 4px;
    display: inline-block;
}

.profile-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    max-width: 95%;
    margin-bottom: 16px;
}

.profile-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #16d87f;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0px;
}

.profile-building-card {
    border-radius: 36px;
    overflow: hidden;
    min-height: 330px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.profile-building-image {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

#profileBuildingCarousel .carousel-inner,
#profileBuildingCarousel .carousel-item {
    border-radius: 36px;
    overflow: hidden;
}

#profileBuildingCarousel .carousel-control-prev,
#profileBuildingCarousel .carousel-control-next {
    width: 12%;
}

#profileBuildingCarousel .carousel-control-prev-icon,
#profileBuildingCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    padding: 18px;
}
.carousel-item {
    height: 400px; /* atau ukuran kamu sekarang */
}

.profile-building-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 biar gambar pas */
}
.profile-building-image {
    cursor: pointer;
    transition: 0.3s;
}

.profile-building-image:hover {
    transform: scale(1.03);
}


@media (max-width: 991px) {
    .profile-person-card {
        min-height: 520px;
    }

    .profile-title br {
        display: none;
    }

    .profile-building-image {
        height: 260px;
    }
}
.bidang-section {
    padding: 80px 0;
    background: #f8f9fb;
    font-family: 'Poppins', sans-serif;
}

.bidang-header {
    margin-bottom: 48px;
}

.bidang-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 14px;
}

.bidang-heading {
    font-size: clamp(1rem, 2vw, 2.5rem);
    line-height: 1.08;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.bidang-heading .highlight {
    display: inline-block;
    background: #18d67f;
    border-radius: 999px;
    padding: 0 12px 4px;
}

.bidang-card {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 91px;
    text-decoration: none;
    color: #fff;
}

.bidang-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bidang-card-large {
    height: 563px;
     border-radius: 50px;
}

.bidang-card-small {
    height: 563px;
    border-radius: 50px;
}

.bidang-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.3),
        transparent
    );
    z-index: 1;
    pointer-events: none;
}

.bidang-content {
    position: absolute;
    z-index: 2;
    color: #fff;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    width: 80%;

    opacity: 0;
    transition: 0.4s;
}

.bidang-item.active .bidang-content {
    opacity: 1;
}

.bidang-content h3 {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 16px;
}

.bidang-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 auto 20px;
    max-width: 620px;
}

.bidang-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    font-weight: 600;
}

.bidang-btn span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bidang-vertical-title {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    padding: 20px 10px;
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.bidang-nav {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 28px;
}

.bidang-arrow {
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 2rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

@media (max-width: 991px) {
    .bidang-card-large,
    .bidang-card-small {
        height: 360px;
    }

    .bidang-heading br {
        display: none;
    }
}

@media (max-width: 767px) {
    .bidang-card-small {
        height: 220px;
    }

    .bidang-vertical-title {
        writing-mode: initial;
        transform: none;
        font-size: 1rem;
        padding: 20px;
    }
}

.news-subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 5px;
}

.news-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
}

.highlight {
    background: #1cc88a;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.news-tabs {
    margin: 20px 0;
}

.news-tabs .tab {
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 5px;
    background: #eee;
    cursor: pointer;
    transition: 0.3s;
}

.news-tabs .active {
    background: #1cc88a;
    color: white;
}
#berita-content {
    padding-bottom: 80px !important; /* Nilai 80px untuk menutupi pergeseran 40px */
}
.news-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap; /* Jika cards membungkus ke bawah */
    gap: 15px; /* Ini mengatur jarak antar kartu, bukan jarak ke tombol */
    justify-content: flex-end;
    margin-top: 20px !important;
}

/* card */
.news-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    width: 260px;   /* fix lebar */
    height: 350px;  /* fix tinggi */
    flex-shrink: 0; /* biar ga ngecil */
}

/* gambar */
.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}



.news-card:nth-child(even) {
    transform: translateY(40px);
}

/* hover FIX (ikut posisi awal) */
.news-card:nth-child(odd):hover {
    transform: translateY(-35px) scale(1.03);
}

.news-card:nth-child(even):hover {
    transform: translateY(25px) scale(1.03);
}

.news-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    padding-bottom: 50px;
    text-align: left !important;
    align-items: flex-start;
    color: white;
    
    /* Tambahkan ini untuk layer gelap & animasi */
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 80%);
    opacity: 0; /* Awalnya disembunyikan */
    visibility: hidden; /* Agar tidak bisa diklik saat tersembunyi */
    transition: opacity 0.4s ease, visibility 0.4s;
}

/* 2. Tambahkan aksi saat card di-hover */
.news-card:hover .news-overlay {
    opacity: 1; /* Munculkan saat kursor masuk */
    visibility: visible;
}

/* judul */
.news-overlay h5 {
    font-size: 16px;
    font-weight: 600;
}

/* isi */
.news-overlay p {
    font-size: 13px;
}

/* tanggal */
.news-overlay small {
    font-size: 11px;
}
/* tombol */
.news-btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    font-size: 12px;
    backdrop-filter: blur(5px); /* efek glass */
}

/* tombol bawah */
.btn-more {
    background: #1cc88a;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
}

/* ====== FLOATING ====== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* semua card sama tinggi */
.news-card {
    flex: 1 1 calc(25% - 20px); /* 4 kolom */
    max-width: calc(25% - 20px);
    height: 350px;
}

/* efek zig-zag posisi */
.card-0 {
    transform: translateY(-20px);
}

.card-1 {
    transform: translateY(40px);
}

.card-2 {
    transform: translateY(-10px);
}

.card-3 {
    transform: translateY(30px);
}

/* DELAY BIAR GA BARBAR */
.card-0 { animation-delay: 0s; }
.card-1 { animation-delay: 1s; }
.card-2 { animation-delay: 2s; }
.card-3 { animation-delay: 3s; }

.card-0:hover {
    transform: translateY(-35px) scale(1.03);
}

.card-1:hover {
    transform: translateY(25px) scale(1.03);
}

.card-2:hover {
    transform: translateY(-25px) scale(1.03);
}

.card-3:hover {
    transform: translateY(15px) scale(1.03);
}
.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
     animation: float 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-8px); } /* jangan terlalu jauh */
    100% { transform: translateY(0px); }
}
.card-0 .card-inner { animation-delay: 0s; }
.card-1 .card-inner { animation-delay: 1s; }
.card-2 .card-inner { animation-delay: 2s; }
.card-3 .card-inner { animation-delay: 3s; }

.news-card:hover .card-inner {
    transform: scale(1.05) translateY(-5px);
}
.btn-wrapper {
    display: flex;
    justify-content: flex-end; /* Rata kanan */
    margin-top: 20px !important; /* Ganti dari -10px ke positif agar ada jarak */
    width: 100%;
}
@media (max-width: 768px) {

    .news-wrapper {
        flex-direction: column; /* 1 card per baris */
        align-items: center;
        gap: 15px;
    }

    .news-card {
        width: 100%;
        max-width: 350px;
        height: 300px;
    }

    /* matikan zig-zag */
    .card-0,
    .card-1,
    .card-2,
    .card-3 {
        transform: none !important;
    }

    /* matikan animasi */
    .card-inner {
        animation: none;
    }

    /* tombol biar center */
    .mt-4 {
        text-align: center !important;
    }
}
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.galeri-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

/* Gambar default */
.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease; /* Transisi halus untuk semua efek */
}

/* Overlay (Layer Gelap & Teks) */
.galeri-item .overlay {
    position: absolute;
    inset: 0; /* Menutupi seluruh gambar */
    background: rgba(0, 0, 0, 0.6); /* Warna hitam transparan */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    opacity: 0; /* Disembunyikan secara default */
    transition: opacity 0.5s ease;
    padding: 20px;
    text-align: center;
}

/* EFEK HOVER */
.galeri-item:hover img {
    filter: blur(5px) brightness(0.7); /* Gambar jadi blur dan sedikit redup */
    transform: scale(1.1); /* Gambar sedikit membesar */
}

.galeri-item:hover .overlay {
    opacity: 1; /* Memunculkan overlay */
}

/* Item besar (sesuai layoutmu) */
.galeri-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Mobile */
@media (max-width: 768px) {
    .galeri-grid {
        grid-template-columns: 1fr;
    }
    .galeri-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 250px;
    }
}
.custom-container {
    max-width: calc(100% - 100px); /* 50 kiri + 50 kanan */
    margin: 0 auto;
}
/* ===== CAROUSEL BIDANG ===== */
.bidang-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    overflow: visible; 
    padding: 40px 0; /* Add padding so cards don't get clipped on hover */
}
/* semua card */
.bidang-item {
    position: relative;
    width: 220px;
    height: 450px; /* Standardized height */
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    cursor: pointer;
}

/* gambar */
.bidang-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* ACTIVE (tengah besar) */
.bidang-item.active {
    width: 450px; /* Reduced slightly to prevent clipping if container is tight */
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* kiri kanan */
.bidang-item.prev,
.bidang-item.next {
    opacity: 0.7;
    z-index: 2;
}

/* yang jauh */
.bidang-item.hidden {
    transform: scale(0.7);
    opacity: 0.3;
    z-index: 1;
}



/* vertical text */
.bidang-vertical-title {
    position: absolute;
    z-index: 2;
    color: #fff;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    width: 80%;

    writing-mode: initial;
    transform: translate(-50%, -50%);
}
.bidang-item {
    width: 220px;
}

.bidang-item.active {
    width: 500px;
}
.bidang-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bidang-item:hover .bidang-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.4),
        transparent
    );
}
.bidang-item.active img {
    transform: scale(1.05); /* Slight zoom for active item */
}


    </style>