/* Professional Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #242583 0%, #399CD4 100%);
    padding: 60px 0;
    color: #fff;
}

.stats-row {
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 15px;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Why Choose Section */
#why-choose {
    padding: 80px 0;
}

#why-choose .section-header p {
    max-width: 700px;
    margin: 15px auto 50px;
    color: #666;
}

.content-row {
    margin-top: 30px;
}

.why-item {
    background: #fff;
    padding: 35px 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s ease;
}

.why-item:hover::before {
    left: 100%;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    border-left-color: #764ba2;
}

.why-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.why-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #764ba2;
    gap: 12px;
}

.learn-more i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

/* Team Expertise Section */
#team-expertise {
    padding: 80px 0;
    background: #f9f9f9;
}

#team-expertise .section-header p {
    max-width: 650px;
    margin: 15px auto 50px;
    color: #666;
}

#team-expertise .row {
    display: flex;
    flex-wrap: wrap;
}

#team-expertise .row>div[class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.team-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-top-color: #399CD4;
}

.team-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #242583 0%, #399CD4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 42px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(36, 37, 131, 0.3);
}

.team-card:hover .team-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(36, 37, 131, 0.4);
}

.team-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.team-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-skills {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.team-skills li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-skills li i {
    color: #399CD4;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    #why-choose,
    #team-expertise {
        padding: 50px 0;
    }

    .why-item {
        padding: 25px 20px;
    }

    .why-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .why-item h4 {
        font-size: 20px;
    }

    .team-card {
        padding: 30px 20px;
    }

    .team-icon {
        width: 75px;
        height: 75px;
        font-size: 36px;
    }
}