/* Enhanced Service Background Images and Styling */

/* Service Cards Enhancement */
.service-section .card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92) !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
    background: rgba(255, 255, 255, 0.97) !important;
    border-color: rgba(255, 255, 255, 0.6);
}

/* Service Accent Colors */
.commerce-accent {
    border-left: 4px solid #00953A !important;
}

.business-accent {
    border-left: 4px solid #00AEEF !important;
}

.agriculture-accent {
    border-left: 4px solid #00953A !important;
}

.industry-accent {
    border-left: 4px solid #00AEEF !important;
}

/* Enhanced Service Navigation */
.service-nav .btn {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid rgba(0, 149, 58, 0.3) !important;
    transition: all 0.3s ease;
    color: #00953A !important;
    font-weight: 600;
}

.service-nav .btn:hover,
.service-nav .btn.active {
    background: #00953A !important;
    border-color: #00953A !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 149, 58, 0.3);
}

/* Icon Box Enhancement */
.icon-box {
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-section .icon-box:hover {
    transform: scale(1.05);
}

/* Service Statistics Enhancement */
.service-stat {
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.service-stat:hover::before {
    left: 100%;
}

.service-stat:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-header-overlay {
        margin: 0.5rem;
        padding: 2rem 1rem !important;
    }
    
    .commerce-bg-section,
    .business-bg-section,
    .agriculture-bg-section,
    .industry-bg-section {
        background-attachment: scroll;
        border-radius: 15px;
    }
}