
.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: #eb4e0f;
}

.ser {
    padding: 20px;
    background-color: #efefef;
}

.ser .row .col-md-6 {
    padding: 20px;
}

.ser h4 {
    padding-bottom: 5px;
    border-bottom: 3px solid #eb4e0f;
}

.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: #eb4e0f;
    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: #eb4e0f;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.para{
    font-size: 16px;
    line-height: 26px;
}

@media (max-width:600px){
    .big-text{
        font-size: 24px;
    }
    p.para{
        font-size: 13px;
        line-height: 24px;
        font-weight: 500;
    }
    .text h3 {
        font-size: 16px;
    }
    .text h3 span{
        font-size: 14px;
    }
    .faq-container {
        width: 100%;
        margin-top: 20px;
    }
    .faq-container h1 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 600;
    }
    .sm-pb{
        padding-bottom: 80px !important;
    }
    @keyframes up-down {
        0% {
            top: 65%;
            left:10%;
        }
    
        100% {
            top: 40%;
            left: 10%;
        }
    
    }
}