/* Swiper Slider Custom Styles */

.slide-card {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.category-slider {
    width: 100%;
    max-width: 1212px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
}

.category-slider .swiper-wrapper {
    height: 100%;
}

.category-slider .swiper-slide {
    height: 100%;
}

.category-slide-card {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-content {
    width: 100%;
    padding: 0;
    color: #fff;
    animation: fadeInUp 0.8s ease;
    /* min-height: 700px; */
    display: flex;
    align-items: center;
    text-align: left;
}

.slide-container {
    max-width: 1212px;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.slide-image img {
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-category {
    display: inline-block;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border: 0;
    margin: 0 0 6px 0;
    background-color: #0d0b52;
    font-family: Inter !important;
    margin: 0;
    width: auto;
    margin: 20px 0 0;
}

.slide-title {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
    color: #000 !important;
}

.read-more {
    display: inline-block;
    color: #fff;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
    background-color: #091831;
    padding: 10px 20px;
    font-family: Inter !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.read-more-btn:hover {
    background: #0d0b52;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.read_more_btn {
    background-color: #091831;
    padding: 10px 20px;
    font-family: Inter !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #fff;
}

/* Swiper Navigation Styles */

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #0d0b52;
    color: #fff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #0d0b52;
    transform: scale(1.2);
}

@media screen and (min-width:992px) {
    .slide-wrapper,
    .slide-image {
        width: 50%;
    }
    .slide-wrapper {
        padding-right: 40px;
    }
}

@media screen and (max-width:991px) {
    .slide-title {
        font-size: 20px
    }
    .slide-container {
        flex-direction: column;
        gap: 0px
    }
    .category-slider,
    .slide-content {
        height: auto;
    }
    .category-slider {
        margin: 20px 0;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 12px;
    }
}