*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
}

/* service header */

.service-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    background-color: rgb(225, 219, 228);
    color: rgb(170, 0, 255);
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    width: 100%;
}

.service-header a{
    text-decoration: none;
    color: rgb(124, 0, 185);
}

.return-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.return-link>a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* color: white; */
    text-decoration: none;
}   

.return-link>a::after{
    content: "";
    bottom: 0;
    right: 0;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: rgb(53, 0, 78);
    transition: all 0.3s ease;
}

.return-link>a:hover{
    color: rgb(53, 0, 78);
}

.return-link>a:hover::after{
    width: 80%;
}

.home-return-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.home-return-link a{
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}

.home-return-link img{
    width: 70%;
    max-width: 200px;
}
/* service header end */

/* service main section */

.service-main{
    width: 100%;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

/* service title */
.service-title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(187, 187, 187);
    color: white;
    width: 100%;
    padding: 20px 0;
}
/* service title end */

/* service container */
.service-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 100px;
    padding: 100px 10%;
}
/* service container end */

/* service top  */
.service-top{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    gap: 30px;
    padding: 0;
}

.service-top-image{
    width: 350px;
    height: 300px;
    background-color: #e9e9e9;
    /* border-radius: 10px; */
    overflow: hidden;
    border: 10px solid rgb(222, 186, 236);
}

.service-top-image>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
}
/* service top end */

/* service gallery */
.service-gallery-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.service-image{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap ;
    flex: 0 0 250px;
    height: 100%;
    background-color: #e9e9e9;
    overflow: hidden;
    position: relative;

}

.service-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: all 0.3s ease;
}


.service-image:hover img{
    filter: grayscale(0%);
    scale: 1.1;
    bottom: 0;

}

/* service gallery end */

/* service main section */

/* request quote */
.request-quote-link{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    width: 100%;
    padding: 40px;
    background-color: rgb(77, 68, 80);
    color: white;
}

.request-quote-link a{
    text-decoration: none;
    color: white;
    padding: 15px 30px;
    background-color: rgb(183, 0, 255);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.request-quote-link a:hover{
    background-color: rgb(255, 255, 255);
    color: black;
}
