/* Managed IT Services Page Enhancements */

/* Service Feature Box Animations */
.service-feature-box {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-feature-box:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Process Steps Enhanced Styling */
.process-step {
    cursor: pointer;
}

.process-step:hover .process-number {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Statistics Section Enhancements */
.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover i {
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* Benefits Section Hover Effects */
[data-aos="fade-up"] {
    transition: all 0.3s ease !important;
}

/* CTA Box Enhancements */
.cta-box {
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-3px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step .process-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .stat-item h4 {
        font-size: 2rem !important;
    }
}

/* Loading Animation for Counters */
.counter {
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(45deg, #4A90E2, #2b3990);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Button Styles */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-enhanced:hover::before {
    left: 100%;
}

/* Floating Animation for Icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

/* Scroll-triggered Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Shadows */
.enhanced-shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.enhanced-shadow:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
