.service-carousel-one,
.blog-carousel {
    position: relative;
}

.service-carousel-one .owl-nav,
.blog-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.blog-carousel .owl-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
    transform: none;
}

.service-carousel-one .owl-nav .owl-prev,
.service-carousel-one .owl-nav .owl-next,
.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
    pointer-events: auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0A1D4E !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(10, 29, 78, 0.12);
    box-shadow: 0 8px 24px rgba(10, 29, 78, 0.18);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-carousel-one .owl-nav .owl-prev i,
.service-carousel-one .owl-nav .owl-next i,
.blog-carousel .owl-nav .owl-prev i,
.blog-carousel .owl-nav .owl-next i {
    transition: transform 0.3s ease;
}

.service-carousel-one .owl-nav .owl-prev:hover,
.service-carousel-one .owl-nav .owl-next:hover,
.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
    background: #FFDA00 !important;
    border-color: #FFDA00;
    color: #0A1D4E !important;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 218, 0, 0.35);
}

.service-carousel-one .owl-nav .owl-prev:hover i,
.blog-carousel .owl-nav .owl-prev:hover i {
    transform: translateX(-3px);
}

.service-carousel-one .owl-nav .owl-next:hover i,
.blog-carousel .owl-nav .owl-next:hover i {
    transform: translateX(3px);
}

.service-carousel-one .owl-nav .owl-prev:active,
.service-carousel-one .owl-nav .owl-next:active,
.blog-carousel .owl-nav .owl-prev:active,
.blog-carousel .owl-nav .owl-next:active {
    transform: scale(0.95);
}

.service-carousel-one .owl-nav .owl-prev { margin-left: 20px; }
.service-carousel-one .owl-nav .owl-next { margin-right: 20px; }

.service-carousel-one .owl-nav .disabled,
.blog-carousel .owl-nav .disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 768px) {
    .service-carousel-one .owl-nav .owl-prev,
    .service-carousel-one .owl-nav .owl-next,
    .blog-carousel .owl-nav .owl-prev,
    .blog-carousel .owl-nav .owl-next {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .service-carousel-one .owl-nav .owl-prev { margin-left: 10px; }
    .service-carousel-one .owl-nav .owl-next { margin-right: 10px; }
}