/* SERVICES SECTION */
.services-section {
    background-color: #0c0c0c; /* Dark background */
    color: #fff;
    text-align: center;
}

.services-title {
    font-family: 'Horizon', sans-serif; /* Match Project Section */
    font-size: 36px;
    color: #ffd700; /* Same golden color */
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Services Container for Desktop */
.services-container {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}


/* Services Wrapper */
.services-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: center;
}



/* Service Cards */
.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.service-card:hover {
    transform: translateY(-5px); /* Hover effect */
    box-shadow: 0 10px 15px rgba(255, 255, 255, 0.2);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #ffd700; /* Golden separator */
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-family: 'Horizon', sans-serif; /* Match Project Section */
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ffd700; /* Golden color for titles */
}

.service-content p {
    font-family: 'Montserrat-Thin', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #ddd; /* Light grey text */
}


/* Make it Swipeable Only for Mobile */
@media (max-width: 768px) {
    .services-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: scroll;
        gap: 10px;
        padding: 20px;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    }

    .services-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari */
    }

    .service-card {
        min-width: 100%;
        width: 100%;
    }
}
