.about_page_banner {
    position: relative;
}
.page_banner_internal_content {
    width: 450px;
    position: absolute;
    top: 30%;
    left: 10%;
    padding: 20px 30px 0;
}

.page_banner_internal_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 8px;
    background: var(--theme-green);
}

.page_banner_internal_content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 40%;
    background: var(--theme-green);
}
/* =========================================
   COMMON
========================================= */

.ourStory,
.missionVissionSection {
    background: #fff;
}

.sectionPadding {
    padding: 55px 0;
}

.sectionTitle {
    margin-bottom: 30px;
}

.sectionTitle h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #252525;
}

.sectionTitle span,
.sectionHeading span {
    display: block;
    width: 28px;
    height: 3px;
    background: #009b4d;
    margin-top: 7px;
    border-radius: 10px;
}

/* =========================================
   OUR STORY
========================================= */

.storyRow {
    row-gap: 30px;
}

.storyImage {
    width: 100%;
    max-width: 500px;
    height: 250px;
    overflow: hidden;
    border-radius: 7px;
}

.storyImage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.storySummary {
    padding-left: 25px;
}

.storySummary p {
    font-size: 15px;
    line-height: 1.9;
    color: #252525;
    margin: 0 0 22px;
}

.storySummary p:last-child {
    margin-bottom: 0;
}

/* =========================================
   MISSION & VALUES SECTION
========================================= */

.missionVissionSection {
    padding: 10px 0 30px;
}

.contentColumn {
    height: 100%;
}

.missionColumn {
    padding-right: 35px;
}

.valuesColumn {
    padding-left: 35px;
    border-left: 1px solid #e5e5e5;
}

.sectionHeading {
    margin-bottom: 18px;
}

.sectionHeading h3 {
    font-size: 20px;
    font-weight: 700;
    color: #252525;
    margin: 0;
}

/* =========================================
   MISSION / VISION CARD
========================================= */

.missionVisionCard {
    min-height: 105px;
    border: 1px solid #e8e8e8;
    border-radius: 7px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.missionVisionCard:hover {
    border-color: #d5eadc;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.cardIcon {
    width: 78px;
    min-width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #eef8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardIcon i {
    color: #009b4d;
    font-size: 30px;
}

.cardContent h4 {
    color: #008f47;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px;
}

.cardContent p {
    color: #252525;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   VALUES
========================================= */

.valuesRow {
    row-gap: 30px;
}

.valueItem {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.valueIcon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valueIcon i {
    color: #009b4d;
    font-size: 25px;
}

.valueItem h4 {
    font-size: 14px;
    font-weight: 700;
    color: #252525;
    margin: 5px 0 8px;
}

.valueItem p {
    font-size: 12px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* =========================================
   COMPANY STATS
========================================= */

.companyStats {
    margin-top: 25px;
    padding: 18px 25px;
    background: #f1f8f2;
    border-radius: 9px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.statItem {
    text-align: center;
    position: relative;
}

.statItem:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 42px;
    background: #d8ded9;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.statItem h3 {
    color: #008f47;
    font-size: 27px;
    font-weight: 700;
    margin: 0 0 3px;
}

.statItem p {
    color: #252525;
    font-size: 13px;
    margin: 0;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .sectionPadding {
        padding: 45px 0;
    }

    .storyImage {
        max-width: 100%;
        height: 230px;
    }

    .storySummary {
        padding-left: 10px;
    }

    .missionColumn {
        padding-right: 15px;
    }

    .valuesColumn {
        padding-left: 15px;
    }

    .missionVisionCard {
        padding: 12px;
        gap: 15px;
    }

    .cardIcon {
        width: 65px;
        min-width: 65px;
        height: 65px;
    }

    .cardIcon i {
        font-size: 25px;
    }

    .valueItem {
        gap: 10px;
    }

    .valueIcon {
        width: 52px;
        min-width: 52px;
        height: 52px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .sectionPadding {
        padding: 40px 0;
    }

    .sectionTitle h2 {
        font-size: 21px;
    }

    /* Story */
    .storyRow {
        row-gap: 25px;
    }

    .storyImage {
        height: auto;
        max-width: 100%;
    }

    .storyImage img {
        height: auto;
        object-fit: contain;
    }

    .storySummary {
        padding-left: 0;
    }

    .storySummary p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Mission */
    .missionVissionSection {
        padding-top: 0;
    }

    .missionColumn,
    .valuesColumn {
        padding: 0;
    }

    .valuesColumn {
        margin-top: 35px;
        padding-top: 30px;
        border-left: 0;
        border-top: 1px solid #e5e5e5;
    }

    .sectionHeading h3 {
        font-size: 18px;
    }

    .missionVisionCard {
        min-height: auto;
        padding: 15px;
        gap: 15px;
    }

    .cardIcon {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }

    .cardContent h4 {
        font-size: 14px;
    }

    .cardContent p {
        font-size: 12px;
    }

    /* Values */
    .valuesRow {
        row-gap: 25px;
    }

    .valueItem {
        gap: 12px;
    }

    .valueIcon {
        width: 55px;
        min-width: 55px;
        height: 55px;
    }

    /* Stats */
    .companyStats {
        margin-top: 35px;
        padding: 15px 5px;

        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }

    .statItem:nth-child(2)::after {
        display: none;
    }

    .statItem h3 {
        font-size: 23px;
    }

    .statItem p {
        font-size: 11px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
    .sectionPadding {
        padding: 35px 0;
    }

    .storyImage {
        border-radius: 6px;
    }

    .missionVisionCard {
        align-items: flex-start;
    }

    .cardIcon {
        width: 52px;
        min-width: 52px;
        height: 52px;
    }

    .cardIcon i {
        font-size: 21px;
    }

    .valueIcon {
        width: 48px;
        min-width: 48px;
        height: 48px;
    }

    .valueIcon i {
        font-size: 20px;
    }

    .companyStats {
        border-radius: 7px;
    }

    .statItem h3 {
        font-size: 21px;
    }
}
.mapSection {
    padding: 60px 0;
    background: #fff;
}

.mapSection .sectionTitle {
    margin-bottom: 30px;
}

.mapSection .sectionTitle h2 {
    font-size: 24px;
    font-weight: 700;
    color: #252525;
    margin: 0;
}

.mapSection .sectionTitle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #009b4d;
    margin: 8px auto 0;
    border-radius: 10px;
}

.mapWrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
}

.mapWrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .mapSection {
        padding: 50px 0;
    }

    .mapWrapper {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .mapSection {
        padding: 40px 0;
    }

    .mapSection .sectionTitle h2 {
        font-size: 21px;
    }

    .mapWrapper {
        height: 300px;
        border-radius: 7px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .mapWrapper {
        height: 260px;
    }
}
