.custom-service-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    background-color: #20212B;
    border: 2px solid #FDBE33;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

.custom-service-title {
    color: white;
    border-bottom: 2px solid #FDBE33;
    padding-bottom: 10px;
}

.custom-service-description, .custom-service-time, .custom-service-domain {
    margin-top: 20px;
    color: white;
    font-size: 22px;
}

.custom-devis-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #FDBE33;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 10px;
}

.custom-devis-button:hover {
    background-color: #b8860b;
}

.custom-error-message {
    color: red;
}

.service-text {
    color: #FDBE33;
    font-weight: bold;
    text-decoration: underline;
}

/* style css caroussel */
.custom-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px auto;
    padding: 0; 
}

.custom-carousel-slides {
    display: flex;
    transition: all 0.3s;
}

.custom-carousel-slide {
    min-width: 100%;
    transition: opacity 0.3s;
}

.custom-carousel-slide:first-child {
    opacity: 1;
}

.custom-service-image {
    display: block;
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    margin: 0 auto; 
    border: #FDBE33 2px solid;
    object-fit: cover;
}


.custom-carousel-prev,
.custom-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.custom-carousel-prev {
    left: 10px;
    color: #FDBE33;
}

.custom-carousel-next {
    right: 10px;
    color: #FDBE33;
}

.zoomed-in {
    transform: scale(1.2); 
    transition: transform 0.3s; 
}
