body {
    background: #050510;
}

.text-gradient {
    background: linear-gradient(135deg, #00f0ff, #7b2fff, #ff2d6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientX 3s ease infinite;
}

.text-gradient-static {
    background: linear-gradient(135deg, #00f0ff, #7b2fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-animate {
    background: linear-gradient(135deg, #00f0ff, #7b2fff, #ff2d6f, #00f0ff);
    background-size: 300% 300%;
    animation: gradientX 4s ease infinite;
}

.glass {
    background: rgba(10, 10, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.08);
}

.glass-card {
    background: rgba(12, 12, 42, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 240, 255, 0.08);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(16, 16, 58, 0.8);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: linear-gradient(135deg, #00f0ff, #7b2fff, #ff2d6f);
    background-size: 300% 300%;
    animation: gradientX 4s ease infinite;
    z-index: -1;
    opacity: 0.7;
    filter: blur(8px);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7b2fff, #00f0ff);
    background-size: 200% 200%;
    animation: gradientX 3s ease infinite;
    z-index: -1;
    opacity: 0.8;
    filter: blur(6px);
}

.scan-line::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f0ff, transparent);
    animation: scan 4s linear infinite;
    opacity: 0.3;
}

.service-icon {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 47, 255, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.timeline-line {
    background: linear-gradient(180deg, #00f0ff, #7b2fff, #ff2d6f, transparent);
}

.grid-overlay {
    background-image: linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050510;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#00f0ff, #7b2fff);
    border-radius: 3px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: orbit 8s linear infinite;
}

.orbit-dot:nth-child(1) {
    background: #00f0ff;
    animation-duration: 8s;
}

.orbit-dot:nth-child(2) {
    background: #7b2fff;
    animation-duration: 12s;
    animation-delay: -4s;
}

.orbit-dot:nth-child(3) {
    background: #ff2d6f;
    animation-duration: 16s;
    animation-delay: -8s;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(160px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(160px) rotate(-360deg);
    }
}