
/* Reset and Base Styles */
body {
    margin: 0;
    font-family: "Archivo", sans-serif;
    color: #fff;
    background-color: #000;
}

/* Services Container */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Service Section */
.service-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin: 6rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.service-section.show {
    opacity: 1;
    transform: translateY(0);
}

.service-section.reverse {
    flex-direction: row-reverse;
}

/* Service Content */
.service-content {
    flex: 1;
    max-width: 500px;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.service-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 2rem;
}

/* Service Image */
.service-image {
    flex: 1;
    max-width: 600px;
    overflow: hidden;
    border-radius: 20px;
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-section {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin: 4rem 0;
    }

    .service-section.reverse {
        flex-direction: column;
    }

    .service-content, .service-image {
        max-width: 100%;
    }

    .service-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
