/* About Us Page Styles */

.about-hero {
    padding: 100px 0;
    background-color: #F4F8F9;
    background-image: url('../images/pattern-bg.png');
    background-size: cover;
    background-position: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #130803;
    margin-bottom: 10px;
}

.about-hero h2 {
    font-size: 32px;
    color: #2C8234;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 18px;
    color: #4c4440;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Quick Info Bar */
.quick-info-bar {
    background: #FDFDFD;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.quick-info-item {
    text-align: center;
    transition: transform 0.3s;
}

.quick-info-item:hover {
    transform: translateY(-5px);
}

.quick-info-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    object-fit: contain;
}

.quick-info-item h4 {
    font-size: 16px;
    color: #130803;
    margin-bottom: 5px;
}

.quick-info-item p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* Our Story */
.our-story {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h3 {
    color: #2C8234;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.story-content h2 {
    font-size: 36px;
    color: #130803;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 16px;
    color: #4c4440;
    line-height: 1.7;
    margin-bottom: 30px;
}

.story-features {
    list-style: none;
    padding: 0;
}

.story-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #130803;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #FDFDFD;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.stat-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 32px;
    color: #2C8234;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background-color: #F4F8F9;
    text-align: center;
}

.why-choose h3 {
    color: #2C8234;
    font-size: 18px;
    margin-bottom: 10px;
}

.why-choose h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: #FDFDFD;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.why-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.why-card p {
    color: #777;
    line-height: 1.6;
}

/* Leadership */
.leadership {
    padding: 100px 0;
}

.leadership-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.leadership-head h2 {
    font-size: 36px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.leader-card {
    background: #FDFDFD;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    padding-bottom: 25px;
}

.leader-img {
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.leader-card p {
    color: #2C8234;
    font-weight: 600;
    margin-bottom: 5px;
}

.leader-card span {
    font-size: 13px;
    color: #999;
}

/* Stats Bar */
.stats-bar {
    background-color: #130803;
    padding: 60px 0;
    color: #FDFDFD;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}

.stats-bar-item h2 {
    font-size: 42px;
    color: #2C8234;
    margin-bottom: 5px;
}

.stats-bar-item p {
    font-size: 16px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .leadership-head {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .quick-info-bar {
        padding: 30px 20px;
    }
}
