﻿
/* General Styles */
.container1 {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

/* Introduction Section */
.intro-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: justify;
    font-size: 1rem;
    line-height: 1.6;
    width: 75%;
    margin-bottom: 20px;
}

/* Mission and Vision Section */
.mission-vision-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mission and Vision Cards */
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1;
    min-width: 300px;
}

    .card h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #333;
        text-align: center;
    }

    .card ul {
        list-style-type: disc;
        padding-left: 20px;
    }

        .card ul li {
            margin-bottom: 10px;
            line-height: 1.4;
        }

/* Mission Section Styling */
.mission {
    background-color: #e7f5ff; /* Light blue background */
}

/* Vision Section Styling */
.vision {
    background-color: #fceefc; /* Light pink background */
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision-section

{
    flex-direction: column;
}
    .intro-section {
      
        width: 100%;
        margin-bottom: 20px;
    }
    .about-us-header {
        flex-direction: column; /* Stack elements vertically */
        padding: 20px; /* Reduce padding for smaller screens */
    }

        .about-us-header .image-container img {
            width: 100%; /* Use full width for the image */
            height: auto; /* Maintain aspect ratio */
            margin-bottom: 20px; /* Add spacing below the image */
        }

        .about-us-header .text-container {
            padding: 0 10px; /* Reduce padding for the text */
            text-align: justify; /* Optional: Align text for readability */
        }

        .about-us-header h2 {
            font-size: 1.5rem; /* Adjust font size */
            text-align: center; /* Center heading on smaller screens */
        }

        .about-us-header p {
            font-size: 0.9rem; /* Adjust font size for readability */
        }
}
/* General Styling for Mobile */
