/* --- Vision Section Styles --- */
.vision-section {
    padding: 90px 40px;
    background-color: #f9f9f9; 
}
.vision-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; 
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.vision-content .section-title {

    text-align: left;
    margin-bottom: 25px;
}

.vision-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Image Block Styling */
.vision-image-block {
    text-align: center;
    padding: 20px;
    background: #315b9e;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.co-founder-image {
    width: 100%;
    max-width: 300px; 
    max-height: 400px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 15px;
}

.image-caption {
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.caption-name {
    font-size: 18px;
    font-weight: 700;
    color: #eee;
    margin: 5px 0 0;
}

.caption-title {
    font-size: 14px;
    color: skyblue;
    margin: 0;
}

/* Responsive for Mobile */
@media (max-width: 900px) {
    .vision-container {
        grid-template-columns: 1fr; 
        gap: 30px;
    }

    .vision-image-block {
        order: -1; 
    }
}

/* Responsive */
@media (max-width: 600px) {
    .vision-text {
        font-size: 1rem;
        padding: 18px;
        border-left-width: 3px;
        border-right-width: 3px;
    }
}

@media (max-width: 400px) {
    .vision-text {
        font-size: 0.95rem;
        padding: 15px;
    }
}
