:root {
    --orange: #F4B000;
    --green: #1E8E3E;
}

/* ==================================================
   BANNER */
.inner-banner {
    position: relative;
    background: url('../assets/about_page/about_page_banner.webp') center/cover no-repeat;
    height: 560px;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-bottom: 5px solid var(--orange);
}
.inner-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
    color: #fff;
}
.about-line1 {
    width: 80px;
    height: 3px;
    background: var(--orange);
}
.page-title {
    font-size: 48px;
    font-weight: 700;
}
/* ==================================================
   COMMON SECTION HEADING */
.section-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
}
.divider {
    width: 70px;
    height: 3px;
    background: var(--orange);
    margin: 10px auto 20px;
}
/* ==================================================
   ABOUT SECTION */
.about-section {
    padding: 40px 0;
}
.intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    max-width: 1100px;
    margin: 0 auto;
    text-align: justify;
}
.intro-text br {
    display: block;
    margin-bottom: 10px;
}
/* ==================================================
   CORE VALUES  +  MISSION • VISION • VALUES */
.core-values-section {
    text-align: center;
}
.core-values-section .row {
    justify-content: center;
}
.value-box {
    padding: 20px 25px;
    border-right: 1px solid #e6e6e6;
    text-align: center;
    transition: transform 0.35s ease;
}
.value-box:last-child {
    border-right: none;
}
.value-box:hover {
    transform: translateY(-8px);
}
.value-icon {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    margin: 0 auto 12px;
    position: relative;
}
.value-icon img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.35s ease;
}
.icon-hover {
    opacity: 0;
}
.value-box:hover .icon-default {
    opacity: 0;
}
.value-box:hover .icon-hover {
    opacity: 1;
}
.underline {
    width: 65px;
    height: 3px;
    background: var(--orange);
    margin: 8px auto 15px;
}
.value-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 12px;
}
.value-box p {
    font-size: 15px;
    color: #555;
    max-width: 260px;
    margin: 0 auto;
    line-height: 1.6;
}
/* ==================================================
   RESPONSIVE */
@media (max-width: 767px) {
    .inner-banner {
        height: 260px;
    }
    .page-title {
        font-size: 28px;
    }
    .about-line1 {
        width: 50px;
    }
    .intro-text {
        padding: 0 12px;
        text-align: left;
    }
    .value-box {
        border-right: none;
        padding: 20px 12px;
    }
    .value-icon {
        width: 120px;
        height: 120px;
    }
    .value-icon img {
        width: 75px;
        height: 75px;
    }
    .value-box p {
        max-width: 100%;
    }
}
/* TABLET */
@media (min-width: 768px) and (max-width: 991px) {
    .inner-banner {
        height: 420px;
    }
    .page-title {
        font-size: 34px;
    }
    .value-icon {
        width: 135px;
        height: 135px;
    }
    .value-icon img {
        width: 85px;
        height: 85px;
    }
}
/* LARGE DESKTOP */
@media (min-width: 1200px) {
    .inner-banner {
        height: 560px;
    }
}
/* =========================================
   DESKTOP: Page title left + vertically center */
@media (min-width: 992px) {
    .inner-banner {
        display: flex;
        align-items: center;      
    }
    .banner-content {
        align-items: center;
        justify-content: flex-start; 
        padding-bottom: 0;           
    }
    .page-title {
        text-align: left;
    }
}
/* =========================================
   SMALLER ICONS FOR MISSION • VISION • VALUES */
.mv-section .value-icon {
    width: 120px;
    height: 120px;
}
.mv-section .value-icon img {
    width: 75px;
    height: 75px;
}
@media (max-width: 767px) {
    .mv-section .value-icon {
        width: 100px;
        height: 100px;
    }

    .mv-section .value-icon img {
        width: 65px;
        height: 65px;
    }
}
