*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
h1,h2,h3,h4,h5,p{
    margin: 0;
}
a{
    text-decoration: none;
}
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #010101;
}
.container{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.img-fluid{
    max-width: 100%;
}
.text-center{
    text-align: center;
}
.sec-padding{
    padding: 100px 0;
}

/* banner part start */
.banner{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px 50px;
    align-items: center;
}
.banner-content h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
.banner-content h1 span{
    color: #f3963e;
}
.banner-content p{
    font-size: 19px;
    line-height: 31px;
    margin-bottom: 25px;
}
.com-btn{
    display: inline-flex;
    padding: 15px 25px;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: #f3963e;
    border: 1px solid #f3963e;
    border-radius: 5px;
    transition: .3s all linear;
}
.com-btn svg{
    fill: #fff;
    transition: .3s all linear;
    width: 25px;
    height: 25px;
}
.com-btn:hover{
    background-color: #fff;
    color: #f3963e;
}
.com-btn:hover svg{
    fill: #f3963e;
}
.banner-form{
    padding: 40px 30px;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
}
.banner-form h3{
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    
    margin-bottom: 40px;
}
.input-box{
    margin-bottom: 20px;
}
.input-box input{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    font-size: 16px;
    line-height: 26px;
    color: #010101;
}
::placeholder{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
}
.submit-btn{
    padding-top: 10px;
}
.submit-btn button{
    width: 100%;
    letter-spacing: 1px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
}
.input-box input:focus{
    border-color: #f3963e;
}
/* banner part end */

/* why choose part start */
.why-choose{
    background-color: #fff7f0;
}
.com-top{
    margin-bottom: 70px;
}
.com-heading{
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
}
.why-choose-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px 50px;
    align-items: center;
}
.why-choose-text{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 15px;
}
.single-why-choose,
.single-service{
    padding: 30px;
    padding-left: 40px;
    background-color: #ffecda;
    border-radius: 10px;
    border-left: 5px solid #f3963e;
    transition: .3s all linear;
}
.single-why-choose h3,
.single-service h3{
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    color: #f3963e;
    margin-bottom: 5px;
    
}
.single-why-choose:hover,
.single-service:hover{
    transform: translateY(-5px);
}
/* why choose part end */

/* testimonials part start */
.testimonials-box{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.single-testimonials{
    padding: 40px 30px;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .1);
    transition: .3s all linear;
}
.single-testimonials:hover{
    transform: translateY(-5px);
}
.testi-img{
    margin-bottom: 10px;
}
.testi-img img{
    width: 120px;
    height: 30px;
    object-fit: cover;
}
.testi-text p{
    font-size: 18px;
    line-height: 28px;
}
.testi-text p span{
    display: block;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 500;
}
/* testimonials part end */

/* service part start */
.service{
    background-color: #fff7f0;
}
.service-box{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.single-service{
    max-width: 350px;
    width: 100%;
}
.service-bottom{
    margin-top: 50px;
    font-size: 18px;
    line-height: 25px;
}
/* service part end */

/* trusted part start */
.trusted{
    background-color: #2563eb;
    padding: 50px 0;
}
.trusted-box{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px 20px;
    align-items: center;
}
.trusted-img img{
    width: 35px;
}
.trusted-img .star-img{
    width: 120px;
    height: 30px;
    object-fit: cover;
}
.trusted-text p{
    font-size: 19px;
    line-height: 28px;
    color: #fff;
}
/* trusted part end */

/* need part start */
.need{
    background-color: #f3963e;
}
.need .com-heading{
    margin-bottom: 20px;
}
.btn-box{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.need .btn-box{
    justify-content: center;
}
.need .btn-box .com-btn:first-child{
    background-color: #fff;
    color: #f3963e;
}
.need .btn-box .com-btn:last-child{
    color: #010101;
    border-color: #010101;
    background-color: transparent;
}
.need .btn-box .com-btn:last-child svg{
    fill: #010101;
}
.need .btn-box .com-btn:first-child:hover{
    color: #010101;
    border-color: #010101;
    background-color: transparent;
}
.need .btn-box .com-btn:last-child:hover{
    color: #f3963e;
    border-color: #f3963e;
    background-color: #fff;
}
.need .btn-box .com-btn:last-child:hover svg{
    fill: #f3963e;
}
.need .com-top{
    margin-bottom: 50px;
}
/* need part end */

/* faq part start */
.faq-item {
    border: 1px solid #f3963e;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
  }

  .faq-question {
    background-color: #f3963e;
    padding: 15px;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    font-weight: 600;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .faq-question.expanded::after {
    content: '-';
  }

  .faq-answer {
    padding: 0px 10px;
   
    transition: 0.3s ease-out;
    height: 0;
    overflow: hidden;
  }

  .faq-answer.show-answer {
    padding: 10px;
    height: auto; 
    
  }

  .faq-box{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }
  .faq{
    padding-bottom: 198px;
  }
/* faq part end */

/* footer part start */
.footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    background-color: #1e293b;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    color: #fff;
}
.footer-box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    align-items: center;
}
.footer-right .btn-box{
    justify-content: center;
}
.btn-box a:last-child{
    background-color: #fff;
    color: #f3963e;
}
.btn-box a:last-child svg{
    fill: #f3963e;
}
.footer .btn-box a:last-child{
    border-color: #fff;
}
.btn-box a:last-child:hover{
    background-color: #f3963e;
    color: #fff;
    border-color: #f3963e;
}
.btn-box a:last-child:hover svg{
    fill: #fff;
}
/* footer part end */


/* spiner start */
.spinner {
    display: none;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.spinner::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 3px solid #ccc;
    border-top-color: #004868;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.success-message{
    display: none;
    padding: 5px 12px;
    background-color: #10ac84;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
    text-align: center;
}
.success-message.active{
    display: block;
}
/* spiner end */