/* ---- Section ---- */
#main-customers {
    background: #ffffff;
    padding: 80px 0 80px;
    overflow: hidden;
    font-family: 'Laila', serif;
}
 
/* ---- Header ---- */
.mc-header {
    text-align: center;
    margin-bottom: 48px;
}
 
.mc-eyebrow {
    display: inline-block;
    background: #e8f0fe;
    color: #1D6FE8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
}
 
.mc-title {
    font-size: 40px;
    font-weight: 700;
    color: #0A1628;
    margin: 0;
}
 
/* ---- Carousel wrapper ---- */
.mc-track-outer {
    position: relative;
    overflow: hidden;
}
 
.mc-fade-left,
.mc-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
 
.mc-fade-left {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}
 
.mc-fade-right {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}
 
/* ---- Scrolling track ---- */
.mc-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: mc-scroll 32s linear infinite;
}
 
.mc-track:hover {
    animation-play-state: paused;
}
 
@keyframes mc-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
 
/* ---- Logo card ---- */
.mc-logo-card {
    flex-shrink: 0;
    width: 150px;
    height: 88px;
    background: #f8faff;
    border: 1.5px solid #e8f0fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-sizing: border-box;
    transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
    cursor: default;
}
 
.mc-logo-card:hover {
    border-color: #1D6FE8;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(29, 111, 232, 0.13);
}
 
.mc-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.25s, opacity 0.25s;
    display: block;
}
 
.mc-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
 
/* ---- Stats ---- */
.mc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 52px auto 0;
    padding: 0 32px;
}
 
.mc-stat-card {
    background: #f0f4ff;
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
.mc-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #0A1628;
    line-height: 1;
}
 
.mc-stat-lbl {
    font-size: 13px;
    color: #64748b;
}
 
/* ---- Responsive ---- */
@media (max-width: 768px) {
    .mc-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .mc-title { font-size: 28px; }
}
 
@media (max-width: 480px) {
    .mc-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
    }
    .mc-fade-left, .mc-fade-right { width: 60px; }
}