.gallery-section{
    padding: 50px 0;
    background: #f8f9fa;
}
.gallery-section img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.vision-section{
    background: #f8f9fa;
}
.vision-section h2{
    font-size: 25px;
    font-weight: 700;
    color: #0b2baa;
    margin-bottom: 30px;
}
.vision-section p{
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}
.feature-cards-section {
    background: #f8f9fa;
    padding: 50px 0;
}

.feature-card {
    background: #e8f0fe;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: left;
    height: 120px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #e8f0fe;
    border: 2px solid #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-title {
    color: #1565c0;
    font-weight: 600;
    font-size: 14px !important;
    line-height: 1.3;
    margin: 0;
}
    @media (max-width: 768px) {
           
    .feature-title {
    font-size: 13px !important;
}
}
@media (max-width: 576px) {
    .feature-card{
    padding: 10px;
    height: auto;
}
.feature-icon {
    width: 35px;
    height: 35px;
}
.feature-title {
        font-size: 9px !important;
    }
}
