/*=============================================================
    ABOUT US PAGE - PIXEL PERFECT CSS
    File: about.css
    Author: Wshyah Engineering Consultancy
=============================================================*/



/*=============================================================
    2. PAGE INNER CONTAINER
=============================================================*/
.page_inner {
    background: var(--white);
}

.page_about {
    position: relative;
}

/*=============================================================
    3. ACHIEVEMENTS SECTION
=============================================================*/
.achivements {
    padding: 15px 0 40px;
    background: var(--white);
}

.achivements .row {
    align-items: stretch;
}

.achivements .col-md-6 {
    display: flex;
}

/* Full height banner on left */
.banner-full-height {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.banner-full-height img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Grid items on right */
.achivements .items {
    width: 100%;
    padding-right: 40px;
}

.achivements .items .row {
    gap: 0;
    height: 100%;
}

.achivements .items .col-md-6 {
    padding: 10px;
}

/* Item text boxes */
.item_txt {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 50px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    min-height: 280px;
    width: 100%;
}

.item_txt.large_count {
    background: var(--accent-color);
}

.item_txt .top_item_txt {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: #FFFFFF;
    margin-bottom: 20px;
}

.item_txt .counter-item {
    font-size: 62px;
    font-weight: var(--font-weight-bold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1;
}

.item_txt .counter-item span {
    display: inline-block;
}

.item_txt.first {
    background: #DA9A4F;
}

.item_txt.second {
    background: #B55239;
}




/* Item banner boxes */
.item_banner {
    height: 100%;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
}

.item_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/*=============================================================
    4. ABOUT VISION SECTION
=============================================================*/
.about_vision {
    padding: 13px 0 40px;
    background: var(--white);
}

.about_vision .heading {
    text-align: right;
    margin-bottom: 9px;
}

.about_vision .heading h2 {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: #1D3B4C;
}

.about_vision .ab_items {
}

.about_vision .ab_items .row {
    gap: 40px 0;
}

.about_vision .ab_items .item {
    /* background: var(--light-bg); */
    border-radius: 16px;
    padding: 50px 28px;
    height: 100%;
    transition: var(--transition-smooth);
}

.about_vision .ab_items .item:hover {
    /* background: var(--primary-color); */
    /* transform: translateY(-5px); */
    /* box-shadow: 0 20px 60px rgba(26, 77, 111, 0.2); */
}

.about_vision .ab_items .item:hover h3 {
    /* color: var(--accent-color); */
}

.about_vision .ab_items .item:hover p {
    /* color: var(--white); */
}

.about_vision .ab_items .item h3 {
    font-size: 27px;
    font-weight: var(--font-weight-bold);
    color: var(--accent-color);
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.about_vision .ab_items .item p {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--text-gray);
    line-height: 1.8;
    transition: var(--transition-smooth);
}

/*=============================================================
    5. WRAPPED BY BACKGROUND SECTION
=============================================================*/
.wrapped_by_bg {
    background: #1D3B4C;
    padding: 0;
    margin-top: 0;
}

.wrapped_by_bg .heading h2 {
    color: #ECE4DC;
    /* padding: 37px 0 17px; */
    text-align: center;
    margin-bottom: 39px;
    font-weight: var(--font-weight-regular);
    font-size: 41px;
}

/*=============================================================
    6. LATEST NEWS SECTION
=============================================================*/
.latest_news {
    padding: 50px 0 27px;
    background: transparent;
}

.news_item {
    /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.news_item:hover {
    /* background: rgba(255, 255, 255, 0.08); */
    transform: translateY(-8px);
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.news_item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.news_item p {
    padding: 21px 4px;
    font-size: 19px;
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    min-height: 160px;
}

/*=============================================================
    7. SUCCESS PARTNERS SECTION
=============================================================*/
.success_partners {
    /* padding: 80px 0; */
    background: transparent;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.success_partners .container {
    max-width: 1200px;
}

.success_partners .row {
    margin-bottom: 30px;
}

.success_partners .row:last-child {
    margin-bottom: 0;
}

.part_item {
    margin-bottom: 33px;
}

.part_item .image_wrap{
    background: var(--white);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    height: 100%;
    /* min-height: 138px; */
    margin-bottom: 7px;
}

.part_item:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
}

.part_item img {
    /* height: 60px; */
    /* width: auto; */
    max-width: 100%;
    object-fit: contain;
}

.part_item h4 {
    font-size: 21px;
    font-weight: var(--font-weight-bold);
    color: #D9D9D9;
    line-height: 1.5;
}

/*=============================================================
    8. LEADERSHIP SECTION
=============================================================*/
.Leadership {
    /* padding: 80px 0; */
    background: transparent;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.Leadership .contianer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.Leadership .heading {
    text-align: center;
    margin-bottom: 60px;
}

.Leadership .heading h2 {
    font-size: 42px;
    font-weight: var(--font-weight-bold);
    color: #ECE4DC;
    line-height: 1.4;
}

.Leadership .heading h2 .colored_txt {
    color: var(--accent-color);
}

.Leadership .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.Leadership .col-md-4 {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Leader info paragraph */
.leader_info {
    /* background: rgba(255, 255, 255, 0.05); */
    /* border-radius: 16px; */
    padding: 40px 35px;
    height: 100%;
}

.leader_info p {
    font-size: 22px;
    font-weight: var(--font-weight-regular);
    color: #D9D9D9;
    line-height: 1.9;
}

/* Leader lists */
.leader_list {
    /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 16px;
    padding: 40px 35px;
    height: 100%;
}

.leader_list h5 {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--accent-color);
    margin-bottom: 25px;
}

.leader_list .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leader_list .list li {
    font-size: 17px;
    font-weight: var(--font-weight-regular);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0 12px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    line-height: 1.6;
}

.leader_list .list li:last-child {
    border-bottom: none;
}

.leader_list .list li::before {
    content: '◄';
    position: absolute;
    right: 0;
    top: 12px;
    color: var(--accent-color);
    font-size: 12px;
    content: none;
}

/*=============================================================
    9. RESPONSIVE DESIGN - ABOUT PAGE
=============================================================*/

/* Tablets and below (max-width: 991px) */
@media (max-width: 991px) {
    .breadcrumb {
        padding: 120px 0 60px;
    }
    
    .breadcrumb .page_small_des {
        font-size: 36px;
    }
    
    .breadcrumb .page_des {
        font-size: 16px;
    }
    
    .achivements {
        padding: 60px 0;
    }
    
    .banner-full-height {
        min-height: 400px;
        margin-bottom: 30px;
    }
    
    .achivements .items {
        padding-right: 15px;
    }
    
    .about_vision {
        padding: 60px 0;
    }
    
    .about_vision .heading h2 {
        font-size: 32px;
    }
    
    .latest_news,
    .success_partners,
    .Leadership {
        padding: 60px 0;
    }
    
    .Leadership .heading h2 {
        font-size: 32px;
    }
    
    .part_item {
        margin-bottom: 20px;
    }
}

/* Mobile devices (max-width: 767px) */
@media (max-width: 767px) {
    .breadcrumb {
        padding: 100px 0 50px;
    }
    
    .breadcrumb .page_small_des {
        font-size: 28px;
    }
    
    .breadcrumb .page_des {
        font-size: 15px;
    }
    
    .achivements {
        padding: 50px 0;
    }
    
    .banner-full-height {
        min-height: 300px;
    }
    
    .achivements .items .col-md-6 {
        width: 100%;
    }
    
    .item_txt,
    .item_banner {
        min-height: 220px;
    }
    
    .item_txt .counter-item {
        font-size: 56px;
    }
    
    .about_vision {
        padding: 50px 0;
    }
    
    .about_vision .heading h2 {
        font-size: 26px;
    }
    
    .about_vision .ab_items .item {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .latest_news,
    .success_partners,
    .Leadership {
        padding: 50px 0;
    }
    
    .news_item {
        margin-bottom: 20px;
    }
    
    .news_item p {
        min-height: auto;
        padding: 25px 20px;
    }
    
    .success_partners .col-md-2 {
        width: 50%;
    }
    
    .part_item {
        min-height: 150px;
        padding: 25px 15px;
    }
    
    .part_item img {
        height: 50px;
    }
    
    .Leadership .heading h2 {
        font-size: 24px;
    }
    
    .Leadership .col-md-4 {
        width: 100%;
    }
    
    .leader_info,
    .leader_list {
        padding: 30px 25px;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .breadcrumb .page_small_des {
        font-size: 24px;
    }
    
    .item_txt .counter-item {
        font-size: 48px;
    }
    
    .about_vision .heading h2 {
        font-size: 22px;
    }
    
    .Leadership .heading h2 {
        font-size: 20px;
    }
    
    .part_item h4 {
        font-size: 13px;
    }
}

/*=============================================================
    10. UTILITY CLASSES FOR ABOUT PAGE
=============================================================*/
.col-md-2 {
    width: 16.666667%;
    padding: 0 15px;
}

.col-md-4 {
    width: 33.333333%;
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .col-md-2,
    .col-md-4,
    .col-md-6 {
        width: 100%;
    }
    
    .success_partners .col-md-2 {
        width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .success_partners .col-md-2 {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .success_partners .col-md-2 {
        width: 100%;
    }
}

/*=============================================================
    END OF ABOUT PAGE CSS
=============================================================*/