/* บังคับให้จุดไข่ปลาลอยขึ้นไปอยู่ด้านใน */
.owl-carousel .owl-dots {
    position: absolute !important;
    bottom: 8px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* (Option) ปรับสีจุดให้เห็นชัดขึ้นเมื่ออยู่บนรูป */
.owl-carousel .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 12px;
    height: 12px;
    margin: 4px 4px;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: #ffffff !important;
    transform: scale(1.2);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}