/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #1D1D1D;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Our Vision Section */
.ourvision {
    padding: 50px 20px;
    background: linear-gradient(135deg, #00193A, #1D68E5); /* Gradient background */
    color: #FFFFFF;
    overflow: hidden; /* Prevent overflow from animations */
}

.ourvision-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ourvision-content {
    flex: 1 1 60%;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

.ourvision-title {
    font-family: 'Lexend Deca Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 700;
    animation: slideInLeft 1s ease-out forwards;
}

.ourvision-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #DDE7F0;
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.3s;
}

.ourvision-description .highlight {
    color: #EF8354; /* Warm orange for highlighted words */
    font-weight: 600;
}

.ourvision-image {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.5s; /* Staggered effect */
}

.ourvision-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.ourvision-img:hover {
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ourvision-container {
        flex-direction: column;
        text-align: center;
    }

    .ourvision-content, 
    .ourvision-image {
        padding: 10px;
    }

    .ourvision-title {
        font-size: 2rem;
    }

    .ourvision-description {
        font-size: 1rem;
    }
}
