* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

/* overview */


.overview h2 {
  font-size: 46px;
  color: black;
}

.overview .card {
  background-color: var(--indigo-lightest);
}

.overview ul li i {
  color: var(--indigo-light);
}


.overview .btn {
  background-color: var(--indigo-base);
  border: var(--indigo-base);
  color: white;
}

.overview .btn:hover {
  background-color: var(--indigo-base);
}

.overview .btn-2 {
  background-color: var(--indigo-light);
  border: var(--indigo-light);
  color: white;
}

.overview .btn-2:hover {
  background-color: var(--indigo-light);
}



.overview .card {
  border-radius: 15px;
}

.overview .card .packages-title {
  color: var(--indigo-light);
  font-size: 24px;
  font-weight: bold;
  line-height: normal;
}

.overview .card p {
  color: black;
  font-size: 17px;
  font-weight: light;
  margin-top: 10px;

}

#Request-quote .modal-header h4 {
  font-size: 40px;
  letter-spacing: 1px;
  text-decoration: underline var(--indigo-light);
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--indigo-light);
}

#Request-quote .modal-body p {
  font-size: 15px;
  text-align: center;
}

#Request-quote p a {
  text-decoration: underline;
  color: var(--indigo-medium);
}

#Request-quote Button {
  background-color: var(--indigo-medium);
  color: white;
  font-size: 17px;
}

#Request-quote Button:hover {
  background-color: var(--indigo-light);
  color: white;
}

@media (max-width: 992px) {
  #Request-quote .modal-header h4 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  #Request-quote .modal-body p {
    font-size: 15px;
  }

  .overview h2 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  #Request-quote .modal-header h4 {
    font-size: 38px;
    margin-bottom: 12px;
  }

  #Request-quote .modal-body p {
    font-size: 14px;
  }

  .overview h2 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  #Request-quote .modal-header h4 {
    font-size: 34px;
    margin-bottom: 8px;
  }

  #Request-quote .modal-body p {
    font-size: 13px;
  }

  .overview h2 {
    font-size: 34px;
  }
}

@media (max-width: 400px) {
  #Request-quote .modal-header h4 {
    font-size: 28px;
    margin-bottom: 5px;
  }

  #Request-quote .modal-body p {
    font-size: 12px;
  }

  .overview h2 {
    font-size: 28px;
  }
}

#Request-quote p {
  font-size: 20px;
  color: black;
}

/* overview */


/* Required Documents  */

.Required-documents {
  background-color: var(--indigo-lightest);
  border: none;
  box-shadow: none;
}

.Required-documents h2 {
  color: black;
  font-size: 45px;
  font-weight: bold;
  line-height: normal;
  margin-top: 10px;
}

.Required-documents p {
  color: black;
  font-size: 19px;
  font-weight: 300;
}

.Required-documents .service {
  background-color: white;

}

.Required-documents .service img {
  width: 60px;
}

@media (max-width: 992px) {

  .Required-documents h2 {
    font-size: 44px;
  }

  .Required-documents .service h3 {
    font-size: 32px;
  }

  .Required-documents .service img {
    width: 60px;
  }

}

@media (max-width: 768px) {

  .Required-documents h2 {
    font-size: 38px;
  }

  .Required-documents .service h3 {
    font-size: 30px;
  }

  .Required-documents .service img {
    width: 55px;
  }

}

@media (max-width: 576px) {

  .Required-documents h2 {
    font-size: 34px;
  }

  .Required-documents .service h3 {
    font-size: 24px;
  }

  .Required-documents .service img {
    width: 50px;
  }

}

@media (max-width: 400px) {

  .Required-documents h2 {
    font-size: 28px;
  }

  .Required-documents .service h3 {
    font-size: 20px;

  }

  .Required-documents .service img {
    width: 40px;
  }
}

/* Required Documents  */


/* Procedure */


.Procedure h2 {
  font-size: 44px;
  line-height: normal;
  color: black;
}

.Procedure .right-box span {
  font-size: 26px;
  font-weight: bold;
  color: var(--indigo-medium);
}

.Procedure .right-box h4 {
  font-size: 22px;
  font-weight: bold;
  color: black;
}

.Procedure .right-box p {
  font-size: 18px;
}

.Procedure .right-box {
  overflow-y: auto;
  height: 700px;
  direction: rtl;
  margin-left: 50px;
}


@media (max-width: 992px) {

  .Procedure h2 {
    font-size: 44px;
  }

  .Procedure .right-box {
    margin-left: 0px;
  }

}

@media (max-width: 768px) {

  .Procedure h2 {
    font-size: 38px;
  }

}

@media (max-width: 576px) {


  .Procedure h2 {
    font-size: 34px;
  }


}

@media (max-width: 400px) {

  .Procedure h2 {
    font-size: 28px;
  }

}


* {
  direction: ltr;
  /* Keep text direction normal */
}

/* Custom Scrollbar Styles for WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 3px;
  background-color: lightgray;
  /* Optional: make scrollbar track transparent */
}

::-webkit-scrollbar-thumb {
  background-color: #5C4DB1;
  /* Change scrollbar color */
  border-radius: 3px;
  /* Rounded corners */
  border: none;
  /* Remove border if any */
}

/* Remove up/down arrows (scroll buttons) */
::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

/* Procedure */



/* ITR Filing benefits */

.benefits h2 {
  font-size: 40px;
  font-weight: bold;
  color: black;
  background-color: var(--indigo-lightest);
}

.benefits .card {
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  box-shadow: 10px 10px 10px 7px rgba(0, 0, 0, 0.10);
  background-color: var(--indigo-most-lightest);

}

.benefit-top {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--indigo-light);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 35px;
  font-weight: bold;
}

@media (max-width: 992px) {}

@media (max-width: 768px) {
  .benefits h2 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .benefits h2 {
    font-size: 34px;
  }
}

@media (max-width: 400px) {
  .benefits h2 {
    font-size: 28px;
  }
}

/* ITR Filing benefits */



/* why take service from us  */

.takeServiceFromUs {
  background-color: var(--indigo-lightest);
}

.takeServiceFromUs .card {

  background-color: var(--indigo-base);
  color: white;
  border-radius: 20px;
}

.takeServiceFromUs .card:hover {
  background-color: var(--indigo-medium);
}


.takeServiceFromUs h2 {
  color: black;
  font-size: 44px;
  font-weight: bold;
}


.takeServiceFromUs .card p {
  font-size: 16px;
  color: lightgray;
}

.takeServiceFromUs .right img {
  height: 80vh;
}

.takeServiceFromUs button {

  background-color: var(--indigo-base);
  color: white;
}

.takeServiceFromUs button:hover {

  background-color: var(--indigo-medium);
  color: white;
}

@media (max-width: 1200px) {
  .takeServiceFromUs .right img {
    height: 80vh;
  }
}

@media (max-width: 992px) {
  .takeServiceFromUs h2 {
    font-size: 44px;
  }

}

@media (max-width: 768px) {
  .takeServiceFromUs .right img {
    height: 60vh;
  }

  .takeServiceFromUs h2 {
    font-size: 38px;
  }

}


@media (max-width: 576px) {

  .takeServiceFromUs .right img {
    height: 50vh;
  }

  .takeServiceFromUs h2 {
    font-size: 34px;
  }

}

@media (max-width: 400px) {

  .takeServiceFromUs .right img {
    height: 45vh;
  }

  .takeServiceFromUs h2 {
    font-size: 28px;
  }
}


/* why take service from us  */



/* .FAQ */

.FAQ .faq-img-2 {
  background-image: url(faq2.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .FAQ .faq-img-2 {
    background-image: url(faq2.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 850px;
    border-radius: 30px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .FAQ .faq-img-2 {
    background-image: url(faq2.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 550px;
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  .FAQ .faq-img-2 {
    background-image: url(faq2.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 450px;
    border-radius: 30px;
  }
}


/* .FAQ */