@import "./common-var.css";

/**************
Chairman Section Styles
**************/
.chairman-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.chairman-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.chairman-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.chairman-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(255,255,255,0.7); */
}

.chairman-section .container {
    position: relative;
    z-index: 1;
}

.chairman-signature {
    color: var(--text-default-color);
    font-family: var(--font-type1);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;

    @media (max-width: 991px) {
        font-size: 18px;
        line-height: 28px;
    }

    @media (max-width: 576px) {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
    }
}

.chairman-name {
    color: var(--primary-color);
    font-family: var(--font-type2);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 3px 0;

    @media (max-width: 991px) {
        font-size: 18px;
        line-height: 22px;
    }

    @media (max-width: 576px) {
        font-size: 16px;
        line-height: 20px;
    }
}

.chairman-title {
    color: var(--text-default-color);
    font-family: var(--font-type1);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.8;

    @media (max-width: 991px) {
        font-size: 18px;
        line-height: 22px;
    }

    @media (max-width: 576px) {
        font-size: 16px;
        line-height: 20px;
    }
}
.chairman-image{
    margin-bottom: -100px;
    text-align: center;
    @media(max-width: 1400px){
        margin-bottom: -170px;
    }
}

/* RTL Support for Chairman Section */
[dir="rtl"] .chairman-signature {
    text-align: right;

    @media (max-width: 576px) {
        text-align: center;
    }
}
