.somnath_project_tusted_logo-section {
    width: 100%;
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
}

.somnath_project_tusted_heading {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.somnath_project_tusted_highlight-green {
    color: var(--text-ocan);
    font-weight: bold;
}

.somnath_project_tusted_highlight-box {
    /* border: 2px dotted #9ca3af; */
    /* padding: 4px 16px; */
    border-radius: 50px;
    margin: 0 4px;
    color: var(--text-ocan);
}

.somnath_project_tusted_marquee-container {
    padding: 10px 0px;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.somnath_project_tusted_marquee-track {
    display: flex;
    width: max-content;
}

.somnath_project_tusted_card {
    background: #ffffff;
    width: 250px;
    height: 120px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 1px 10px rgb(0 0 0 / 20%);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* .somnath_project_tusted_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
} */

.somnath_project_tusted_card img {
    max-width: 65%;
    max-height: 50%;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.somnath_project_tusted_card:hover img {
    opacity: 1;
}

@keyframes somnath_project_tusted_endlessScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.somnath_project_tusted_animate-scroll {
    animation: somnath_project_tusted_endlessScroll 30s linear infinite;
}

.somnath_project_tusted_marquee-track:hover {
    animation-play-state: paused;
}


@media (max-width: 768px) {
    .somnath_project_tusted_card {
        width: 180px;
        height: 90px;
        margin: 0 10px;
    }

    .somnath_project_tusted_heading {
        font-size: 1.4rem;
    }
}