/* body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
} */

/* header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
} */

/* Styles for Image Container */
.imacontainer {
    position: relative;
    width: 100%;
    height: 70vh; /* Full viewport height */
    overflow: hidden;
}

.myimag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.myimag img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire space */
}

.overlay-text {
    position: absolute;
    bottom: 20px; /* Adjust position of text */
    right: 80%;
    transform: translateX(-50%); /* Center horizontally */
    padding: 20px;
    color: #fff;
    font-size: 40px;
}

@media (max-width: 768px) {
    .overlay-text {
        font-size: 4vw; /* Adjust font size for smaller screens */
        text-align: right;
    }
}

.overlay-text h2 {
    margin: 0;
}

/* Additional CSS for other sections */

.intro, .mission-vision-values {
    padding: 2rem;
    margin-top: 0; /* Remove top margin */
    width: 80%;
    text-align: justify;
    margin: auto;

}

.intro p {
    margin: 1rem 0;
    margin-top: 20px; /* Add margin at the top of each paragraph */
}

.mission-vision-values {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.mission, .vision, .core-values {
    flex: 1;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 5px;
    background: #f9f9f9;
    min-width: 280px; /* Ensures the sections do not shrink too small */
}

h2 {
    margin-top: 0;
}

.core-values ul {
    list-style: none;
    padding-left: 0;
}

.core-values ul li {
    background: url('check-icon.png') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mission-vision-values {
        flex-direction: column;
    }

    .intro, .mission-vision-values {
        padding: 1rem; /* Adjust padding for mobile view */
    }
}

/* Additional Styles */
.intro {
    text-align: justify;
}

.intro h1 {
    text-align: center;
}

.intro p {
    margin-top: 10px; /* Adjust as needed */
}