/* aboutus.css - Styles for the AI Exam Boost About Us Page */

body.about-us-page-body {
    background-color: #f8f9fa; /* Consistent light background */
}

.about-us-main {
    padding-top: 60px; /* Adjust this value based on your actual header height + some extra space */
                       /* Example: 70px (header) + 30px (breathing room) = 100px */
    padding-bottom: 40px; /* Existing bottom padding */
    padding-left: 15px; /* Add some horizontal padding for smaller screens */
    padding-right: 15px;
    box-sizing: border-box; /* Ensure padding is included in width/height calculations */
    min-height: 100vh;
}

/* Page Header Section (for About Us, Contact Us, etc.) */
.page-header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.85)), url('images/about-us-banner.jpg') no-repeat center center/cover; /* Example background image */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}
.page-header h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.page-header .page-subtitle {
    font-size: 1.2em;
    color: #e0e7ef;
    max-width: 650px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    .page-header h1 {
        font-size: 2.2em;
    }
}


/* General Section Styling */
.section-padding { /* Re-using from index.html styles.css if global */
    padding: 60px 0;
}
.bg-light-alt { /* Slightly different light background for alternating sections */
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.content-section { /* For text-heavy sections */
    max-width: 800px; /* Constrain width for readability */
    margin-left: auto;
    margin-right: auto;
}
.content-section p {
    font-size: 1.05em;
    color: #495057;
    margin-bottom: 1.5em;
    text-align: justify; /* Justify text for a more formal look */
}

.section-title-underline {
    font-size: 2.2em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color, #007bff); /* Use primary color */
}


/* Mission & Vision Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 40px;
    align-items: start; /* Align items to the top */
}
@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr 1fr; /* Side-by-side on larger screens */
    }
}

.mission-item, .vision-item {
    text-align: center;
    padding: 20px;
}
.mv-icon { /* Mission/Vision Icons */
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    /* color: var(--primary-color); If using font icons */
}
.mission-item h3, .vision-item h3 {
    font-size: 1.5em;
    color: #34495e;
    margin-bottom: 10px;
}


/* What We Offer Section */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.offering-item {
    background-color: #fdfdfd;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
.offering-icon {
    font-size: 2.5em; /* For emoji icons */
    display: block;
    margin-bottom: 15px;
    color: var(--primary-color, #007bff);
}
.offering-item h4 {
    font-size: 1.2em;
    color: #34495e;
    margin-bottom: 10px;
}


/* Our Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.team-member-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
    text-align: center;
    padding: 20px;
    overflow: hidden; /* If photo is part of card bg */
}
.team-member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
    border: 3px solid var(--primary-color, #007bff);
}
.team-member-card h4 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #2c3e50;
}
.team-member-role {
    font-size: 0.9em;
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
}
.team-member-bio {
    font-size: 0.9em;
    color: #6c757d;
}


/* About Us CTA Section */
#about-cta {
    background-color: #e9ecef; /* Light grey for a softer CTA */
    text-align: center;
}
#about-cta h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}
#about-cta p {
    margin-bottom: 25px;
    font-size: 1.05em;
}
#about-cta .btn {
    margin: 0 10px;
}

.text-center { /* Utility class */
    text-align: center;
}

.offering-item .offering-icon {
    font-size: 48px; /* Control the size of the icon */
    color: var(--primary-color, #007bff); /* Use your primary brand color */
    margin-bottom: 15px;
    
    /* Optional: for filled icons with a background */
    /*
    background-color: #e6f2ff;
    padding: 15px;
    border-radius: 50%;
    display: inline-flex;
    */
}