* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-section {
    width: 80%;
    margin: 50px auto;
    border: 2px solid #0099ff;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.about-header {
    background-color: #0099ff;
    padding: 10px 20px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    width: fit-content;
    border-radius: 5px 5px 0 0;
}

.about-content {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    color: #333;
}

@media screen and (max-width: 768px) {
    .about-section {
        width: 90%;
        margin: 20px auto;
        padding: 15px;
    }

    .about-header {
        font-size: 18px;
    }

    .about-content {
        font-size: 14px;
    }
}


.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

h2 {
    text-align: center;
    color: #004085;
    color: white;
}

.mission-vision {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.mission-vision h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.mission-vision-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.mission,
.vision {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    transition: transform 0.3s ease-in-out;
}

.mission:hover,
.vision:hover {
    transform: translateY(-5px);
}

.mission h3,
.vision h3 {
    font-size: 1.5rem;
    color: #0073e6;
    margin-bottom: 10px;
}

.mission p,
.vision p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Team Section Styling */
.team {
    text-align: center;
    margin-bottom: 40px
}

.team .container {
    margin: 0 auto;
}

.team h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.member {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.member h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.member p {
    font-size: 1.1rem;
    color: #777;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    margin-bottom: 50px;
}

.testimonialcontainer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}


.testimonials h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.testimonial {
    max-width: 650px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 6px solid #007bff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.testimonial h4 {
    margin-top: 12px;
    color: #004085;
    font-size: 1.2rem;
    font-weight: 600;
}

/* infra */

.infrastructure {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
}

.infrastructure-container {
    display: flex;
    max-width: 1200px;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content {
    max-width: 600px;
    text-align: left;
}

.content h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 10px;
}

.content h4 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
}

.content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content ul li {
    font-size: 1rem;
    color: #444;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.content ul li::before {
    content: "✔";
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* Responsive Design */
@media (max-width: 768px) {


    .infrastructure-container {
        display: flex;
        flex-direction: column;
    }

}