body {
    background-color: #f5f5f5;
    color: #003566;
    margin: 0;
    padding: 0;
}
.container1 {
    background-color: #003566;
    padding: 4rem 5%;
    margin-top: 3rem;
    color: white;
}
.main-content {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #003566;
    font-weight: 700;
}

.vision-mission-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.vision-image {
    flex: 0 0 40%;
    height: 300px;
    overflow: hidden;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vision-image img:hover {
    transform: scale(1.05);
}

.mission-content {
    flex: 0 0 55%;
    padding: 2rem;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.mission-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #003566;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.mission-list li:before {
    content: "•";
    color: #003566;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    height: 250px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#FFC300;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

.divider {
    border-top: 1px dashed #003566;
    margin: 2rem 0;
}
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.banner-section {
    flex: 1;
    margin-right: 30px;
}

.banner {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
    position: relative;
}

.banner::before {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #ffcc00;
    margin-bottom: 10px;
}

.description-section {
    flex: 2;
}

.description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .vision-mission-container {
        flex-direction: column;
    }
    .vision-image, .mission-content {
        flex: 0 0 100%;
    }
    .vision-image {
        height: 200px;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}