.services-slider {
    position: relative;
}

.services-slides {
    position: relative;
}

.services-slides .slick-list::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, #0a376d, transparent);
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.2s ease;
}

.services-slides .slick-list.last-slide::after {
    opacity: 0;
}

@media (max-width: 1300px) {
    .services-slides .slick-list::after {
        width: 60px;
    }
}

@media (max-width: 1250px) {
    .services-slides .slick-list::after {
        display: none;
    }
}

.services-slides {
    overflow: visible;
    position: relative;
}

.services-slides .slick-track {
    display: flex;
    align-items: stretch;
}

.services-slides .slick-slide {
    height: auto;
    display: flex;
}

.service-card {
    padding: 40px 24px;
    background: #115ebb;
    border-radius: 4px;
    max-width: 375px;
    width: 375px;
    color: #fff;
    margin-right: 16px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:nth-child(even) {
    background: #1570e0;
}

.service-icon img {
    margin-bottom: 60px;
    width: 48px;
    height: auto;
}

.service-content h3 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 500;
    line-height: 136%;
}

.service-content blockquote {
    margin: 0 0 40px 0;
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 136%;
}

.service-attribution {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 30px 0;
    gap: 20px;
}

.attribution-photo img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.attribution-name {
    margin: 0;
    line-height: 1;
}

.attribution-role {
    font-weight: bold;
    margin: 0;
}

.service-content .text-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 6px 0 0;
    text-decoration: none;
    border-radius: 0;
    border-top: 1px solid white;
    color: #fff;
    position: relative;
}
.service-content .text-link span {
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.service-content .text-link:hover span {
    transform: translateX(4px);
}

/* Dot Navigation Styles */
.services-slider .slick-dots {
    position: relative;
    bottom: auto;
    left: 0;
    width: 375px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 24px 0 0 0;
    margin: 0;
    list-style: none;
    z-index: 20;
}

.services-slider .slick-dots li {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.services-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #d0d9e0;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.services-slider .slick-dots li button::before {
    display: none;
}

.services-slider .slick-dots li button:hover {
    background-color: #a8b5c2;
}

.services-slider .slick-dots li.slick-active button {
    background-color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-slider {
        padding: 40px 0;
        min-height: 400px;
    }

    .service-card {
        padding: 40px 30px;
        max-width: 100%;
    }

    .service-icon {
        margin-bottom: 30px;
    }

    .service-icon img {
        width: 50px;
        height: 50px;
    }

    .service-content h3 {
        margin-bottom: 20px;
    }

    .service-content blockquote {
        margin-bottom: 30px;
    }

    .service-attribution {
        margin-bottom: 25px;
        gap: 15px;
    }

    .attribution-photo {
        width: 50px;
        height: 50px;
    }

    .services-slider .slick-dots {
        width: 100%;
        padding: 20px 0 0 0;
    }
}
