/*====SECTION GSWA Vision and Mission===*/
/*home page*/
/*vm-vision-mission*/
.vm-section {
    padding: 20px 0px;
    background: #f8fafc;
}

.vm-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}



.vm-grid {

    display: flex;
    gap: 10px;
}

.vm-card {
    flex: 1;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.3s ease;
}

/* Left accent line */
.vm-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 6px;
    height: 60px;
    background: #2c7a7b; /* NGO green tone */
   border-radius: 4px;
}

/* Headings */
.vm-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #111827;
}

/* Paragraph text */
.vm-card p {
    line-height: 1.8;
    color: #4b5563;
    font-size: 16px;
}

/* Hover effect */
.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/*@media (max-width: 768px) {

    .vm-grid {
        flex-direction: column;
        gap: 40px;
    }

    .vm-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
}*/
