.mbk-hero-slide{
    align-items: center;    
    display: flex !important;
}

/* Force Pagination Dots Inside */
.mbk-hero-slider-wrapper .swiper-pagination {
    position: absolute !important;
    bottom: 2rem !important; /* Adjust padding from bottom */
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 50 !important;
    width: auto !important;
}

/* Optional: Style the dots better if needed */
.mbk-hero-slider-wrapper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.mbk-hero-slider-wrapper .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Explicit Layout Classes (Replacing Tailwind) */
.mbk-flex-container {
    display: flex !important;
    flex-direction: column; /* Mobile Default */
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
    .mbk-flex-container {
        gap: 4rem; /* gap-16 */
    }

    .mbk-layout-horizontal {
        flex-direction: row !important;
    }
    .mbk-layout-reverse-horizontal {
        flex-direction: row-reverse !important;
    }
    .mbk-layout-vertical {
        flex-direction: column !important;
    }
    .mbk-layout-reverse-vertical {
        flex-direction: column-reverse !important;
    }
}