/* ===========================
   WHITE BACKGROUND SECTION
   =========================== */

.collab-section {
    background-color: #ffffff;
}

/* Optional: match screenshot spacing */
.collab-section .container {
    max-width: 1200px;
}

/* ===========================
   COLLABORATOR SLIDER STYLES
   =========================== */
/* Wrapper */
.collab-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Track */
.collab-slider-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

/* Individual item */
.collab-slide-item {
    flex: 0 0 auto;
    padding: 25px 50px;
}

/* Logo styling */
.collab-slide-item img {
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Hover effect */
.collab-slide-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.5);
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes collabScrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes collabScrollLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Apply animations */
.collab-slide-right {
    animation: collabScrollRight 30s linear infinite;
}

.collab-slide-left {
    animation: collabScrollLeft 30s linear infinite;
}

/* Pause on hover */
.collab-slider-wrapper:hover .collab-slider-track {
    animation-play-state: paused;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .collab-slide-item {
        padding: 15px 25px;
    }

    .collab-slide-item img {
        height: 60px;
    }
}

/* Collab Card Section */

/* ===============================
   COLLAB CARD SECTION
=================================*/
/* ===============================
   SECTION BACKGROUND
=================================*/

.collab-card-section {
    background-color: #f8f9fa;
}

/* Remove side padding */
.collab-card-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Wrapper */
.collab-card-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Track */
.collab-card-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    padding: 0 20px;
}

.collab-card {
    min-width: 180px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    position: relative;
}

/* Hover card shadow only */
.collab-card:hover {
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* Logo animation instead of card scaling */
.collab-logo img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.collab-card:hover .collab-logo img {
    transform: scale(1.6);
}

/* Name */
.collab-name {
    font-size: 14px;
    font-weight: 600;
}

/* Toggle link */
.collab-toggle-link {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ===============================
   ANIMATION
=================================*/

@keyframes collabCardScrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.collab-card-slide-right {
    animation: collabCardScrollRight 100s linear infinite;
}

/* Pause on hover */
.collab-card-wrapper:hover .collab-card-track {
    animation-play-state: paused;
}

/* ===============================
   EXPANDED MODE
=================================*/

.collab-expanded {
    flex-wrap: wrap !important;
    width: 100% !important;
    animation: none !important;
}

.text-collab {
    font-size: 28px;
    letter-spacing: 0.5px;
    text-align: center !important;
}
