/* Split-Screen Reveal Services Section Styles */
.services-section {
    width: 100%;
    position: relative;
    background-color: transparent;
    overflow: hidden;
    z-index: 2;
}

.services-title-container {
    text-align: center;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 3;
}

.services-title {
    font-family: 'Zen Dots', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-color);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.services-subtitle {
    font-family: 'Parkinsans', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #a5a5a5;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.split-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 400px;
    display: flex;
    overflow: hidden;
}

.split-divider {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-50%);
    z-index: 10;
}

.divider-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.split-side {
    position: absolute;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.split-left {
    left: 0;
    transform: translateX(-100%);
    background: var(--split-left-bg);
}

.split-right {
    right: 0;
    transform: translateX(100%);
    background: var(--split-right-bg);
}

.split-content {
    padding: 1rem;
    text-align: center;
    max-width: 500px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 170%;
    max-height: 100%;
    border-radius: 20%;

}

.service-title {
    font-family: 'Zen Dots', cursive;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0rem;
    opacity: 1;

    transition: transform 0.5s ease;
}

.service-description {
    color: var(--text-color);
    margin: 2rem 0;
    line-height: 1.6;
    min-height: 150px;
    opacity: 1;
    transition: transform 0.5s ease;
}

.service-button {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: 'Zen Dots', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Media Queries */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        height: auto;
    }

    .split-side {
        position: relative;
        width: 100%;
        min-height: 300px;
    }

    .split-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-title-container {
        padding: 1rem;
    }

    .service-icon {
    width: 80px;
    height: 80px;
    }


}