.success-stories-section {
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

.slider-wrapper {
    position: relative;
    min-height: 600px;
}

.success-stories-slider {
    position: relative;
}

.success-stories-slider .slick-slide {
    display: flex !important;
    justify-content: space-between;
}

.success-stories-slider .slick-slide > div {
    display: flex;
    width: 100%;
}

.slide-item {
    display: flex !important;
    gap: 60px;
    align-items: center;
    min-height: 600px;
    width: 100%;
}

.slide-content {
    flex: 1;
    max-width: 600px;
    flex-direction: column;
    align-items: flex-start;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    /* background-color: #1a1a1a; */
    color: #fff;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #94A3B8;
    font-style: italic;
}

.slide-badge-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.slide-name {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #E8F1F8;
    margin-bottom: 10px;
    line-height: 1.2;
}

.slide-title {
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.challenge-section {
    margin-bottom: 0px;
}

.challenge-title {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.challenge-text {
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
    font-family: 'Roboto', sans-serif;
}

.section-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.revenue-testimonial {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.revenue-section {
    flex: 0 0 auto;
    min-width: 150px;
}

.revenue-label {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}

.revenue-amount {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}

.testimonial {
    flex: 1;
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
    font-style: italic;
    font-family: 'Roboto', sans-serif;
}

.slide-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 600px !important;
    object-fit: cover;
    border-radius: 20px !important;
    background-color: #4a5568;
    display: block;
}

.image-overlay-text {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 42px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
}

.success-stories-slider .slick-dots {
    display: none !important;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-counter {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    pointer-events: none;
    font-family: 'Roboto', sans-serif;
    display: flex;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2168a6;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    padding: 10px;
}

/* .nav-arrow.prev-arrow {
    background: #94A3B8;
}

.nav-arrow.next-arrow {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
} */

.nav-arrow:hover, .nav-arrow:focus {
    opacity: 0.8;
    background: #fff;
    color: #2168a6;
}

.nav-arrow svg {
    width: 40px;
    height: 40px;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #E8F1F8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid #E8F1F8;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.see-more-btn:hover {
    color: #1C2C42;
    background-color: #E8F1F8;
    border-color: #E8F1F8;
}

.see-more-btn .material-symbols-rounded {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.see-more-btn:hover .material-symbols-rounded {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .slide-item {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }

    .slide-content {
        max-width: 100%;
    }

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

    .slide-image img {
        height: 400px;
    }

    .slide-name {
        font-size: 36px;
    }

    .revenue-testimonial {
        flex-direction: column;
        gap: 30px;
    }

    .revenue-amount {
        font-size: 28px;
    }

    .slider-wrapper {
        min-height: auto;
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .slide-item {
        gap: 30px;
    }

    .slide-name {
        font-size: 32px;
    }

    .slide-title {
        font-size: 16px;
    }

    .challenge-title {
        font-size: 18px;
    }

    .challenge-text {
        font-size: 15px;
    }

    .revenue-amount {
        font-size: 24px;
    }

    .testimonial {
        font-size: 15px;
    }

    .slide-image img {
        height: 300px !important;
    }

    .image-overlay-text {
        font-size: 60px;
        right: 10px;
        bottom: 10px;
    }

    .slider-controls {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 15px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-counter {
        font-size: 16px;
    }

    .see-more-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .slide-item {
        gap: 25px;
    }

    .slide-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .slide-name {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .slide-title {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .challenge-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .challenge-text {
        font-size: 14px;
    }

    .section-divider {
        margin: 20px 0;
    }

    .revenue-testimonial {
        gap: 20px;
        margin-bottom: 30px;
    }

    .revenue-label {
        font-size: 13px;
    }

    .revenue-amount {
        font-size: 22px;
    }

    .testimonial {
        font-size: 14px;
        line-height: 1.6;
    }

    .slide-image img {
        height: 250px;
    }

    .image-overlay-text {
        font-size: 40px;
    }

    .slider-wrapper {
        padding-bottom: 70px;
    }

    .slider-controls {
        top: auto;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 12px;
    }

    .nav-arrow {
        width: 32px;
        height: 32px;
    }

    .nav-arrow svg {
        width: 16px;
        height: 16px;
    }

    .slider-counter {
        font-size: 14px;
    }

    .see-more-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .see-more-btn .material-symbols-rounded {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
}
