/* Business Page Specific Styles */
.business-hero {
    background: linear-gradient(135deg, #1b5e20 0%, #388e3c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920') center/cover;
    opacity: 0.1;
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46,125,50,0.2);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.process-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #43a047;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #43a047;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(46,125,50,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: #2e7d32;
}

.cert-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.cert-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(46,125,50,0.2);
}

.cert-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 5px 20px rgba(46,125,50,0.3);
}

.quality-feature {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid #43a047;
    transition: all 0.3s ease;
}

.quality-feature:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #43a047, #2e7d32);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

@media (max-width: 991px) {
    .process-arrow {
        display: none;
    }
    
    .timeline::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .business-hero {
        padding: 60px 0;
    }
}
