
/* Background for each step */
.step-planning {
    background-color: rgba(25, 25, 35, 0.95);
}

.step-design {
    background-color: rgba(28, 28, 38, 0.95);
}

.step-development {
    background-color: rgba(31, 31, 41, 0.95);
}

.step-testing {
    background-color: rgba(34, 34, 44, 0.95);
}

.step-deployment {
    background-color: rgba(37, 37, 47, 0.95);
}

.step-maintenance {
    background-color: rgba(40, 40, 50, 0.95);
}

.solution-section {

    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.central-process-image {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;

}

.central-process-image img {
    max-width: 60%;
    height: auto;
    opacity: 0.7;
    filter: drop-shadow(0 0 20px rgba(110, 255, 110, 0.3));
    animation: pulseAndGlowAndRotate 8s infinite ease-in-out;
    transform-origin: center center;
}

@keyframes pulseAndGlowAndRotate {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(110, 255, 110, 0.3));
    }
    /* 25% {
        transform: scale(1.05) rotate(90deg);
        filter: drop-shadow(0 0 30px rgba(110, 255, 110, 0.5));
    } */
    50% {
        transform: scale(1) rotate(180deg);
        filter: drop-shadow(0 0 20px rgba(110, 255, 110, 0.3));
    }
    /* 75% {
        transform: scale(1.05) rotate(270deg);
        filter: drop-shadow(0 0 30px rgba(110, 255, 110, 0.5));
    } */
    100% {
        transform: scale(1) rotate(360deg);
        filter: drop-shadow(0 0 20px rgba(110, 255, 110, 0.3));
    }
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 255, 110, 0.3), transparent);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(145deg, rgba(14, 18, 12, 0.9), rgba(9, 11, 12, 0.9));
    padding: 1rem;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 80%;
    min-height: 100px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 30px;
    bottom: -3rem;
    width: 2px;
    height: 3rem;
    background: linear-gradient(to bottom, rgba(110, 255, 110, 0.5), transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(110, 255, 110, 0.1);
    border: 1px solid rgba(110, 255, 110, 0.2);
}

.process-step .icon-container {
    background: linear-gradient(135deg, rgba(110, 255, 110, 0.15), rgba(30, 150, 252, 0.15));
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: visible;
}

.process-step:hover .icon-container {
    transform: rotate(0deg);
    background: linear-gradient(135deg, rgba(110, 255, 110, 0.3), rgba(30, 150, 252, 0.3));
}

.process-step .icon-container i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #6eff6e, #1e96fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.process-step:hover .icon-container i {
    transform: rotate(0deg);
    font-size: 1.8rem;
}

.process-step .text-container {
    flex: 1;
}

.process-step .text-container h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff, #6eff6e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-step .text-container p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Step numbers */
.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #6eff6e, #1e96fc);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Progress line and circular arrow animations */
@keyframes glowLine {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulseSize {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.process-step::after {
    animation: glowLine 2s infinite;
}

/* Circular Arrow */
.process-step .icon-container::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: 
        conic-gradient(
            from 0deg,
            transparent 0deg 315deg,
            rgba(110, 255, 110, 0.1) 315deg 360deg
        );
    border-radius: 50%;
    animation: rotateCircle 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Inner circle */
.process-step .icon-container::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #6eff6e, #1e96fc);
    border-radius: 50%;
    animation: pulseSize 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Show animations on hover */
.process-step:hover .icon-container::before,
.process-step:hover .icon-container::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-step {
        width: 95%;
        margin-bottom: 2rem;
        padding: 1.5rem;
        min-height: 120px;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-step .icon-container {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .process-step .icon-container i {
        font-size: 1.2rem;
    }
    
    .process-step:hover .icon-container i {
        font-size: 1.4rem;
    }
    
    .process-step::after {
        height: 2rem;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-step::before {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}
