/* ── Appstechy Logo Carousel Styles ── */

.appstechy-logo-carousel-wrapper {
    position: relative;
    width: 100%;
}

/* Adjust wrapper layout when arrows are enabled to prevent overlapping layouts */
.appstechy-logo-carousel-wrapper.nav-arrows,
.appstechy-logo-carousel-wrapper.nav-both {
    padding: 0 30px;
}

/* Swiper Container adjustments */
.appstechy-logo-carousel-wrapper .appstechy-swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Swiper Slide Flexbox centering */
.appstechy-logo-carousel-wrapper .appstechy-swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: auto;
    /* margin: 0 !important;  */
    padding: 20px 0;
}

/* ── Heading / Title styling ── */
.appstechy-carousel-title-wrapper {
    margin-bottom: 30px;
    width: 100%;
}

.appstechy-carousel-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 !important;
    line-height: 1.3;
}

.appstechy-title-highlight {
    transition: color 0.3s ease;
}

.appstechy-carousel-divider {
    display: block;
}

.appstechy-divider-line {
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* The card enclosing each logo */
.appstechy-logo-carousel-wrapper .appstechy-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.appstechy-logo-carousel-wrapper .appstechy-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.appstechy-logo-carousel-wrapper .appstechy-logo-img {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);    
}

/* ── PRESET 1: CERTIFICATIONS & REVIEWS ── */
.appstechy-logo-carousel-wrapper.preset-certifications .appstechy-logo-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 20px 30px;
    overflow: hidden;
}

.appstechy-logo-carousel-wrapper.preset-certifications .appstechy-logo-card:hover {
}

/* ── PRESET 2: GRAYSCALE CLIENTS ── */
.appstechy-logo-carousel-wrapper.preset-clients .appstechy-logo-card {
    background-color: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    padding: 10px;
}



/* ── NAVIGATION: CUSTOM ARROWS ── */
.appstechy-logo-carousel-wrapper .appstechy-swiper-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #0176ab;
    color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

.appstechy-logo-carousel-wrapper .appstechy-swiper-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.appstechy-logo-carousel-wrapper .appstechy-swiper-prev {
    left: 10px; 
}

.appstechy-logo-carousel-wrapper .appstechy-swiper-next {
    right: 10px;
}

.appstechy-logo-carousel-wrapper .appstechy-swiper-arrow:hover {
    background-color: #006090;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Swiper disabled state for navigation */
.appstechy-logo-carousel-wrapper .appstechy-swiper-arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ── NAVIGATION: CUSTOM PAGINATION DOTS ── */
.appstechy-logo-carousel-wrapper .appstechy-swiper-pagination {
    position: relative;
    bottom: 0 !important;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.appstechy-logo-carousel-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cccccc;
    opacity: 0.7;
    margin: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.appstechy-logo-carousel-wrapper .swiper-pagination-bullet-active {
    background-color: #0176ab;
    width: 22px;
    border-radius: 6px;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .appstechy-logo-carousel-wrapper.nav-arrows,
    .appstechy-logo-carousel-wrapper.nav-both {
        padding: 0 35px;
    }
    
    .appstechy-logo-carousel-wrapper .appstechy-swiper-arrow {
        width: 32px;
        height: 32px;
        margin-top: 30px;
    }
}
