body {
    padding-top: 5%;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    background-size: cover;
    min-height: 60vh;
    display: flex;
    color: #000000;
    position: relative;
    border: 1px transparent #080808;
}

.about-hero:hover {
    transform: translateY(-5px);
    border: 2px transparent;
}

.about-img {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    padding-top: 20px;
    padding-left: 20px;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mission Section Styles */
.mission {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    background-size: cover;
    min-height: 60vh;
    display: flex;
    color: #000000;
    position: relative;
    border: 1px transparent #080808;
}

.mission:hover {
    transform: translateY(-5px);
    border: 2px transparent;
}

.mission-img {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    padding-top: 20px;
    padding-left: 20px;
}

.mission-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}

.mission-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.mission-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Vision Section Styles */
.vision {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    background-size: cover;
    min-height: 60vh;
    display: flex;
    color: #000000;
    position: relative;
    border: 1px transparent #080808;
}

.vision:hover {
    transform: translateY(-5px);
    border: 2px transparent;
}

.vision-img {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    padding-top: 20px;
    padding-left: 20px;
}

.vision-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}

.vision-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.vision-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.vision-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/*Team Section */
.team-section {
    padding: 4rem 0;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0f176f;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.team-member img:hover {
    opacity: 0.8;
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    color: #0f176f;
}

.team-member p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 10px;
}

.social-links ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

/* Mobile Responsiveness style */
@media (max-width: 768px) {
    body {
        padding-top: 22%;
    }

    .about-hero {
        min-height: 50vh;
        flex-direction: column;
        text-align: center;
    }

    .about-img {
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .mission {
        min-height: 50vh;
        flex-direction: column;
        text-align: center;
    }

    .mission-img {
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .mission-content {
        padding: 1rem;
        max-width: 100%;
    }

    .mission-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .mission-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .vision {
        min-height: 50vh;
        flex-direction: column;
        text-align: center;
    }

    .vision-img {
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .vision-content {
        padding: 1rem;
        max-width: 100%;
    }

    .vision-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .vision-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .team-section {
        padding: 2rem 1rem;
    }

    .team-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .team-member img {
        width: 100%;
        height: 300px;
    }

    .team-member h3 {
        font-size: 1.2rem;
    }

    .team-member p {
        font-size: 0.9rem;
    }

    .social-links a {
        font-size: 18px;
    }

    .modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 15px;
    }

    .close {
        font-size: 24px;
    }
}