.custom-owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* Ensure the nav container doesn't block mouse events */
}

.custom-owl-prev, .custom-owl-next {
    background: #112478;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 26px;
    transition: background 0.3s ease;
    pointer-events: all; /* Allow clicks on the buttons */
}

.custom-owl-prev:hover, .custom-owl-next:hover {
    background: #1b38bb;
    cursor: pointer;
}

.custom-owl-prev {
    position: absolute;
    left: 10px;
}

.custom-owl-next {
    position: absolute;
    right: 10px;
}