/* FULL SECTION */
.ClientSectionContentDiv {
    display: flex;
    width: 100%;
/*    align-items: center;*/
    justify-content: space-between;
}

/* LEFT SIDE */
.ClientSectionContent1 {
    width: 50%;
}

/* RIGHT SIDE - EXACT 50% */
.ClientCarousel {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* TITLE */
.ClientTitle {
    font-family: 'Franklin Gothic';
    font-size: 24px;
    margin-bottom: 30px;
}

/* CAROUSEL WRAPPER */
.carousel-wrapper {
    width: 70%;
    overflow: hidden; /* allow shadow to show */
    padding: 10px; /* space for shadow */
}

/* TRACK */
.logo-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* GRID PAGE */
.logo-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 10px;
    justify-items: center;
}

/* LOGO CARD STYLE */
.ClientImage {
    background: #ffffff;
    padding: 40px;
    height: 180px;
    width: 100%;
    object-fit: contain;
    border-radius: 14px;
    /* Softer premium shadow */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

    .ClientImage:hover {
        transform: translateY(-4px);
    }

/* NAVIGATION */
.nav-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background: #0145ED;
    color: #fff;
    border: none;
    font-size: 18px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.prev-btn {
    left: 80px;
}

.next-btn {
    right: 80px;
}

.nav-btn:hover {
    background: #EB001C;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

/* Tablet */
/* ===================== */
/* RESPONSIVE */
/* ===================== */

/* Large Laptop */
@media (max-width: 1200px) {

    .carousel-wrapper {
        width: 85%;
    }

    .logo-slide {
        grid-template-columns: repeat(2, 1fr);
    }

    .prev-btn {
        left: 30px;
    }

    .next-btn {
        right: 30px;
    }
}


/* Tablet */
@media (max-width: 992px) {

    .ClientSectionContentDiv {
        flex-direction: column;
        align-items: center;
    }

    .ClientSectionContent1,
    .ClientCarousel {
        width: 100%;
    }

    .carousel-wrapper {
        width: 90%;
    }

    .logo-slide {
        grid-template-columns: repeat(2, 1fr);
    }

    .ClientImage {
        height: 150px;
        padding: 30px;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* Mobile */
@media (max-width: 576px) {

    .ClientTitle {
        font-size: 20px;
        text-align: center;
    }

    .carousel-wrapper {
        width: 95%;
    }

    .logo-slide {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ClientImage {
        height: 130px;
        padding: 25px;
    }

    .prev-btn,
    .next-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        left: 10px;
        right: 10px;
    }
}


/* Small Mobile */
@media (max-width: 400px) {

    .ClientImage {
        height: 110px;
        padding: 20px;
    }

    .ClientTitle {
        font-size: 18px;
    }
}