/* body {
    background: #0a0a0a;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
} */

.services-section {
    background-color: #000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #6c63ff;
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(50px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(0);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-50px) translateX(-50px);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.service-card {
    background: rgba(18, 18, 20, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    /* opacity: 0; */
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(108, 99, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 99, 255, 0.4);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #6c63ff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: #6c63ff;
}

.service-card:hover .service-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.service-grid {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

.stagger-animation {
    /* opacity: 0; */
    transform: translateY(50px);
}