/* Sertifikasi Carousel */
.vfl-sertifikasi-carousel-wrapper {
    background: #f0f0f0;
    padding: 40px;
    border-radius: 15px;
}

.vfl-sertifikasi-frame {
    border: 8px solid #8B9500;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    background: #fff;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.vfl-sertifikasi-frame:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.vfl-sertifikasi-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
/* Corner "cutouts" effect */
.vfl-sertifikasi-frame::before,
.vfl-sertifikasi-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid #8B9500;
    border-radius: 50%;
}
.vfl-sertifikasi-frame::before {
    top: -12px;
    left: -12px;
}
.vfl-sertifikasi-frame::after {
    top: -12px;
    right: -12px;
}
/* Bottom corners */
.vfl-sertifikasi-frame-bottom-cutout::before,
.vfl-sertifikasi-frame-bottom-cutout::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid #8B9500;
    border-radius: 50%;
    bottom: -12px;
}
.vfl-sertifikasi-frame-bottom-cutout::before {
    left: -12px;
}
.vfl-sertifikasi-frame-bottom-cutout::after {
    right: -12px;
}

.vfl-sertifikasi-content {
    z-index: 1;
}
.vfl-sertifikasi-nomor {
    font-size: 11px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 5px;
}
.vfl-sertifikasi-judul {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}
.vfl-sertifikasi-logo {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 40px;
}
.vfl-sertifikasi-logo img {
    max-width: 100%;
    height: auto;
}
.vfl-sertifikasi-seal {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #8B9500;
    font-size: 30px;
    z-index: 2;
}
.vfl-sertifikasi-seal svg {
    width: 30px;
    height: 30px;
    fill: #8B9500;
}

.vfl-sertifikasi-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}
.vfl-sertifikasi-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}
.vfl-sertifikasi-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.vfl-sertifikasi-carousel .owl-dot.active span {
    background: #666;
}

/* Navigation Arrows */
.vfl-sertifikasi-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}
.vfl-sertifikasi-carousel .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #8B9500 !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.vfl-sertifikasi-carousel .owl-nav button:hover {
    background: #6D7500 !important;
    transform: scale(1.1);
}
.vfl-sertifikasi-carousel .owl-nav button.owl-prev {
    left: -20px;
}
.vfl-sertifikasi-carousel .owl-nav button.owl-next {
    right: -20px;
}
.vfl-sertifikasi-carousel .owl-nav button .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .vfl-sertifikasi-carousel .owl-nav {
        display: none;
    }
}
