/* About Client Section (reversed layout) */
body {
    padding-top: 150px;
}

.aboutclient-section {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-sizing: border-box;
}

.aboutclient-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
    box-sizing: border-box;
}

.aboutclient-text-col {
    flex: 1 1 340px;
    min-width: 0;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutclient-title {
    font-family: 'Oswald', 'Poppins', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.2em;
    line-height: 1.1;
}

.aboutclient-underline {
    width: 100%;
    height: 10px;
    background: #222;
    margin-bottom: 1.2em;
}

.aboutclient-desc {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.35rem;
    color: #222;
    line-height: 1.4;
    text-align: justify;
    font-weight: 600;
}

.aboutclient-logo-col {
    flex: 1 1 320px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

.aboutclient-logo-bg {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutclient-logo-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}

/* Reuse the colored squares */
.aboutclient-logo-bg .square.blue {
    position: absolute;
    width: 65%;
    height: 60%;
    background: #357abd;
    top: 0;
    left: 0%;
    z-index: 1;
    border-radius: 0;
}
.aboutclient-logo-bg .square.yellow {
    position: absolute;
    width: 65%;
    height: 60%;
    background: #fed111;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 0;
}

/* Tablet */
@media (max-width: 991.98px) {
    .aboutclient-container {
        flex-direction: column;
        gap: 32px;
        padding: 40px 8px;
        max-width: 98vw;
    }
    .aboutclient-text-col {
        max-width: 100%;
        min-width: 0;
        align-items: center;
        text-align: center;
        padding: 0 24px;
    }
    .aboutclient-logo-bg {
        width: 320px;
        height: 320px;
    }
    .aboutclient-logo-img {
        max-width: 300px;
    }
    .aboutclient-title {
        font-size: 2.2rem;
    }
    .aboutclient-underline {
        height: 6px;
    }
    .aboutclient-desc {
        font-size: 1.05rem;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .aboutclient-section {
        min-height: 320px;
        padding: 0;
    }
    .aboutclient-container {
        gap: 18px;
        padding: 24px 2vw;
    }
    .aboutclient-logo-bg {
        width: 220px;
        height: 220px;
    }
    .aboutclient-logo-img {
        max-width: 200px;
    }
    .aboutclient-title {
        font-size: 1.3rem;
    }
    .aboutclient-underline {
        height: 4px;
    }
    .aboutclient-desc {
        font-size: 0.95rem;
    }
    .aboutclient-text-col {
        padding: 0 16px;
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-up-in {
    opacity: 1;
    transform: translateY(0);
}