/* Why Choose Us Styles */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.why-choose-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.why-choose-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    
    display: flex;
    align-items: center;
    justify-content: center;
}


.why-choose-card:hover .why-choose-icon {
    background: var(--secondary-color);
    color:var(--primary-color);
    transform: rotateY(180deg);
}

.why-choose-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E93FC;
    margin-bottom: 10px;
}