/* ABOUT US PAGE STYLES */

/* --- Hero Section --- */
.about-hero-modern {
    position: relative;
    background-image: url('../image/aboutus-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.about-hero-text {
    flex: 1;
    padding-bottom: 80px;
}

.about-hero-title {
    font-size: 5.5rem;
    color: var(--color-primary);
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.about-hero-subtitle {
    font-size: 4.5rem;
    color: var(--color-gold);
    font-weight: 700;
    margin: 0 0 20px;
    font-family: var(--font-heading);
}

.about-hero-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-dashes {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dash-blue {
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--color-primary);
}

.dash-gold {
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--color-gold);
}

@media (max-width: 991px) {
    .about-hero-grid {
        flex-direction: column;
        text-align: center;
    }
    .about-hero-text {
        max-width: 100%;
        padding-bottom: 40px;
    }
    .hero-dashes {
        justify-content: center;
    }
    .about-hero-title {
    font-size: 3rem;
}
.about-hero-subtitle {
    font-size: 2.5rem;
}

}


/* --- Main About Content --- */
.about-main-content {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .about-main-grid {
        grid-template-columns: 1fr;
    }
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.about-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    background-color: #9696963a;
    padding: 10px;
}

.about-title-group h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.about-title-group h4 {
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.about-text-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Objectives List */
.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
}

.objectives-list li i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Approach Timeline */
.approach-desc {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.process-timeline img {
    width: 100%;
    height: auto;
    display: block;
}


/* --- Global Reach Banner --- */
.global-reach-section {
    padding: 0 0 100px;
    background: #fff;
    position: relative;
}

.global-reach-banner {
    background-color: var(--color-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 50px 60px;
    box-shadow: 0 20px 40px rgba(4, 18, 45, 0.15);
    justify-content: flex-end;
}

.global-image-wrapper {
    position: absolute;
    left: -5px;
    top: -60%;
    width: 500px;
    height: auto;
    padding: 8px;
    z-index: 1;
}

.global-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.global-content {
    margin-left: 240px;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.global-title {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.global-title i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-top: 5px;
}

.global-title h3 {
    color: var(--color-gold);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.global-title h3:last-child {
    color: var(--color-white);
}

.global-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .global-reach-banner {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 40px; /* space for image at top */
    }
    .global-image-wrapper {
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
        width: 180px;
        height: 180px;
    }
    .global-content {
        margin-left: 0;
    }
    .global-title {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
