.text-justify {
    text-align: justify;
}

/*** service Start ***/
.resume {
    background: linear-gradient(rgba(255, 72, 128, 0.05), rgba(255, 72, 128, 0.2));
}

/* Table schedule responsif dengan kolom maksimal 160px */
.schedule-table {
    table-layout: auto; /* biarkan kolom menyesuaikan isi */
}

/* Header hari (misalnya: Sunday, Monday, dst) */
.schedule-table th.day-col {
    max-width: 160px;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Sel jadwal dengan event */
.schedule-table td.schedule-cell {
    max-width: 160px;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Kolom minggu (Week 1, Week 2, dst) */
.schedule-table td.week-col,
.schedule-table th.week-col {
    white-space: nowrap;
}

/* Ukuran font dasar */
.schedule-table thead,
.schedule-table th,
.schedule-table td {
    font-size: 14px;
    vertical-align: middle;
}

/* Highlight event aktif (misalnya hari ini) */
.schedule-table td.active-event {
    font-weight: 600;
}

/* Hover efek pada sel yang punya event */
.schedule-cell:hover {
    background-color: #ffe5ec;
    cursor: pointer;
}



/* Responsive overflow handled by Bootstrap .table-responsive */


/* Media query kecil untuk penyesuaian padding dan ukuran minimum */
@media screen and (max-width: 575px) {
    .schedule-table table tbody td.day {
        min-width: 135px;
    }
    .schedule-table table thead th {
        padding: 12px 10px;
        font-size: 14px;
        white-space: normal; /* agar header bisa pecah kata di layar sangat kecil */
    }
    .schedule-table table tbody td {
        padding: 10px 8px;
        font-size: 13px;
    }
    .schedule-table table tbody td.active h4 {
        font-size: 16px; /* minimal font agar tetap terbaca */
    }
}

/* Scoped ke .media-carousel */
.media-carousel .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.98) 10%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(255, 255, 255, 0.45) 60%,
        rgba(255, 255, 255, 0.25) 70%,
        rgba(255, 255, 255, 0.1) 85%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 5;
}

.media-carousel .carousel-indicators-vertical {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
}

.media-carousel .carousel-indicators-vertical button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    cursor: pointer;
}

.media-carousel .carousel-indicators-vertical button.active,
.media-carousel .carousel-indicators-vertical button:hover {
    background-color: var(--bs-primary);
    transform: scale(1.3);
}

@media (min-width: 992px) {
    .media-category .card-title {
        font-size: 0.9rem;
    }
    .media-category .card-text {
        font-size: 0.8rem;
    }
}

.category-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 120px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.category-card:hover {
    transform: scale(1.03); /* zoom ringan */
}

.category-card:hover::before {
    background-color: rgba(0, 0, 0, 0.6); /* makin gelap saat hover */
}

.category-card .card-body {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.category-card:hover .card-body {
    transform: translateY(-2px); /* naik sedikit saat hover */
}

.card-style-1 {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 200px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-style-1::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.card-style-1:hover {
    transform: scale(1.03); /* zoom ringan */
}

.card-style-1:hover::before {
    background-color: rgba(0, 0, 0, 0.4); /* makin gelap saat hover */
}

.card-style-1 .card-body {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.card-style-1:hover .card-body {
    transform: translateY(-2px); /* naik sedikit saat hover */
}

.card-style-2 {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 200px;
    overflow: hidden;
    transition: transform 0.3s ease;
}


/*Recommended video slid*/
.recommended-video .video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem; /* bootstrap rounded */
    transition: transform 0.3s ease;
    min-width: 250px;
    cursor: pointer;
}
.recommended-video .video-thumbnail:hover {
    transform: scale(1.03);
}
.recommended-video .video-thumbnail img {
    border-radius: 0.5rem;
    display: block;
    width: 100%;
}

.recommended-video .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: white;
    opacity: 0.85;
    pointer-events: none;
}
.recommended-video .sale-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: #dc3545; /* bootstrap danger */
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    white-space: nowrap;
}


/* Responsive video: 16x9 untuk layar besar */
.responsive-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 9 / 16 * 100 */
    height: 0;
}


.responsive-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

/* Mobile: 16x9 */
@media (max-width: 768px) {
    .responsive-video {
        padding-bottom: 56.25%; /* 9 / 16 * 100 */
    }
}

.article-carousel .owl-dots {
    position: absolute;
    top: 30px;
    right: 25px;
    width: 100%;
    height: 20px;
    text-align: right;
}

.article-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    transition: .5s;
}

.article-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.article-header .article-overlay,
.article-carousel .article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #1e2024);
    z-index: 1;
}

.article-header a:hover,
.article-carousel a:hover {
    color: #b38f00;
    text-decoration: underline;
}

.article-header a.badge:hover,
.article-header a.badge:focus,
.article-carousel a.badge:hover,
.article-carousel a.badge:focus {
    color: #212529;
    background-color: #4d65f9;
    text-decoration: none;
}



.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    min-width: 20px;
    text-align: center;
}

.info-label {
    font-weight: bold;
    margin-right: 4px;
}

.info-value {
    font-weight: normal;
}


.star-journey .timeline {
    position: relative;
    width: 100%;
}

.star-journey .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--bs-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.star-journey .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.star-journey .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.star-journey .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.star-journey .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid var(--bs-primary);
    border-radius: 16px;
    z-index: 1;
}

.star-journey .timeline .timeline-item.right::after {
    left: -8px;
}

.star-journey .timeline .timeline-item::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 46px;
    right: 10px;
    z-index: 1;
    border: 10px solid;
    border-color: transparent transparent transparent #ffecf2;
}

.star-journey .timeline .timeline-item.right::before {
    left: 10px;
    border-color: transparent #ffecf2 transparent transparent;
}

.star-journey .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: var(--bs-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.star-journey .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.star-journey .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.star-journey .timeline .timeline-text {
    padding: 30px;
    background: #ffffff;
    position: relative;
    border-right: 5px solid #ffecf2;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

.star-journey .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid #ffecf2;
}

.star-journey .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
}

.star-journey .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.star-journey .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .star-journey .timeline::after {
        left: 8px;
    }

    .star-journey .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }

    .star-journey .timeline .timeline-item.left {
        padding-right: 0;
    }

    .star-journey .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .star-journey .timeline .timeline-item.left::after,
    .star-journey .timeline .timeline-item.right::after {
        left: 0;
    }

    .star-journey .timeline .timeline-item.left::before,
    .star-journey .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent #ffecf2 transparent transparent;
    }

    .star-journey .timeline .timeline-item.left .timeline-date,
    .star-journey .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }

    .star-journey .timeline .timeline-item.left .timeline-text,
    .star-journey .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 5px solid #ffecf2;
    }
}


/**********************************/
/********* Timeline Content CSS **********/
/**********************************/
.timeline-content {
    position: relative;
    background: #ffffff;
}

.timeline-content .edu-col {
    position: relative;
    width: 100%;
    padding: 20px 0 20px 20px;
    border-left: 1px solid var(--bs-primary);
    border-bottom: 1px solid var(--bs-primary);
}

.timeline-content .col-md-6:first-child .edu-col {
    padding-top: 0;
}

.timeline-content .col-md-6:last-child .edu-col {
    border-bottom: none;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .timeline-content .col-md-6:nth-child(-n+2) .edu-col {
        padding-top: 0;
    }

    .timeline-content .col-md-6:last-child .edu-col,
    .timeline-content .col-md-6:nth-last-child(2) .edu-col {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.timeline-content .edu-col span {
    position: relative;
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-content .edu-col span::before {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background: var(--bs-primary);
    top: 5px;
    left: -26px;
    border-radius: 5px;
}

.timeline-content .edu-col span i {
    color: var(--bs-primary);
}

.timeline-content .edu-col h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.timeline-content .edu-col p {
    margin: 0;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    background-color: #fff;
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--bs-primary), transparent 0%);
    padding: 15px 20px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    background-color: #ffecf2;
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.features .nav-link.active {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
}

.features .nav-link.active h4 {
    color: #fff;
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }

    .features .nav-link i {
        font-size: 24px;
    }
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 5px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--bs-primary);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}



/*--------------------------------------------------------------
# Features Alt Section
--------------------------------------------------------------*/
.features-alt {
    padding-top: 30px;
    padding-bottom: 60px;
}

.features-alt .nav-tabs {
    border: none;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.features-alt .nav-tabs .nav-item {
    margin-bottom: 15px;
}

.features-alt .nav-tabs .nav-item:last-child {
    margin-bottom: 0;
}

.features-alt .nav-tabs .nav-link {
    padding: 20px;
    border: none;
    border-radius: 12px;
    background: #ffecf2;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.features-alt .nav-tabs .nav-link .d-flex {
    position: relative;
    z-index: 1;
}

.features-alt .nav-tabs .nav-link .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--bs-primary), transparent 92%);
    transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link .icon-box i {
    font-size: 24px;
    color: var(--bs-primary);
    transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--bs-primary);
    transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link p {
    font-size: 14px;
    margin: 0;
    color: color-mix(in srgb, #1a1a1a, transparent 40%);
    transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link:hover {
    transform: translateY(-2px);
}

.features-alt .nav-tabs .nav-link:hover::before {
    opacity: 1;
}

.features-alt .nav-tabs .nav-link:hover .icon-box {
    background: var(--bs-primary);
}

.features-alt .nav-tabs .nav-link:hover .icon-box i {
    color: #ffffff;
}

.features-alt .nav-tabs .nav-link:hover h4 {
    color: var(--bs-primary);
}

.features-alt .nav-tabs .nav-link:hover p {
    color: color-mix(in srgb, #1a1a1a, transparent 20%);
}

.features-alt .nav-tabs .nav-link.active {
    background: var(--bs-primary);
}

.features-alt .nav-tabs .nav-link.active::before {
    opacity: 0;
}

.features-alt .nav-tabs .nav-link.active .icon-box {
    background: color-mix(in srgb, #ffffff, transparent 85%);
}

.features-alt .nav-tabs .nav-link.active .icon-box i {
    color: #ffffff;
}

.features-alt .nav-tabs .nav-link.active h4 {
    color: #ffffff;
}

.features-alt .nav-tabs .nav-link.active p {
    color: color-mix(in srgb, #ffffff, transparent 20%);
}

.features-alt .tab-content .content-box {
    background: #ffecf2;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.features-alt .tab-content .content-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.features-alt .tab-content .content-box h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--bs-primary);
    border-radius: 3px;
}

.features-alt .tab-content .content-box p {
    color: color-mix(in srgb, #1a1a1a, transparent 20%);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.features-alt .tab-content .content-box p.highlight {
    background: linear-gradient(135deg, color-mix(in srgb, var(--bs-primary), transparent 92%), color-mix(in srgb, var(--bs-primary), transparent 95%));
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.features-alt .tab-content .content-box .features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.features-alt .tab-content .content-box .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 8px;
    transition: all 0.3s ease;
}

.features-alt .tab-content .content-box .features-list li:last-child {
    margin-bottom: 0;
}

.features-alt .tab-content .content-box .features-list li i {
    font-size: 20px;
    color: var(--bs-primary);
    margin-right: 12px;
}

.features-alt .tab-content .content-box .features-list li span {
    color: color-mix(in srgb, #1a1a1a, transparent 20%);
}

.features-alt .tab-content .content-box .features-list li:hover {
    transform: translateX(5px);
}

.features-alt .tab-content .content-box .features-list li:hover span {
    color: #1a1a1a;
}

.features-alt .tab-content .content-box .image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-alt .tab-content .content-box .image-box img {
    transition: all 0.6s ease;
}

.features-alt .tab-content .content-box .image-box:hover img {
    transform: scale(1.05);
}

.features-alt .tab-content .content-box .image-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.features-alt .tab-pane {
    transition: all 0.4s ease;
}

.features-alt .tab-pane.fade {
    transform: translateY(10px);
    opacity: 0;
}

.features-alt .tab-pane.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 991px) {
    .features-alt .nav-tabs {
        margin-bottom: 30px;
    }

    .features-alt .nav-tabs .nav-link {
        padding: 15px;
    }

    .features-alt .nav-tabs .nav-link .icon-box {
        width: 40px;
        height: 40px;
    }

    .features-alt .nav-tabs .nav-link .icon-box i {
        font-size: 20px;
    }

    .features-alt .tab-content .content-box {
        padding: 30px;
    }

    .features-alt .tab-content .content-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .features-alt .nav-tabs .nav-item {
        margin-bottom: 10px;
    }

    .features-alt .nav-tabs .nav-link h4 {
        font-size: 15px;
    }

    .features-alt .nav-tabs .nav-link p {
        font-size: 13px;
    }

    .features-alt .tab-content .content-box {
        padding: 25px;
    }

    .features-alt .tab-content .content-box h3 {
        font-size: 22px;
    }

    .features-alt .tab-content .content-box p {
        font-size: 15px;
    }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-video {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-video h1,
.hero-video h2,
.hero-video h3,
.hero-video h4,
.hero-video h5,
.hero-video h6,
.hero-video p {
    color: #fff;
}

.hero-video .hero-container {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 180px 0 80px 0;
}

.hero-video .hero-container .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video .hero-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, #f1f5f4, transparent 30%) 0%, color-mix(in srgb, #f1f5f4, transparent 60%) 100%);
    z-index: 2;
}

.hero-video .hero-container .container {
    z-index: 3;
}

.hero-video .hero-container .hero-content {
    padding-right: 30px;
}

.hero-video .hero-container .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .hero-video .hero-container .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-video .hero-container .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
}

.hero-video .hero-container .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .hero-video .hero-container .hero-content p {
        font-size: 1.1rem;
        text-align: center;
    }
}

.hero-video .hero-container .hero-content .cta-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 576px) {
    .hero-video .hero-container .hero-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.hero-video .hero-container .hero-content .cta-buttons a {
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

@media (max-width: 576px) {
    .hero-video .hero-container .hero-content .cta-buttons a {
        width: 100%;
        max-width: 240px;
    }
}

.hero-video .hero-container .hero-content .cta-buttons .btn-primary {
    background-color: var(--bs-primary);
    color: #ffffff;
    border: 2px solid var(--bs-primary);
}

.hero-video .hero-container .hero-content .cta-buttons .btn-primary:hover {
    background-color: color-mix(in srgb, var(--bs-primary), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-video .hero-container .hero-content .cta-buttons .btn-secondary {
    background-color: color-mix(in srgb, #ffffff, transparent 20%);
    color: #212529;
    border: 2px solid #ffffff;
}

.hero-video .hero-container .hero-content .cta-buttons .btn-secondary:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .hero-video .hero-container .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.hero-video .hero-container .stats-card {
    background-color: color-mix(in srgb, #ffffff, transparent 95%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-video .hero-container .stats-card .stats-header {
    text-align: center;
    margin-bottom: 25px;
}

.hero-video .hero-container .stats-card .stats-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-video .hero-container .stats-card .stats-header .decoration-line {
    height: 3px;
    width: 70px;
    background-color: var(--bs-primary);
    margin: 0 auto;
}

.hero-video .hero-container .stats-card .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.hero-video .hero-container .stats-card .stats-grid .stat-item {
    display: flex;
    align-items: center;
}

.hero-video .hero-container .stats-card .stats-grid .stat-item .stat-icon {
    font-size: 1.8rem;
    height: 55px;
    width: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: var(--bs-primary);
    margin-right: 12px;
    flex-shrink: 0;
}

.hero-video .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.hero-video .hero-container .stats-card .stats-grid .stat-item .stat-content p {
    opacity: 0.8;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .hero-video .hero-container .stats-card .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-video .hero-container {
        text-align: center;
    }
}

.hero-video .event-ticker {
    background-color: var(--bs-primary);
    padding: 25px 0;
    color: #ffffff;
}

.hero-video .event-ticker .ticker-item {
    display: flex;
    align-items: center;
}

.hero-video .event-ticker .ticker-item .date {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 10px;
    border: 1px solid color-mix(in srgb, #ffffff, transparent 50%);
}

.hero-video .event-ticker .ticker-item .title {
    margin-right: 15px;
    font-size: 0.95rem;
}

.hero-video .event-ticker .ticker-item .btn-register {
    background-color: color-mix(in srgb, #ffffff, transparent 85%);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.hero-video .event-ticker .ticker-item .btn-register:hover {
    background-color: #ffffff;
    color: var(--bs-primary);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.5s;
    z-index: 997;
}


.navbar {
    border-bottom: none;
}

.sidebar-home .navbar-nav .nav-link {
    color: #fff;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 32px;
    margin-right: 8px;
}

.header .logo i {
    font-size: 24px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgb(255, 236, 242);

    .sidebar-home .navbar-nav .nav-link {
        color: rgba(0,0,0,.55);
    }

    .sidebar-home .navbar-nav .nav-link.active {
        color: var(--bs-primary);
    }
}

 .btn-social {
     color: #fff !important;
     transition: background-color 0.3s, border-color 0.3s;
 }

.btn-facebook:hover {
    background-color: #3b5998 !important;
    border-color: #3b5998 !important;
}

.btn-twitter:hover {
    background-color: #1da1f2 !important;
    border-color: #1da1f2 !important;
}

.btn-whatsapp:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
}

.btn-telegram:hover {
    background-color: #0088cc !important;
    border-color: #0088cc !important;
}

.btn-email:hover {
    background-color: #343a40 !important;
    border-color: #343a40 !important;
}


.gallery-grid {
    display: block;
    margin-left: -12px;
    margin-right: -12px;
    position: relative; /* Tambahan */
}

.gallery-grid-sizer,
.gallery-grid-item {
    width: 25%; /* 4 kolom */
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    .gallery-grid-sizer,
    .gallery-grid-item {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .gallery-grid-sizer,
    .gallery-grid-item {
        width: 100%;
    }
}

.gallery-grid-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #1e2024);
    z-index: 1;
}


.gallery-thumbnail {
    min-width: 250px;
    height: 175px;
    overflow: hidden;
    position: relative;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem; /* bootstrap rounded */
    transition: transform 0.3s ease;
    min-width: 250px;
    cursor: pointer;
}
.gallery-thumbnail:hover {
    transform: scale(1.03);
}

.achievements-layout .nav-tabs {
    border: 0;
}

.achievements-layout .nav-link{
    border: none;
    background: #ffecf2;
    border-radius: 8px;
    padding: 1.2em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

.achievements-layout .nav-link.active, .achievements-layout .nav-link:hover{
    background: var(--bs-primary);
    color: #fff;
}


.achievements-layout .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

@media (max-width: 575px) {
    .achievements-layout .nav-link i {
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    .achievements-layout .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}
.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.achievements-layout .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.achievements-layout .nav-link.active h4,.achievements-layout .nav-link:hover h4 {
    color: #fff;
}

.achievements-card {
    border: none;
    border-left: 5px solid rgba(255, 72, 128, 0.7);
    background: #ffecf2;
    border-radius: 12px;
    padding: 1em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.achievements-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}


.achievements-card span {
    position: relative;
    display: block;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.achievements-card h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.achievements-card p {
    margin: 0;
}


.schedule-card {
    border: none;
    border-left: 5px solid rgba(255, 72, 128, 0.7);
    background: #ffecf2;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}


.bg-grey{
    background-color: #f8f9fa!important;
}

.content-title{
    font-weight: 600;
    font-size: 1.5rem;
}

.responsive-image {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;

    display: flex;              /* aktifkan flexbox */
    justify-content: center;    /* center horizontal */
    align-items: center;        /* center vertical */
}

.responsive-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg) center/cover no-repeat;
    filter: blur(20px) brightness(0.6);
    transform: scale(1.2);
}

.responsive-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-row {
    font-size: 14px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    box-shadow: inset 0 -1px 0 rgba(255, 214, 226,0.7);
}

.detail-row span {
    font-weight: normal;
    margin: 11px 20px;
}

.detail-row span:first-child {
    font-weight: bold;
}

.detail-row.no-border {
    box-shadow: none;
}


/* default (mobile) → tidak fixed */
.sidebar-fixed {
    position: static;
}

/* desktop (mulai md ke atas) → sticky */
@media (min-width: 768px) {
    .sidebar-fixed {
        position: sticky;
        top: 80px; /* sesuaikan dengan tinggi navbar/header */
        align-self: flex-start; /* penting untuk sticky di grid bootstrap */
    }
}



