/* Why Choose Us Styling */
.single-choose {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #eee;
}

.single-choose:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 30px;
    color: #2f86d8;
}

.image-container {
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-choose:hover .image-container img {
    transform: scale(1.05);
}

/* Team Styling */
.single-team {
    padding: 20px;
    text-align: center;
}

.team .image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border: 5px solid #f8f9fa;
    overflow: hidden;
}

.team img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team h3 {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #333;
}

.team p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .team .image-container {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .team .image-container {
        width: 150px;
        height: 150px;
    }
    
    .single-choose, .single-team {
        margin-bottom: 30px;
    }
}

/* Vision Mission Styling */
.vision-mission .section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.vision-mission .section-title p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.vision-box, .mission-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vision-box h3, .mission-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f86d8;
}

.vision-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.mission-box ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 36px;
    color: #2f86d8;
}

/* Responsive */
@media (max-width: 767px) {
    .vision-box, .mission-box {
        padding: 30px !important;
    }
    
    .vision-mission .section-title h2 {
        font-size: 1.8rem;
    }
    
    .vision-mission .section-title p {
        font-size: 1rem;
    }
    
    .vision-box h3, .mission-box h3 {
        font-size: 1.3rem;
    }
    
    .vision-box p, .mission-box ul li {
        font-size: 1rem;
    }
    
    .icon {
        width: 70px;
        height: 70px;
    }
    
    .icon i {
        font-size: 30px;
    }
}

