.new-card {
    display: block;
    cursor: pointer;
    transition: transform 1s ease, box-shadow 0.5s ease;
}

.new-card img {
    position: relative;
    transition: transform 2s ease
}

.new-card img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(5, 28, 44, 0.5);
}

.new-content {
    background-color: rgba(5, 28, 44, 0.2);
}

.new-card:hover {
    transform: scale(0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.new-card:hover img {
    transform: scale(1.05);
}

.divider-line {
    height: 1px;
    background-color: #94a3b8;
    flex: 1;
}

.btn-provider:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.swiper {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}



.swiper-pagination {
    bottom: 16px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    background: #b3b3b3;
    opacity: 1;
    transition: all 0.5s ease;
}

.swiper-pagination-bullet-active {
    width: 20px;
    background: #fff;
}

.swiper .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 28, 44, 0.5);
}

.swiper .swiper-slide-active::after {
    content: none;
}

.carousel-item {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 560px;

}

.service-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(5, 28, 44, 0.5);
}

.carousel-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    height: 5px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-swiper {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}


@media (min-width: 1024px) {}

@media (max-width: 1024px) and (min-width:768px) {}

@media (max-width: 768px) {}


.swiper-a:hover .ri-arrow-right-line {
    animation: right 0.3s ease-out forwards;
}

@keyframes right {
    0% {
        margin-left: 0px;
    }

    100% {
        margin-left: 10px;
    }

}

.carousel-box.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    height: 5px;
    width: 0%;
    border-radius: 5px;
    overflow: hidden;
    background-color: #00a9f4;
    animation: show 6s ease-in-out forwards;
}

@keyframes show {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}


.carousel-item.active {
    opacity: 1;
    z-index: 1;
    display: flex !important;

}

.carousel-item.active .hero-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.carousel-item.active .hero-subtitle {
    transition-delay: 0.5s;
}

.carousel-item.active .hero-cta {
    transition-delay: 0.7s;
}