.menu-font {
    margin-left: auto; /* Automatically adjusts margin for better alignment */
    gap: 0.5em;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
}
.background-image-container {
    position: relative;
    background-image: url('assets/images/ourmission.png');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-text {
    position: relative;
    color: white; /* Color to contrast with the image */
    padding: 20px;
    border-radius: 10px;
    max-width: 800px; /* Adjust the max-width as needed */
    text-align: center;
}

.font-semibold {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .background-image-container {
        height: auto;
        padding: 50px 20px; /* Adjust padding for smaller screens */
    }

    .overlay-text {
        font-size: 1rem;
        padding: 15px;
    }
}
.image-container {
    overflow: hidden;
}

.image-container img {
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

.text-container {
    background-color: #f8f9fa; /* Light gray background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Box shadow */
}

.text-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #333; /* Dark text color */
}
