
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/* Back to Top Button Styling */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            width: 50px;
            height: 50px;
            display: none;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: white;
            text-decoration: none;
        }

        .back-to-top.show {
            display: flex;
            animation: fadeInUp 0.5s ease;
        }


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: #f3c2e0;
    min-height: 50px; /* atur tinggi minimal navbar */
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
            /* biar dropdown muncul di luar tanpa scroll */

}

.nav-bar .nav-link {
    font-size: 0.9rem; /* kecilkan ukuran font link navbar */
    padding: 0.3rem 0.6rem;
}

.nav-bar img.logo {
    max-height: 35px; /* pastikan logo tidak terlalu tinggi */
}

.sticky-top {
    position: sticky;
    transition: 1s;
    z-index: 1020;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: .5s;
    opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .text-white div {
    font-size: 16px;
    letter-spacing: 0.5px;
    }

    .navbar .text-white small {
        font-size: 13px;
        opacity: 0.85;
    }

    .title-shadow {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* bayangan hitam transparan */
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .subtitle-shadow {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        font-size: 13px;
        opacity: 0.9;
    }
}
/*** Navbar End ***/



/*** Carousel Header Start ***/

.custom-font {
    font-family: 'BubbleboddyBold', sans-serif;
}
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel-img {
    width: 100%;
    height: 100vh; /* atau 75vh kalau terlalu tinggi */
    object-fit: cover;
    object-position: center;
}


.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: none !important; /* atau hilangkan sama sekali */
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top:10px;
    margin-bottom:10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}
/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
    background: var(--bs-light);
}

.feature .feature-item {
    display: flex;
    border-radius: 10px;
}

.feature .feature-item .feature-icon span {
    width: 90px; 
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

.about .about-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    
}

.about .about-img .img-1 {
    height: 85%;
    margin-right: 50px;
}

.about .about-img .img-2 {
    position: absolute;
    width: 100%; 
    bottom: 0; 
    right: 0;
    padding-left: 50px;
    border-radius: 10px;
}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 98%;
    top: 0;
    right: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    z-index: -1;
}

.about .about-item .text-item {
    position: relative;
    padding-left: 25px;
}

.about .about-item .text-item::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
}
/*** About End ***/


/*** Fact Counter Start ***/
.counter {
    background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../img/fact-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item .counter-item-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    background: var(--bs-light);
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover::after {
    opacity: 1;
}

.service .service-item .service-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}
/*** Service End ***/

/* Glow Animate */
.glow-animate {
  color: #fefeff; /* biru elegan */
  text-shadow:
    0 0 5px #0073e6,
    0 0 10px #0073e6,
    0 0 20px #0073e6,
    0 0 40px #0073e6;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 5px #0073e6,
      0 0 10px #0073e6,
      0 0 20px #0073e6,
      0 0 40px #0073e6;
  }
  50% {
    text-shadow:
      0 0 2px #0073e6,
      0 0 5px #0073e6,
      0 0 10px #0073e6,
      0 0 20px #0073e6;
  }
  100% {
    text-shadow:
      0 0 5px #0073e6,
      0 0 10px #0073e6,
      0 0 20px #0073e6,
      0 0 40px #0073e6;
  }
}
/* End Glow Animate */

 .nav-bar {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .nav-bar .navbar-brand img {
        max-height: 60px !important;
    }

    .nav-bar .navbar-nav .nav-link {
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 0.9rem;
    }

/* Logo && Navbar */

/* Logo tetap besar */
.logo-navbar {
    max-height: 130px;
    height: auto;
    width: auto;
}

/* Navbar dikurangi padding agar lebih ramping */
.custom-navbar {
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 60px; /* pastikan cukup untuk logo */
    align-items: center;
}

/* (Opsional) agar tengah presisi */
.custom-navbar .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
/* End Logo -- End */

/* Button Navbar API */
.button-container {
            position: relative;
            width: 220px;
            height: 60px;
        }

.btn-primary {
            position: relative;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            background: linear-gradient(45deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
            background-size: 400%;
            color: white;
            font-weight: bold;
            border: none;
            border-radius: 30px;
            padding: 12px 24px;
            font-size: 18px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            overflow: hidden;
            z-index: 1;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .btn-primary:hover {
            animation: glowing 8s linear infinite;
            transform: translateY(-3px);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
        }

        .btn-primary:before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            z-index: -1;
            background: linear-gradient(45deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
            background-size: 400%;
            border-radius: 40px;
            opacity: 0;
            transition: 0.5s;
            animation: glowing 8s linear infinite;
            filter: blur(8px);
        }

        .btn-primary:hover:before {
            opacity: 1;
        }

        .btn-primary:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            left: 0;
            top: 0;
            border-radius: 30px;
            z-index: -1;
        }

        @keyframes glowing {
            0% {
                background-position: 0 0;
            }
            50% {
                background-position: 400% 0;
            }
            100% {
                background-position: 0 0;
            }
        }

        /* Efek partikel api */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 100, 0, 0.8);
            animation: rise 1.5s ease-in infinite;
        }

        @keyframes rise {
            0% {
                transform: translateY(0) scale(0);
                opacity: 0;
            }
            20% {
                opacity: 1;
            }
            80% {
                opacity: 1;
            }
            100% {
                transform: translateY(-50px) scale(1.2);
                opacity: 0;
            }
        }


/* Api END */

/* New Podium */

.podium-container {
    padding-top: 1rem;
}

.podium-effect {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        animation: glow 1.5s infinite alternate;
    }

    
.podium-box {
    display: flex;
    justify-content: center;
}

.podium-card {
    width: 100%;
    max-width: 220px;
    padding: 1rem;
    border-radius: 16px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.img-podium {
     width: 110px;
    height: 150px;

    object-fit: cover;
    object-position: 50% 15%; /* fokus ke wajah */

    border-radius: 14px;
    display: block;
    margin: 0 auto;
    background-color: #fff;
}

/*.podium-1 .img-podium {*/
/*    width: 115px;*/
/*    height: 150px;*/
/*    box-shadow: 0 8px 20px rgba(0,0,0,0.25);*/
/*}*/

.podium-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 18px 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.podium-card:hover {
    transform: translateY(-6px);
}


.podium-1 .podium-card {
    min-height: 220px; /* ✅ Lebih tinggi dari yang lain */
    transform: translateY(-10px); /* ✅ Naik sedikit agar menonjol */
    z-index: 2;
    position: relative;
}

/* Mahkota agar tampil bagus */
.mahkota {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
}

.juara {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1028ff;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
}

.bg-orange {
    background-color: #c47f32;
    color: #fff;
}
/* end Podium NEW */


/* Filter Dashboard */
    .form-switch .form-check-input {
        width: 2.5em;
        height: 1.5em;
    }
    #peserta-table-body tr:hover {
        background-color: #f8f9fa;
    }
/* End Fitru Dashboard */

/* Responsive: Mobile, tampil vertikal */
@media (max-width: 770px) {
    .podium {
        max-width: 100%;
        transform: none !important; /* hilangkan efek naik */
    }
    .podium-1 { order: 2; }
    .podium-2 { order: 1; }
    .podium-3 { order: 3; }
}

    .chart-container-wrapper {
    width: 100%;
    padding: 0 1rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.chart-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.chart-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 400px;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .chart-container {
        height: 300px;
    }

    .chart-card {
        padding: 1rem;
    }
}
    /* Padding Beranda T3 dan bawahnya */
    
     .section-top3 {
    background-color: #f5f6fa; /* samakan dengan abu-abu latar konten */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: none; /* pastikan tidak ada border putih */
}

.table-container {
    margin-bottom: 0;
    background-color: inherit; /* pastikan warna sama */
}

.table-container table {
    background-color: transparent;
    border-collapse: collapse;
}
/* Glow */
.countdown-container {
            text-align: center;
            font-family: 'Orbitron', sans-serif;
        }
        
        .countdown-title {
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0073e6, 0 0 20px #0073e6;
            font-size: 24px;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .countdown-segment {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .countdown-value {
            font-size: 39px;
            font-weight: bold;
            color: #fff704;
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #00ffff, 0 0 20px #00ffff, 0 0 25px #00ffff;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 10px 20px;
            border-radius: 5px;
            min-width: 35px;
            text-align: center;
        }
        
        .countdown-label {
            color: #fff;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            margin-top: 5px;
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0073e6, 0 0 20px #0073e6;

        }
        
        /* Efek kedipan */
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .countdown-value {
            animation: blink 2s infinite;
        }
        
        /* Efek cahaya latar */
        .glow {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
            z-index: -1;
            animation: pulse 4s infinite alternate;
        }
        
        @keyframes pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        /* End Glow */

/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Cars Categories End ***/


/*** Process Start ***/
.steps {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.steps .steps-item {
    position: relative;
    background: var(--bs-secondary);
    border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-white);
}

.steps .steps-item .setps-number {
    position: absolute;
    width: 64px;
    height: 64px;
    bottom: 0; 
    right: 40px;
    font-weight: 900;
    border: 1px solid var(--bs-white); 
    border-radius: 64px;
    transform: translateY(50%);
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*** Process End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}  

.blog .blog-item .blog-content {
    position: relative;
    background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
    position: absolute;
    top: 0; 
    left: 25px; 
    transform: translateY(-50%);
    padding: 12px 25px;
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
    display: flex;
    justify-content: space-between;
}
/*** Blog End ***/

/* Content Wrapper */
.countdown-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

/* Banner 1 */

@font-face {
    font-family: 'BubbleBody';
    src: url('/fonts/BubbleBody.ttf') format('truetype'); /* pastikan path benar */
}

@font-face {
    font-family: 'KristenITC';
    src: url('/fonts/KristenITC.ttf') format('truetype');
}

.custom-banner {
    background: linear-gradient(135deg, #0dcaf0b3 15%, #ff9c094d 100%);
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: white;
    max-width: 100%;
    width: 90%;
    max-width: 800px;
}

.banner-title {
    font-size: 2rem;
    font-weight: 900;
    color: rgb(255, 255, 255);
    font-family: 'BubbleBody', sans-serif;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
}

.banner-title1 {
    font-family: 'Bubbleboddy';
    src: url('/fonts/BubbleboddyNeue-Bold Trial.ttf') format('truetype');
    font-size: 2rem;
    font-weight: 900;
    color: rgb(255, 255, 255);
    text-shadow: 2px 1px 2px rgb(0, 0, 0);
    margin-bottom: 10px;
}

.banner-subtitle1 {
    font-family: 'Bubbleboddy';
    src: url('/fonts/BubbleboddyNeue-Bold Trial.ttf') format('truetype');
    font-size: 2rem;
    font-weight: 900;
    color: rgb(255, 255, 255);
    text-shadow: 2px 1px 2px rgb(0, 0, 0);
    margin-bottom: 10px;
}

.banner-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    font-family: 'KristenITC', cursive;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Banner Carousel 1 */

/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}
/*** Banner End ***/

/* Tambahan */
.gradient-bg {
    background-image: url('/template-frontend/img/backgroundwarna.png'); /* Ganti sesuai path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}



/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #dddf59;
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}
.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px; 
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px; 
    height: 90px; 
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/


.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/*** copyright end ***/


@font-face {
    font-family: 'Bubbleboddy';
    src: url('/fonts/BubbleboddyNeue-Bold Trial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    
}

.hero-title {
    font-family: 'Bubbleboddy', sans-serif;
    text-shadow: 2px 1px 2px rgb(0, 0, 0);

}

/* Navbar Custom Gold */
.navbar-custom {
    background: linear-gradient(90deg, #000000, #716622); /* gold gradient */
    padding: 10px 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.navbar-custom .navbar-brand img.logo {
    height: 45px;
}

.navbar-custom .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: #000 !important;
}

/* Dropdown Menu */
.navbar-custom .dropdown-menu {
    background: #fff;
    border-radius: 8px;
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Vote Button */
.btn-maroon {
    background-color: #4b0000;
    color: #fff;
    border: none;
    transition: 0.3s;
}
.btn-maroon:hover {
    background-color: #800000;
    color: #fff;
}

/* Cart Button */
.btn-cart {
    background: #fff;
    color: #b8860b;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.btn-cart:hover {
    background: #f9f2d0;
    color: #8b7500;
}

/* Navbar Sticky Transparan */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.4s ease;
    background: rgba(255, 215, 0, 0.2); /* gold transparan */
    backdrop-filter: blur(5px);
}

/* Saat scroll, jadi solid gold */
.navbar-sticky.scrolled {
    background: linear-gradient(90deg, #b8860b, #ffd700);
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}
