/* Modern Process Section Styling */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(21, 162, 140, 0.3);
}

.process-timeline {
    position: relative;
}

.modern-process-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(21, 162, 140, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.modern-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(21, 162, 140, 0.15);
}

.modern-process-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(21, 162, 140, 0.3);
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(21, 162, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #15a28c;
    font-size: 32px;
    transition: all 0.3s ease;
}

.modern-process-card:hover .step-icon {
    background: rgba(21, 162, 140, 0.2);
    transform: scale(1.1);
}

.step-content h5 {
    color: #210059;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.step-connector {
    display: none;
}

/* Desktop connector lines */
@media (min-width: 992px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 90px;
        right: -50px;
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, #15a28c, #37ec7e);
        opacity: 0.3;
    }
    
    .process-step:last-child .step-connector {
        display: none;
    }
}

/* Process Benefits */
.process-benefits {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.benefit-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content h6 {
    color: #210059;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
}

.benefit-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Services Stats Grid */
.services-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: linear-gradient(135deg, #15a28c, #37ec7e);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-icon i {
    color: white !important;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(21, 162, 140, 0.1) !important;
    color: #15a28c !important;
}

.stat-item:hover .stat-icon i {
    color: #15a28c !important;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: white !important;
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.services-stats-grid .stat-item:hover .stat-number {
    color: #15a28c !important;
}

.stat-item:hover .stat-number {
    color: #15a28c !important;
}

.why-choose-services .stat-item:hover .stat-number {
    color: #15a28c !important;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-label {
    color: #666;
}

/* Home Page About Stats Styling */
.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px !important;
    justify-content: flex-start;
}

.about-stat {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 140px;
    flex: 1;
}

.about-stat .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #15a28c !important;
    margin-bottom: 5px;
    display: block;
}

.about-stat .stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #666 !important;
    margin: 0;
}

/* Mobile responsive for about stats */
@media (max-width: 768px) {
    .about-stats {
        justify-content: center;
        gap: 15px !important;
    }
    
    .about-stat {
        padding: 20px 15px;
        min-width: 120px;
    }
    
    .about-stat .stat-value {
        font-size: 24px;
    }
    
    .about-stat .stat-label {
        font-size: 12px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modern-process-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .process-benefits {
        padding: 20px;
    }
    
    .benefit-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .services-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}
