/* Services Section */
.services-section {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8), #000000), url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
    background-size: 100px 100px;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.services-section h2 {
    font-size: 3rem;
    color: #39ff14;
    text-shadow: 0 0 15px #39ff14;
    animation: flicker 2s infinite alternate;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px #26ff00, 0 0 30px rgba(0, 255, 255, 0.5);
    border-color: #39ff14;
}

.service-card.red:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px #ff0000, 0 0 30px rgba(255, 0, 0, 0.5);
    border-color: #ff0000;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 0 10px #39ff14;
}
