/* Services Web Development Section Styles */
:root {
    --bg-color: #1f242d;
    --second-bg-color: #323946;
    --text-color: #fff;
    --main-color: #0ef;
    --transition-speed: 0.3s;
    --glow-color: rgba(14, 255, 255, 0.5);
}
.services-webdev {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 9%;
    background: var(--second-bg-color);
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    gap: 2rem;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.services-text {
    flex: 1;
    max-width: 50%;
    color: var(--text-color);
}

.services-text h2 {
    font-size: 3.2rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--main-color);
    animation: glow 1.5s infinite alternate;
}

.services-text p, .services-text ul {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-text ul {
    list-style: none;
    padding-left: 0;
}

.services-text ul li {
    margin-bottom: 1rem;
}

.services-text ul li a {
    color: var(--main-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.services-text ul li a:hover {
    color: var(--text-color);
}

.services-images {
    flex: 1;
    max-width: 45%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-images img {
    width: 100%;
    max-width: calc(100% - 1rem);
    border-radius: 1rem;
    box-shadow: 0 0 15px var(--main-color);
    transition: transform var(--transition-speed);
}

.services-images img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--main-color), 0 0 60px var(--main-color);
}

.footer {
    background: var(--second-bg-color);
    padding: 2rem 9%;
    text-align: center;
}

.footer-text p {
    color: var(--main-color);
    font-size: 1.4rem;
}


@media (max-width: 768px) {
    .services-webdev {
        flex-direction: column;
        padding: 2rem 9%;
    }

    .services-text {
        max-width: 100%;
    }

    .services-images {
        max-width: 100%;
    }

    .services-images img {
        max-width: 100%;
    }
}
