.vision-mission-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.vision-card {
    background-color: #edf7fd;
    border-radius: 30px;
    padding: 40px 30px;
    width: 100%;
    max-width: 522px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 2px 8px 0px rgba(17, 29, 54, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 15px 0px rgba(17, 29, 54, 0.2);
}

.vision-icon-placeholder {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-icon-placeholder img {
    max-height: 100%;
    width: auto;
}

.vision-title {
    font-size: 28px;
    font-weight: 700;
    color: #013475;
    margin-bottom: 15px;
    line-height: 1.2;
}

.vision-text {
    font-size: 18px;
    color: rgba(30, 30, 30, 0.95);
    line-height: 1.5;
    margin: 0;
}

.ellipse5 {
    border-radius: 50%;
    border: 1px solid #DBDBDB;
    position: absolute;
    top: -20px;
    left: -200px;
    width: 348px;
    height: 348px;
    z-index: 2;
}

.checkeredshape-2 {
    position: absolute;
    width: 183px;
    height: 183px;
    z-index: 0;
    bottom: 150px;
    left: 75px;
}

@media (max-width: 1200px) {
    .vision-mission-grid { gap: 30px; }
    .vision-card { max-width: calc(50% - 15px); height: auto; min-height: auto; padding: 30px 20px; }
    .ellipse5, .checkeredshape-2 { display: none; }
    .vision-title { font-size: 24px; }
    .vision-text { font-size: 16px; }
}

@media (max-width: 991px) {
    .vision-card { max-width: 100%; min-height: auto; }
    .vision-mission-grid { gap: 20px; }
}
