/* Custom styles for services carousel navigation */
.services-carousel-container {
    position: relative;
}

.services-carousel-one .owl-nav {
    display: block !important;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.services-carousel-one .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(0,70,192,0.8) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 18px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.services-carousel-one .owl-nav button:hover {
    background-color: rgba(255,158,25,0.9) !important;
    transform: scale(1.05);
}

.services-carousel-one .owl-nav .owl-prev {
    left: -20px;
}

.services-carousel-one .owl-nav .owl-next {
    right: -20px;
}

@media (max-width: 767px) {
    .services-carousel-one .owl-nav button {
        opacity: 0.8;
        width: 30px;
        height: 30px;
    }

    .services-carousel-one .owl-nav .owl-prev {
        left: -15px;
    }

    .services-carousel-one .owl-nav .owl-next {
        right: -15px;
    }
}
