
.text {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;

}

.text h3 {
    font-size: 32px;
    color: #fff;
}

.text h3 span {
    font-size: 28px;
    color: #18b599;
}

.ser {
    padding: 20px;
    background-color: #efefef;
}

.ser .row .col-md-6 {
    padding: 20px;
}

.ser h4 {
    padding-bottom: 5px;
    border-bottom: 3px solid #18b599;
}

.feature {
    border: 1px solid #efefef;
    padding: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    transition: all ease .5s;
}

.feature h5 {
    font-size: 17px;
    font-weight: 700;
}

.feature p.para {
    font-size: 14px;
    color: #4c4c4c;
}

.feature img {
    width: 75px;
    height: 75px;
    /* flex-grow: 1; */
}

.feature:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.big-text {
    font-size: 45px;
    font-weight: 700;

}

.tag {
    color: #18b599;
    font-size: 22px;
    font-weight: 600;
}

.below-img {
    width: 80%;
    transform: skew(-10deg);
}

.over-img {
    position: absolute;
    width: 80%;
    top: 60%;
    left: 20%;
    /* transform: translateY(-50%); */
    /* border-radius: 20px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    object-fit: contain;
    object-position: center;
    transform: skew(-10deg);
    animation: up-down 1s ease infinite alternate-reverse;

}

@keyframes up-down {
    0% {
        top: 65%
    }

    100% {
        top: 40%;
        left: 10%;
    }

}

.faq-container {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
    background: #eee;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #ddd;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 10px;
    padding-bottom: 20px;
}

.faq-container .icon {
    color: #18b599;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.para{
    font-size: 16px;
    line-height: 26px;
}

.big-img {
    height: 100%;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.process {
    text-align: center;
    position: relative;
}

.process img {
    width: 70%;
}

.process h3 {
    font-size: 22px;
    font-weight: 700;
}

.process h4 {
    font-size: 45px;
    font-weight: 700;
    /* opacity: 1; */
    position: absolute;
    top: 16px;
    left: 35%;
    /* line-height: 10px; */
    /* margin-top: -48px; */
    color: #26d056;
    transition: all ease .5s;
    /* transform: skewX(25deg); */
    /* text-align: start; */

}

.process:hover h4 {
    top: 78%;
}

.banner {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/kitchen-2094723_1280.jpg);
    background-size: cover;
    background-position: 80% 30%;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
}

.banner h2 {
    /* font-size: 45px; */
}

.service h2 {
    font-size: 24px;
    font-weight: 700;
    color: #eb4e0f;

}

.service .tag {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    display: none;
}

.service .para {
    padding-left: 25px;
    font-size: 14px;
}

.service i {
    margin-right: 16px;
    color: #eb4e0f;
}

.service .ser-c {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 20px;
}