body.development-page {
    background: linear-gradient(135deg, #000913 0%, #001524 100%);
    background-attachment: fixed;
    color: #ffffff;
    backdrop-filter: none;
    animation: floatBubbles 15s linear infinite, moveBubbles 10s linear infinite;
}



body > section.dev-section.hero-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 40% 40%, white, transparent 50%) 0 0 / 100px 100px,
        radial-gradient(2px 2px at 60% 60%, white, transparent 50%) 0 0 / 120px 120px;
    pointer-events: none;
    animation: starsOptimized 20s linear infinite;
    z-index: -1;
}

@keyframes starsOptimized {
    from {
        transform: rotate(0deg);
        background-position: 0 0, 0 0;
    }
    to {
        transform: rotate(360deg);
        background-position: 100px 100px, -120px -120px;
    }
}

@keyframes stars {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-50%, 50%) rotate(15deg);
    }
}



.section-header {
    animation: rotateColors 8s linear infinite, textPulse 2s ease-in-out infinite;
    text-shadow: 2px 2px 4px #000;
    position: relative;
}

/* Remove or comment out the entire .section-header::before block */
/* .section-header:not(#maintitle)::before { ... } */

.section-header:not(#maintitle)::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Changed from -12px to -8px to move it up */
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: white; /* Changed from var(--accent-cyan) to white */
    animation: pulseAndSlide 3s ease-in-out infinite;
}

section.dev-section.hero-section.fade-in > div > h1 {
    padding-top: 4vh;
 
}

#maintitle {
    animation: rotateColors 8s linear infinite, textPulse 2s ease-in-out infinite;
    text-shadow: 2px 2px 4px #000;
    position: relative;
}

@keyframes rotateColors {
    0% { color: #00ffff; }    /* Cyan */
    12.5% { color: #ff0000; } /* Bright Red */
    25% { color: #00ff00; }   /* Bright Green */
    37.5% { color: #ff00ff; } /* Magenta */
    50% { color: #ffff00; }   /* Yellow */
    62.5% { color: #ff8c00; } /* Orange */
    75% { color: #9932ff; }   /* Purple */
    87.5% { color: #00bfff; } /* Deep Sky Blue */
    100% { color: #00ffff; }  /* Back to Cyan */
}

.hero-section .section-header::after {
    
    display: none;
}



.section-subtitle {
    font-size: 200px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.solution-card {
    background: rgba(0, 20, 40, 1);
    backdrop-filter: none;
    border: 1px solid rgba(0,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-title {
    color: var(--accent-cyan);
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: var(--accent-cyan);
    opacity: 0.5;
}

.solution-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.solution-item i {
    transition: transform 0.3s ease;
    display: block;
}

.solution-item.web-dev i { color: #00ffff; }
.solution-item.mobile-dev i { color: #ff3333; }
.solution-item.cloud i { color: #ffffff; }
.solution-item.ai-ml i { color: #ffd700; }
.solution-item.security i { color: #00ff9f; }
.solution-item.consulting i { color: #39ff14; }
.solution-item.integration i { color: #ff8c00; }
.solution-item.automation i { color: #4169e1; }
.solution-item.data-analytics i { color: #00bfff; }
.solution-item.blockchain i { color: #ff1493; }
.solution-item.iot i { color: #9acd32; }
.solution-item.devops i { color: #ff4500; }

.solution-item:hover i {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.solution-item h4 {
    color: #fff;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    animation: textPulse 2s ease-in-out infinite;
    transform-origin: center;
}

.solution-item p {
    color: #a0a0a0;
    line-height: 1.5;
    text-align: center;
    margin-top: auto;
}

.development-page .services-header {
    color: var(--accent-cyan);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0;
    animation: textPulse 2s ease-in-out infinite;
    transform-origin: center;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.section-divider::before {
    content: '';
    position: absolute;
    height: 2px;
    background: var(--accent-cyan);
    top: 1px;
    left: -50%;
    animation: moveBackAndForth 4s linear infinite;
    box-shadow: 0 0 10px var(--accent-cyan),
                0 0 20px var(--accent-cyan);
}

.pre-footer-divider {
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: var(--z-beams-horizontal);
    margin: 2rem 0 0 0;
    pointer-events: none;
}

.pre-footer-divider::before {
    content: '';
    position: absolute;
    height: 2px;
    background: var(--accent-cyan);
    top: 1px;
    left: -50%;
    animation: moveBackAndForth 4s linear infinite;
    box-shadow: 0 0 10px var(--accent-cyan),
                0 0 20px var(--accent-cyan);
}

@keyframes moveBackAndForthTitle {
    0% { transform: translateX(-60%); }
    50% { transform: translateX(-40%); }
    100% { transform: translateX(-60%); }
}

@keyframes pulseAndSlide {
    0% {
        width: 0%;
        opacity: 0;
    }
    15% {
        width: 80%;
        opacity: 1;
    }
    30% {
        width: 70%;
        opacity: 0.8;
    }
    45% {
        width: 80%;
        opacity: 1;
    }
    85% {
        width: 80%;
        opacity: 1;
    }
    100% {
        width: 0%;
        opacity: 0;
    }
}

/* Animations */
@keyframes floatBubbles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

@keyframes moveBubbles {
    0% {
        background-position: 10% 10%, 30% 20%, 50% 10%, 70% 20%, 90% 10%, 20% 40%, 40% 50%, 60% 40%, 80% 50%, 10% 70%, 30% 80%, 50% 70%, 70% 90%, 90% 80%;
    }
    50% {
        background-position: 20% 20%, 40% 10%, 60% 30%, 80% 20%, 100% 10%, 30% 50%, 50% 60%, 70% 50%, 90% 60%, 20% 80%, 40% 90%, 60% 80%, 80% 100%, 100% 90%;
    }
    100% {
        background-position: 10% 10%, 30% 20%, 50% 10%, 70% 20%, 90% 10%, 20% 40%, 40% 50%, 60% 40%, 80% 50%, 10% 70%, 30% 80%, 50% 70%, 70% 90%, 90% 80%;
    }
}

@keyframes textPulse {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-3px) scale(1.05);
        opacity: 0.8;
    }
    100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}