
/* =========================
   SERVICES SECTION
========================= */
.services-one {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.info-container {
    width: 90%;
    margin: auto;
}

/* =========================
   HEADING
========================= */
.triumph-heading {
    text-align: center;
    margin-bottom: 50px;
}

.triumph-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
}

.triumph-heading span {
    color: #f73427;
}

/* =========================
   SLIDER
========================= */
.services-slider {
    overflow: hidden;
    position: relative;
}

.services-track {
    display: flex;
    gap: 30px;
    padding: 10px 0;
    width: max-content;
    animation: scroll 25s linear infinite;
}

/* Pause on hover */
.services-slider:hover .services-track {
    animation-play-state: paused;
}

/* =========================
   CARD
========================= */
.services-one__single {
    width: 360px;
    height: 420px; /* FIXED HEIGHT */
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

/* Hover effect */
.services-one__single:hover {
    transform: translateY(-8px) scale(1.02);
}

/* =========================
   IMAGE
========================= */
.services-one__img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* =========================
   CONTENT
========================= */
.services-one__content {
    padding: 18px 20px;
    flex: 1;
    overflow-y: auto;
    margin-top: 20px;
}

/* Clean scrollbar */
.services-one__content::-webkit-scrollbar {
    width: 4px;
}
.services-one__content::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

/* Title */
.services-one__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Text */
.services-one__text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* =========================
   ANIMATION
========================= */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .services-one__single {
        width: 300px;
        height: 400px;
    }

    .triumph-heading h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .services-one__single {
        width: 260px;
        height: 360px;
    }

    .services-one__title {
        font-size: 16px;
    }

    .services-one__text {
        font-size: 13px;

        /* CLAMP TEXT ON MOBILE */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .services-one__content {
        overflow: hidden;
    }

    .triumph-heading h2 {
        font-size: 26px;
    }
}