* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4a4a4a;
    --background-color: #7878785e;
}

body {
    background-color: var(--background-color);
}

.services-container {
    margin: auto;
    max-width: 1200px;
    padding: 5rem 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 256px;
    overflow: hidden;
    display: flex;
    align-items: baseline;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem 1.5rem 0px 1.5rem;
}

.service-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-content p {
    line-height: 1.8;
    height: 4rem;
    color: #666;
    margin-bottom: 1rem;
}

.price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.book-button {
    display: inline-block;
    padding: 0.8rem 4rem;
    /* background-color: var(--primary-color); */
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.book-button:hover {
    background-color: #2ecc71;
    box-shadow: 0px 0px 10px 7px #2ecc71;
    border:0px;
    color: #ffffff;
}
.filters {
    margin-bottom: 2rem;
    text-align: center;
}
.filter-button {
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border: none;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-button.active {
    background-color: var(--primary-color);
    color: white;
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/* ######### SLIDER ########## */
.slider-container {
    margin-top: 1rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 8px;
    max-width: 25rem;
}
.slider-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slider-images img {
    width: 100%;
    flex-shrink: 0;
}
.thumbnails {
    width: 100%;
    padding-left:0px;
    display: flex;
    justify-content: center;
    /* justify-content: flex-start; */
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.thumbnails img {
    width: 60px;
    /* height: 40px; */
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 4px;
}
.thumbnails img.active {
    border-color: #007BFF;
}
.slider-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.slider-buttons button {
    background: rgba(255, 255, 255, 0.6);
    color: #000000;
    font-size: 2rem;
    border: none;
    padding: 0.3rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}
.slider-buttons button:hover {
    background: rgba(0, 0, 0, 0.7);
    color: aliceblue;
}
@media (max-width: 500px) {
    .thumbnails{
        padding-left: 4.5rem;
    }
    
}