.services-section-2 {
    background: #000;
    color: #fff;
    padding: 3rem 0;
    overflow-x: hidden;
}

.services-section-2 .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-heading {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;

    color: #BE1E28;
    text-align: center;
}

.services-card-wrapper {
    display: flex;
    gap: 20px;
    cursor: grab;
    position: relative;
    user-select: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    scroll-behavior: smooth;
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.arrow:hover {
    background: #fff;
}

.services-card-wrapper::-webkit-scrollbar {
    display: none;
}

.service-card,
.card-image {
    -webkit-user-drag: none;
    user-drag: none;
}

.services-card-wrapper.dragging {
    cursor: grabbing;
}

.service-card {
    position: relative;
    min-width: 300px;
    max-width: 340px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    scroll-snap-align: start;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card:hover {
    transform: perspective(1000px) rotateY(4deg) scale(1.02);
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
    margin: 0;
    font-family: 'ClashDisplay', sans-serif;
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.card-content span {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: #be1e28;
    padding: 10px 18px;
    border-radius: 500px;
    width: fit-content;
    font-size: .9rem;
    transition: all 0.3s ease;
}

.card-content span:hover {
    background-color: #000;
    scale: 1.05;
    transition: all 0.3s ease;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    background: transparent;
    padding: 0;
    border: 0;
    width: 50px;
    height: auto;
    aspect-ratio: 1 / 1;
}

.carousel-arrow img {
    width: 100%;
    border: solid 1px #fff;
    border-radius: 50%;
}

.carousel-arrow.left-arrow {
    left: -30px;
}

.carousel-arrow.right-arrow {
    right: -30px;
}

.carousel-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 756px) {
    .carousel-arrow {
        width: 35px;
        top: 40%;
    }

    .carousel-arrow.right-arrow {
        right: -8px;
    }

    .carousel-arrow.left-arrow {
        left: -8px;
    }

    .services-heading {
        font-size: 1.5rem;
    }

    .services-section-2 {
        padding: 2rem 0;
    }

    .service-card {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-content {
        padding: 15px;
    }

    .card-content p {
        font-size: 0.8rem;
    }

    .service-card:hover .card-image {
        transform: none;
    }

    .services-card-wrapper {
        padding-top: 0;
    }

    .services-section-2 .container {
        gap: 1.5rem;
    }
}