
/* About Section */
.about-section {
    padding: 40px 0;
}
/* .page-header{
    background-image: url("./images/boardcman.jpg");
} */
.section-title {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
    bottom: -10px;
    left: 0;
}

.about-img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* width: 300px; */
    overflow: hidden;
}

.about-img img {
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.highlight-box {
    background-color: var(--primary-black);
    color: white;
    padding: 30px;
    border-left: 5px solid var(--primary-green);
    margin: 30px 0;
}

.mission-vision {
    background-color: var(--light-grey);
    padding: 80px 0;
}

.mv-card {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 5px solid var(--primary-green);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    overflow: hidden;
}

.team-img img {
    transition: transform 0.5s ease;
    width: 100%;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    color: var(--primary-black);
    font-weight: 700;
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-black) !important;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    color: var(--primary-black);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-grey);
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background-color: var(--primary-green);
    color: var(--primary-black);
    border-color: var(--primary-green);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: white;
    padding: 60px 0 0;
}

.footer-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-green);
    margin-right: 15px;
    width: 20px;
}

.social-icons a {
    color: white;
    background-color: var(--primary-grey);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    color: var(--primary-black);
}

.copyright {
    background-color: var(--dark-grey);
    padding: 20px 0;
    margin-top: 30px;
}