/* Modern Services Box Styling - Version 2.1 - Absolutely No Movement, Only Glow */
.service-box {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    padding: 35px 25px !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    text-align: center !important;
    transition: none !important; /* Remove ALL transitions */
    margin-bottom: 30px !important;
    border: 2px solid #ffffff !important;
    position: relative !important;
    overflow: visible !important;
    filter: none !important;
    backdrop-filter: none !important;
    height: 380px !important;
    min-height: 380px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transform: none !important; /* Ensure no transform is applied */
    will-change: box-shadow !important; /* Optimize box-shadow performance */
}

/* Remove all pseudo-elements that might add gradients or glows */
.service-box::before,
.service-box::after {
    display: none !important;
    content: none !important;
}

/* Instant glow hover effect - No transitions or movements */
.service-box:hover {
    transform: none !important; /* No movement */
    box-shadow: 0 0 20px rgba(0, 70, 190, 0.2), 0 15px 40px rgba(0, 0, 0, 0.15) !important; /* Simple glow effect */
    background: #ffffff !important;
    background-color: #ffffff !important;
    filter: none !important;
    border-color: rgba(0, 70, 190, 0.15) !important; /* Subtle blue border */
    margin: 0 0 30px 0 !important; /* Lock margins */
    padding: 35px 25px !important; /* Lock padding */
    height: 380px !important; /* Lock height */
    min-height: 380px !important; /* Lock min-height */
    width: 100% !important; /* Lock width */
}

.service-box h4 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    margin-bottom: 18px !important;
    color: #2b3990 !important;
    text-shadow: none !important;
    position: relative !important;
    z-index: 2 !important;
}

.service-box p {
    font-size: 1.05rem !important;
    color: #4a4a4a !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
    text-shadow: none !important;
    position: relative !important;
    z-index: 2 !important;
    font-weight: 400 !important;
    flex-grow: 1 !important;
}

.service-box .service-icon {
    width: 100px !important;
    height: 100px !important;
    background: linear-gradient(135deg, rgba(43, 57, 144, 0.1), rgba(74, 144, 226, 0.1)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 25px !important;
    transition: none !important; /* Remove ALL transitions */
    position: relative !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    transform: none !important; /* Ensure no transform is applied */
}

.service-box .service-icon i {
    font-size: 3rem !important;
    color: #4A90E2 !important;
    transition: none !important; /* Remove all transitions */
    z-index: 2 !important;
    position: relative !important;
    transform: none !important; /* Ensure no transform is applied */
    animation: none !important; /* Prevent any animations */
}

.service-box:hover .service-icon {
    transform: none !important; /* No movement */
    filter: none !important; /* Remove filter effects */
    background: linear-gradient(135deg, rgba(0, 70, 190, 0.15), rgba(74, 144, 226, 0.2)) !important; /* Just color change */
}

.service-box:hover .service-icon i {
    color: #4A90E2 !important;
    transform: none !important; /* Ensure no transform is applied */
    animation: none !important; /* Prevent any animations */
}

.service-box .read-more {
    font-weight: 500 !important;
    color: #2b3990 !important;
    display: inline-block !important;
    margin-top: auto !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.service-box .read-more:hover {
    color: #4A90E2 !important;
}

.service-box .read-more i {
    margin-left: 5px !important;
    transition: all 0.3s ease !important;
}

.service-box .read-more:hover i {
    margin-left: 10px !important;
}

/* Responsive adjustments */
@media only screen and (max-width: 767px) {
    .service-box {
        height: auto !important;
        min-height: 320px !important;
        padding: 30px 20px !important;
    }
    
    .service-box .service-icon {
        font-size: 3rem !important;
        margin-bottom: 20px !important;
    }
    
    .service-box h4 {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }
    
    .service-box p {
        font-size: 1rem !important;
    }
}
