/* Parallax Effect for the Our Vision Section */
.our-vision-area {
    background-attachment: fixed;
    background-size: contain; /* Ensure the background image scales down */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    color: white;
}

/* Vision Content Styling */
.vision-content {
    z-index: 2;
    position: relative;
 
}

/* Optional: Overlay to Darken the Background */
.our-vision-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Circle Shape for the Vision Image */
.styled-vision-image {
    max-width: 100%;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensure the image scales nicely within the circular container */
    width: 300px; /* Set a fixed width for the circle */
    height: 300px; /* Set a fixed height for the circle */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .our-vision-area {
        background-attachment: scroll;
    }
    
    .styled-vision-image {
        width: 200px; /* Reduce the circle size for mobile screens */
        height: 200px; /* Match the width for a perfect circle */
    }
}



/* Container for Mission and Vision Section */
.our-vision-area {
   
    background-size: 3%; /* Reduce the background image size to 80% of its original size */
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0; /* Adjust padding as needed */
    background-attachment: fixed; /* Parallax effect */
}

/* Content inside the vision area */
.vision-content {

    color: #333;
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
    position: relative;
}
