* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

:root {
  --indigo-base: #272a8f;
  --indigo-medium: #4a4db0;
  /*button*/
  --indigo-light: #7d80cd;
  --indigo-lighter: #c7c9ed;
  --indigo-lightest: #dedff4;
  --indigo-most-lightest: #f4f4fb;
}

/* Navbar */

/* Basic Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  height: 80px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: black;
  /* Default is black */
  width: 100%;
  z-index: 999;
}

/* Transparent style (only applied when at top) */
.navbar.transparent {
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  box-shadow: none;
}

.navbar {
  transition: background-color 0.4s ease-in-out, color 0.4s ease;
}


.navbar .logo {
  color: var(--indigo-medium);
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0px;
  height: 80px;
}

nav li {
  display: flex;
  align-items: center;
  height: 70px;
}

nav a {
  height: 100%;
  padding: 0 22px;
  text-decoration: none;
  display: flex;
  font-size: 17px;
  align-items: center;
  color: white;
}

nav li button {
  background-color: var(--indigo-medium);
  color: white;
  border: 1px solid white;
  padding: 5px 20px;
  border-radius: 3px;
  font-size: 17px;
}


@media (max-width: 577px) {
  nav li button {
    border: 1px solid white;
    padding: 5px 20px;
    border-radius: 3px;
    font-size: 15px;
  }
}

nav li button:hover {
  background-color: white;
  color: var(--indigo-base);
}

nav a:hover {
  color: var(--indigo-medium);
}

@media (max-width: 991px) {
  nav li:first-child {
    margin-right: auto;
  }
}


@media (max-width: 500px) {
  nav a {
    padding: 0 30px;
  }
}

/* dropdown menu */

.hover-dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  /* Optional: removes spacing delay */
}

@media (max-width: 992px) {

  .hover-dropdown {
    display: none;
    margin-top: 0;
  }

}

.scrollable-dropdown {
  height: 320px;
  /* Set desired height */
  width: 660px;
  /* Set desired width */
  overflow-y: auto;
  overflow-x: auto;
  /* Enable vertical scroll */
}

.scrollable-dropdown a:hover {
  text-decoration: underline;
  letter-spacing: 1px;
  color: var(--indigo-light);
}

.dropdown-menu-center {
  left: 0% !important;
  transform: translateX(-20%) !important;
}

.dropdown #left-column a {
  margin-bottom: 10px;
  color: var(--indigo-light);
}

.dropdown .scrollable-dropdown a {
  margin-bottom: 10px;
}

.dropdown #left-column a:hover {
  background-color: var(--indigo-light);
  color: white;
}

/* dropdown menu */

/* Navbar */

/* Sidebar */

.offcanvas {
  width: 400px !important;
  background-color: black;
}

.offcanvas-body .accordion .accordion-item .accordion-button {
  background-color: transparent !important;
  color: white !important;
  box-shadow: none !important;
  border: none !important;
  font-weight: normal !important;
  border-radius: 10px !important;
  padding-top: 0px !important;
  padding-bottom: 10px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}


.offcanvas-body .accordion .accordion-item .accordion-button-2 {
  background-color: transparent !important;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 20px;
  padding-left: 0px;
}

.offcanvas-body .accordion .accordion-item .accordion-button-2:hover {
  color: var(--indigo-medium);
  letter-spacing: 1px;
  text-decoration: underline;
}

.offcanvas-body .accordion .accordion-item .accordion-collapse {
  padding-right: 0px !important;
  padding-left: 15px !important;
  padding-top: 0px !important;
  margin-top: 0px !important;
}


.offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body a {
  padding-right: 0px !important;
  padding-left: 0px !important;
  margin-bottom: 7px;
}

.offcanvas-body .accordion .accordion-item .accordion-collapse .accordion-body a:hover {
  color: var(--indigo-medium);
  letter-spacing: 1px;
  text-decoration: underline;

}

/* Sidebar */

/* Login Modal */

#loginModal h5 {
  font-size: 26px;
}

#loginModal p {
  font-size: 19px;
}

.modal-footer .btn {
  background-color: var(--indigo-base);
  color: white;
}

.modal-footer .btn:hover {
  background-color: var(--indigo-medium);
  color: #f5f5dc;
}

.form-control:focus {
  border-color: var(--indigo-base);
  box-shadow: 2px 2px 2px 1px rgba(39, 42, 143, 0.25);
}

@media (max-width: 992px) {
  #loginModal h5 {
    font-size: 26px;
  }

  #loginModal p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  #loginModal h5 {
    font-size: 22px;
  }

  #loginModal p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  #loginModal h5 {
    font-size: 20px;
  }

  #loginModal p {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  #loginModal h5 {
    font-size: 19px;
  }

  #loginModal p {
    font-size: 14px;
  }
}

/* Login Modal */


/* hero section */

.hero-slider .carousel-item {
  height: 120vh;
  min-height: 500px;
  position: relative;
  z-index: 1;
}

.hero-slider .carousel-indicators {
  position: absolute;
  overflow: hidden;
  top: 80%;
  left: 0%;
  margin: 0px 80px;
  color: white;
  font-size: 30px;
  text-decoration: underline;
  display: flex;
  justify-content: end;
}

.hero-slider .carousel-indicators button {
  margin-left: 20px;
  display: inline-block;
}

.carousel-item .hero-content {
  position: absolute;
  z-index: 3;
  top: 18%;
  left: 8%;
}

.carousel-item .hero-content h3 {
  font-size: 120px;
  font-weight: bold;
  line-height: normal;
  color: white;
}

.carousel-item .hero-content p {
  font-size: 26px;
  font-weight: bold;
  line-height: normal;
  color: white;
}

.carousel-item .hero-content button {
  font-size: 19px;
  font-weight: 500;
  background-color: var(--indigo-medium);
  color: white;
}

.hero-slider .carousel-item img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%);
  object-position: center center;
}


.hero-slider .overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--indigo-base);
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .hero-slider .carousel-item {
    height: 110vh;
  }

  .hero-slider .carousel-item img {
    object-fit: cover;
    max-height: 100%;
  }

  .carousel-item .hero-content {
    left: 5%;
  }

  .carousel-item .hero-content h3 {
    font-size: 100px;
  }

}

@media (max-width: 992px) {
  .hero-slider .carousel-item {
    height: 100vh;
  }

  .hero-slider .carousel-item img {
    object-fit: cover;
    max-height: 100%;
  }

  .carousel-item .hero-content {
    left: 1%;
  }

  .carousel-item .hero-content h3 {
    font-size: 90px;
  }

  .carousel-item .hero-content p {
    font-size: 24px;
  }

  .carousel-item .hero-content button {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-slider .carousel-item {
    height: 90vh;
  }

  .hero-slider .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    object-position: center center;
  }

  .carousel-item .hero-content h3 {
    font-size: 70px;
  }

  .carousel-item .hero-content p {
    font-size: 22px;
  }

  .carousel-item .hero-content button {
    font-size: 17px;
  }

}

@media (max-width: 576px) {

  .carousel-item .hero-content {
    top: 25%;
  }

  .hero-slider .carousel-item {
    height: 80vh;
  }

  .hero-slider .carousel-item img {
    object-fit: cover;
    max-height: 100%;
  }

  .carousel-item .hero-content h3 {
    font-size: 50px;
  }

  .carousel-item .hero-content p {
    font-size: 17px;
  }

  .carousel-item .hero-content button {
    font-size: 15px;
  }

}

@media (max-width: 400px) {

  .carousel-item .hero-content h3 {
    font-size: 35px;
  }

  .carousel-item .hero-content p {
    font-size: 14px;
  }

  .carousel-item .hero-content button {
    font-size: 14px;
  }

}

/* hero section */

/* ratings */

.star-box {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-color: var(--indigo-medium);
  list-style: none;
  margin-right: 5px;
  text-align: center;
}

.achievments h2 {
  font-size: 65px;
  font-weight: 500;
  color: black;
  margin-bottom: 5px;
  line-height: 1;
}

.achievments p {
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .achievments h2 {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .achievments h2 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .achievments h2 {
    font-size: 30px;
  }
}

/* ratings */

/* Home section - 2 */

.section-wrapper {
  background-color: var(--indigo-lightest);
  padding-top: 100px;
  margin-left: 30px;
  padding-bottom: 100px;
  margin-top: -100px;
  z-index: 2;
}


@media (min-width: 1600px) {
  .section-wrapper {
    margin-left: 150px;
  }
}


@media (max-width: 1399px) {
  .section-wrapper {
    margin-left: 0px;
    padding-top: 90px;
  }
}

@media (max-width: 992px) {
  .section-wrapper {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  .section-wrapper {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .section-wrapper {
    padding-top: 50px;
  }
}


.homeSection-2 .img-1 {
  max-width: 80%;
  height: auto;
  border-radius: 25px;
  display: inline-block;
}

.homeSection-2 .award-tag {
  max-width: 280px;
  border-radius: 15px;
  text-align: center;
  background-color: var(--indigo-base);
  padding: 25px;
  color: white;
  position: absolute;
  left: 2%;
  bottom: 0%;
  transition: background-color 1s ease;
}

.homeSection-2 .left-box:hover .award-tag {
  background-color: var(--indigo-medium);

}

.homeSection-2 .award-tag span {
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
}

.homeSection-2 .award-tag p {
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 0px;
}

@media (max-width: 768px) {

  .homeSection-2 .award-tag {
    max-width: 200px;
    padding: 15px;
    position: absolute;
    left: 2%;
    bottom: 0%;
  }

  .homeSection-2 .award-tag span {
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
  }

  .homeSection-2 .award-tag p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0px;
  }

}

.homeSection-2 .img-2 {
  max-width: 86%;
  height: auto;
  border-radius: 25px;
  display: inline-block;
}

.homeSection-2 .content-action {
  max-width: 86%;
  margin-left: auto;
}

.homeSection-2 .content-action .btn {
  background-color: var(--indigo-medium);
  border-radius: 5px !important;
}

.section-heading {
  font-size: 50px;
  color: black;
}

.homeSection-2 p {
  font-size: 23px;
  font-weight: normal;
}

@media (max-width: 1400px) {
  .homeSection-2 .img-2 {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    display: inline-block;
  }

  .homeSection-2 .content-action {
    max-width: 100%;
    margin-left: auto;
  }
}

@media (min-width: 992px) and (max-width: 993px) {
  .homeSection-2 {
    width: 100% !important;
  }
}

@media (max-width: 991px) {
  .homeSection-2 .img-1 {
    max-width: 85%;
    height: auto;
    border-radius: 25px;
    display: inline-block;
  }

  .homeSection-2 .img-2 {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    display: inline-block;
  }

  .homeSection-2 p {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .homeSection-2 .img-1 {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    display: inline-block;
  }

  .section-heading {
    font-size: 35px;
    color: black;
  }

  .homeSection-2 p {
    font-size: 19px;
  }

  .homeSection-2 {
    width: 98% !important;
  }
}

@media (max-width: 576px) {
  .section-heading {
    font-size: 32px;
    color: black;
  }

  .homeSection-2 p {
    font-size: 17px;
  }

  .homeSection-2 {
    width: 100% !important;
  }
}

/* Home section - 2 */

/* home section-3 */

.steps .card {
  position: relative;
  width: 270px;
  height: 270px;
  box-shadow: none;
  background-color: var(--indigo-most-lightest);
  border-radius: 50%;
}

.steps h2 {
  font-size: 46px;
}

.steps h2 {
  color: black;
  line-height: normal;
}

.steps .card-heading {
  color: black;
  margin-bottom: 2px;
}

.steps .card-top {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #4044cc;
  border: 10px solid white;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transform: translateY(-40%);
}

.steps .card::before {
  content: "";
  position: absolute;
  width: 8em;
  height: 8em;
  right: -180px;
  background: url("process-arrow.png") no-repeat center / contain;
}

.steps>div:last-of-type .card::before {
  display: none;
}

@media (max-width: 1400px) {
  .steps .card {
    position: relative;
    width: 260px;
    height: 260px;
    box-shadow: none;
    border-radius: 50%;
  }

  .steps .card::before {
    content: "";
    position: absolute;
    width: 6em;
    height: 6em;
    right: -130px;
    background: url("process-arrow.png") no-repeat center / contain;
  }

  .steps h2 {
    font-size: 44px;
  }

}

@media (max-width: 1200px) {
  .steps .card {
    position: relative;
    width: 240px;
    height: 240px;
    padding: 0px !important;
    box-shadow: none;
    border-radius: 50%;
  }

  .steps .card::before {
    content: "";
    position: absolute;
    width: 6em;
    height: 6em;
    right: -105px;
    background: url("process-arrow.png") no-repeat center / contain;
  }

  .steps h2 {
    font-size: 42px;
  }

}

@media (max-width: 992px) {
  .steps .card::before {
    content: none;
    position: absolute;
    width: 220px;
    height: 220px;
    right: -100px;
    background: url("process-arrow.png") no-repeat center / contain;
  }

  .steps h2 {
    font-size: 40px;
  }

}

@media (max-width: 768px) {
  .steps h2 {
    font-size: 38px;
  }
}


@media (max-width: 576px) {
  .steps .card p {
    font-size: 15px;
    padding: 0px 10px;
  }

  .steps h2 {
    font-size: 34px;
  }
}

@media (max-width: 400px) {
  .steps h2 {
    font-size: 28px;
  }
}

.tag {
  background-color: var(--indigo-lighter);
  padding: 0px 10px;
  display: inline-block;
  border-radius: 20px;
  color: var(--indigo-base);
  font-size: 17px;
  font-weight: medium;
  position: relative;
  z-index: 6;
}

/* home section-3 */

/* home section-4 */

/* our services */

.section-wrapper-ourServices {
  background-color: var(--indigo-lightest);
  margin-right: 30px;
}

.section-wrapper-ourServices .left-box {
  margin-left: 0px;
}

.section-wrapper-ourServices .left-box .img {
  background-image: url(services-large.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}


.section-wrapper-ourServices .right-box {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-wrapper-ourServices .right-box .content-box {
  max-width: 765px;
  padding-left: 50px;
  margin-bottom: 45px;
}

.section-wrapper-ourServices .right-box .content-box h2 {
  color: black;
  font-size: 48px;
  line-height: normal;
  margin-top: 10px;
}

.section-wrapper-ourServices .right-box .slick-custom-btn {
  border: none;
  box-shadow: none;
  background-color: transparent;

}

.section-wrapper-ourServices .right-box .card {
  border-radius: 25px;
  border: none;
  box-shadow: none;

}

.section-wrapper-ourServices .card-header {
  border: none;
  box-shadow: none;
}

.section-wrapper-ourServices .card-body h3 {
  font-size: 25px;
  font-weight: bold;
  color: black;
}

.section-wrapper-ourServices .card-body a {
  font-size: 17px;
  font-weight: bold;
  color: black;
}

.section-wrapper-ourServices .card:hover a {
  font-size: 17px;
  letter-spacing: 1px;
  color: var(--indigo-medium);
}

@media (max-width: 1399px) {

  .section-wrapper-ourServices {
    margin-right: 0px;
  }

}

@media (max-width: 992px) {

  .section-wrapper-ourServices .right-box .content-box {
    max-width: 765px;
    padding-left: 20px;
    margin-bottom: 45px;
  }

  .section-wrapper-ourServices {
    margin-right: 0px;
  }


  .section-wrapper-ourServices .right-box .content-box h2 {
    color: black;
    font-size: 50px;
    line-height: normal;
    margin-top: 10px;
  }

  .section-wrapper-ourServices .left-box .img {
    height: 100vh;
  }

}

@media (max-width: 768px) {

  .section-wrapper-ourServices .right-box .content-box h2 {
    color: black;
    font-size: 38px;
    line-height: normal;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {

  .section-wrapper-ourServices .right-box .content-box {
    max-width: 765px;
    padding-left: 0px;
    margin-bottom: 45px;
  }

  .section-wrapper-ourServices .right-box .content-box h2 {
    color: black;
    font-size: 30px;
    line-height: normal;
    margin-top: 10px;
  }

}

/* our services */

/* services-stack */

.services-stack .card {
  background-color: var(--indigo-lightest);
}

.services-stack .card p {
  color: var(--indigo-base);
  border-right: black;
}

.services-stack .second-box .card .row div {
  border-right: 1px solid var(--indigo-base);
}

.services-stack .second-box .card .row div:last-child {
  border-right: 0px solid var(--indigo-base);
}

@media (max-width: 992px) {

  .services-stack .second-box .card .row div {
    border-right: 0px solid var(--indigo-base);
  }

}

/* services-stack */


/* Trusted by business */

.section-wrapper-trustedBuisness {
  background-color: var(--indigo-most-lightest);
}


.section-wrapper-trustedBuisness h3 {
  color: black;
  font-size: 25px;
  line-height: normal;
}


/* Trusted by business */



/* Case Studies */

.case-studies .stick-content h3 {
  font-size: 48px;
  color: black;
}

.case-studies .stick-content button {
  background-color: var(--indigo-medium);
  color: white;
}

.case-studies .card {
  border-radius: 25px;
}

.case-studies .content {
  max-width: 530px;
}

.case-studies .content h3 {
  font-size: 25px;
  font-weight: 600;
}

.case-studies .content h3:hover {
  font-size: 25px;
  color: var(--indigo-medium);
  transition-duration: 0.5s;
}

.case-studies .content p {
  font-size: 17px;
}

.case-studies .arrow-button {
  width: 60px;
  height: 60px;
  border: 1px solid var(--indigo-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.6s ease;
}

.case-studies .arrow-button a {
  color: var(--indigo-light);
  transition: color 0.9s ease;
}

.case-studies .card:hover .arrow-button a {
  color: white;
}

.case-studies .card:hover .arrow-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--indigo-base);
  color: white;
}

@media (max-width: 768px) {

  .case-studies .stick-content h3 {
    font-size: 40px;
    font-weight: bold;
    color: black;
  }

}

@media (max-width: 400px) {

  .case-studies .stick-content h3 {
    font-size: 33px;
    font-weight: bold;
    color: black;
  }

}

/* Case Studies */

/* Best brands  */

.bg-best-brand {
  background-image: url(header---best-brand-banner\ \(1\).jpg);
  width: 100%;
  background-color: black;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.bg-best-brand p {
  font-size: 30px;
  color: white;
  font-weight: bold;
}

.Best-brands span {
  color: var(--indigo-base);
  padding: 5px;
  font-weight: bold;
}

.Best-brands span:hover {
  cursor: pointer;
  padding: 6px 15px 6px 15px;
  border-radius: 30px;
  background-color: black;
  color: white;
}

/* Best brands  */


/* steps ITR Filing */

.steps-ITR-filing .steps-left-box h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 25px;
  color: black;
}

.steps-ITR-filing .steps-left-box span {
  font-size: 21px;
  font-weight: 600;
  color: black;
}

.steps-ITR-filing .steps-left-box p {
  color: black;
}

.steps-ITR-filing .steps-left-box button {
  font-size: 17px;
  font-weight: 600;
  color: white;
  background-color: var(--indigo-base);
}

.steps-ITR-filing .steps-left-box button:hover {
  font-size: 17px;
  font-weight: 600;
  color: white;
  background-color: var(--indigo-base);
}

.steps-ITR-filing .steps-left-box {
  background-color: var(--indigo-light);
  padding: 30px 100px 30px 100px;
  text-align: start;
}

.steps-ITR-filing .steps-right-box {
  padding: 30px 100px 30px 100px;
}

@media (max-width: 1400px) {
  .steps-ITR-filing .steps-right-box {
    padding: 30px 80px 30px 30px;
  }

  .steps-ITR-filing .steps-left-box {
    padding: 30px 80px 30px 30px;
  }
}

@media (max-width: 1200px) {
  .steps-ITR-filing .steps-right-box {
    padding: 30px 50px 30px 30px;
  }

  .steps-ITR-filing .steps-left-box {
    padding: 30px 50px 30px 30px;
  }
}

@media (max-width: 992px) {
  .steps-ITR-filing .steps-right-box {
    padding: 30px 30px 30px 30px;
  }

  .steps-ITR-filing .steps-left-box {
    padding: 30px 30px 30px 30px;
  }
}

.steps-ITR-filing .steps-right-box h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 25px;
  color: black;
}

.steps-ITR-filing .steps-right-box .step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--indigo-light);
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.steps-ITR-filing .steps-right-box .step-1 {
  top: 0%;
  left: 0px;
}

.steps-ITR-filing .steps-right-box .step-2 {
  top: 25%;
  left: 0px;
}

.steps-ITR-filing .steps-right-box .step-3 {
  top: 50%;
  left: 0px;
}

.steps-ITR-filing .steps-right-box .step-4 {
  top: 75%;
  left: 0px;
}

.steps-ITR-filing .steps-right-box .steps {
  position: relative;
  height: auto;
}

.steps-ITR-filing .steps-right-box .steps hr {
  width: 1px;
  height: 100%;
  border: 1px dashed var(--indigo-base);
  position: relative;
  margin: 0px 17px;
}

.steps-ITR-filing .steps-right-box .step-content-wrap a {
  color: var(--indigo-light);
}

.steps-ITR-filing .steps-right-box .step-content-wrap span {
  font-size: 21px;
  font-weight: 600;
  line-height: normal;
  color: black;
}

@media (max-width: 768px) {
  .steps-ITR-filing .steps-left-box h3 {
    font-size: 38px;
  }

  .steps-ITR-filing .steps-right-box h2 {
    font-size: 38px;
  }

}

@media (max-width: 576px) {
  .steps-ITR-filing .steps-left-box h3 {
    font-size: 34px;
  }

  .steps-ITR-filing .steps-right-box h2 {
    font-size: 34px;
  }

}

@media (max-width: 400px) {
  .steps-ITR-filing .steps-left-box h3 {
    font-size: 28px;
  }

  .steps-ITR-filing .steps-right-box h2 {
    font-size: 28px;
  }

}

/* steps ITR Filing */


/* Testimonials */

.feedback-bg-img {
  background-image: url(feedback-bg.webp);
  background-position: center center;
  background-size: cover;
  width: 96%;
  margin: auto auto;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.feedback-bg-img .feedback-title {
  position: relative;
  z-index: 3;
}

.feedback-bg-img .overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--indigo-base);
  opacity: 0.7;
}

.testimonials {
  width: 100% !important;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
}

.testimonials .card {
  background-color: var(--indigo-most-lightest);
}

.testimonials .card span {
  color: black;
  font-size: 22px;
  font-weight: 500;
  display: inline-block;
}

/* Position the dots below the slider */
.custom-dots-wrapper .slick-dots {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Style each dot */
.custom-dots-wrapper .slick-dots li {
  display: inline-block;
  margin: 0 6px;
  color: black !important;

}

/* Style the dot button */
.custom-dots-wrapper .slick-dots li button {
  font-size: 0;
  width: 13px;
  height: 13px;
  background-color: black;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin: 2px 4px;
}

/* Active dot */
.custom-dots-wrapper .slick-dots li.slick-active button {
  background-color: black;
  /* your primary color */
  border: 2px solid #f4c542;
  padding: 8px;
}


.custom-dots-wrapper .slick-dots {
  top: 25%;
  right: 10%;
  bottom: auto;
}


@media (max-width: 768px) {
  .feedback-bg-img {
    padding-top: 30px;
    padding-bottom: 30px;

  }

}

@media (max-width: 576px) {
  .feedback-bg-img {
    padding-top: 10px;
    padding-bottom: 10px;

  }

}

/* Testimonials */

/* Advisory panel */

.Advisory-panel .card {
  border: none;
  box-shadow: none;
}

.Advisory-panel .content {
  position: absolute;
  bottom: 30px;
  left: 0px;
  background-color: white;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 10px 100px 10px 30px;
  border: none;
  box-shadow: none;
}

.Advisory-panel .content .content-text {
  display: inline-block;
  width: 100%;
}

.Advisory-panel .content .linkdin {
  position: absolute;
  z-index: 3;
  right: 15px;
  top: 15px;
  background-color: var(--indigo-base);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Advisory-panel .content span {
  color: black;
  font-size: 20px;
  font-weight: 600;
}

.Advisory-panel .content p {
  font-size: 17px;
  font-weight: 500;
}

.slick-custom-buttons {
  width: 60px;
  height: 60px;
  background-color: white;
  color: var(--indigo-light);
  border: 1px solid var(--indigo-medium);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.6s ease;

}

.slick-custom-buttons:hover {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--indigo-medium);
  color: white;
}

/* Advisory panel */

/* Get a quote */

.get-quote {
  background-color: var(--indigo-base);
  border-radius: 30px;
}

.get-quote h4 {
  font-size: 45px;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
  line-height: normal;
}

.get-quote h4>span {
  color: var(--indigo-light);
}

.get-quote h3 {
  font-size: 25px;
  font-weight: 900;
  color: white;
}

.get-quote ul li {
  font-size: 18px;
  font-weight: 500;
  color: #9d9d9d;
}

.get-quote ul .mail a {
  font-size: 17px;
  font-weight: 500;
  color: white;
}

.get-quote ul li h4 a {
  font-size: 25px;
  font-weight: 900;
  color: white;
}

.get-quote button {
  font-size: 18px;
  font-weight: 500;
  color: white;
  background-color: var(--indigo-light);
}

.get-quote button:hover {
  font-size: 18px;
  font-weight: 500;
  color: white;
  background-color: var(--indigo-light);
}

.get-quote input {
  font-size: 17px;
  font-weight: 500;
}

.get-quote textarea {
  font-size: 17px;
  font-weight: 500;
}

.get-quote label {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .get-quote h4 {
    font-size: 44px;
  }

}

@media (max-width: 768px) {
  .get-quote h4 {
    font-size: 40px;
  }

}

@media (max-width: 576px) {
  .get-quote h4 {
    font-size: 37px;
  }

}

@media (max-width: 400px) {
  .get-quote h4 {
    font-size: 34px;
  }

}

/* Get a quote */

/* FAQ */

.FAQ h3 {
  font-size: 48px;
  font-weight: 600;
  color: black;
}

.FAQ .faq-img {
  background-image: url(faq.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .FAQ .faq-img {
    background-image: url(faq.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 {
    background-image: url(faq.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 {
    background-image: url(faq.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 450px;
    border-radius: 30px;
  }
}

.faq-img-rating {
  position: absolute;
  bottom: 0px;
}

.accordion-header .accordion-button {
  border: none !important;
  box-shadow: none !important;
  background-color: white !important;
  padding: 15px 25px !important;
  border: 0.1px solid rgb(231, 223, 223) !important;
  border-radius: 15px !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: black !important;
  width: 100% !important;
  text-align: start !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item .accordion-header {
  width: 100% !important;
  margin-bottom: 15px !important;
}

.accordion-item .accordion-collapse {
  padding: 8px 40px !important;
}

.accordion-item .accordion-collapse p {
  font-size: 17px !important;
  color: #666666 !important;
  padding-left: 20px;
  padding-right: 20px;
}

.accordion-button::after {
  content: '▼';
  font-size: 0.8rem;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: '▲';
}

@media (max-width: 992px) {
  .FAQ h3 {
    font-size: 44px;
    margin-bottom: 0px;
  }

}

@media (max-width: 768px) {
  .FAQ h3 {
    font-size: 38px;
    margin-bottom: 0px;
  }

}

@media (max-width: 576px) {
  .FAQ h3 {
    font-size: 34px;
    margin-bottom: 0px;
  }

}

@media (max-width: 400px) {
  .FAQ h3 {
    font-size: 30px;
    margin-bottom: 0px;
  }

}

/* FAQ */


/* News & blog */

.section-wrapper-blog {
  background-color: var(--indigo-lightest);
  padding-top: 80px;
  margin-left: 30px;
  padding-bottom: 80px;
  margin-bottom: -200px;
  z-index: 1;
}

.blogs h2 {
  color: black;
}

.section-wrapper-blog .card {
  border-radius: 25px;
  box-shadow: none;
}

.section-wrapper-blog ul li {
  font-size: 18px;
}

.section-wrapper-blog ul li span {
  font-size: 17px;
  font-weight: bold;
  color: var(--indigo-medium);
}

.section-wrapper-blog .card h3 {
  color: black;
  font-size: 25px;
  margin-bottom: 25px;
}

.section-wrapper-blog .card a {
  color: black;
  font-size: 18px;
  font-weight: bold;
}

.section-wrapper-blog .card:hover a {
  color: var(--indigo-medium);
  letter-spacing: 1px;
  font-weight: bold;
}

.section-wrapper-blog .section-title h2 {
  color: black;
}

.section-wrapper-blog .section-title {
  width: 635px;
  margin: 0 auto 45px;
}

@media (max-width: 1200px) {

  .section-wrapper-blog {
    margin-left: 0px;
  }

}

@media (max-width: 635px) {
  .section-wrapper-blog .section-title {
    width: 480px;
    margin: 0 auto 45px;
  }

  .section-wrapper-blog .card h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

}

@media (max-width: 480px) {
  .section-wrapper-blog .section-title {
    width: 90%;
    margin: 0 auto 45px;
  }

  .section-wrapper-blog .section-title h2 {
    font-size: 28px;
  }

  .section-wrapper-blog .card h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

/* News & blog */


/* Footer */

.footer .container {
  width: 70% !important;
}

@media (max-width: 992px) {
  .footer .container {
    width: 80% !important;
  }
}

@media (max-width: 768px) {
  .footer .container {
    width: 90% !important;
  }
}

@media (max-width: 576px) {
  .footer .container {
    width: 90% !important;
  }
}

@media (max-width: 400px) {
  .footer .container {
    width: 100% !important;
  }
}

footer {
  background-color: black;
}

footer ul li a {
  color: #96999d;
  font-size: 16px;
  text-decoration: 1px underline;
  line-height: 40px;
}

.guide-section-2 h4 {
  color: #96999d;
  font-size: 18px;
  text-decoration: 1px underline;
}

.footer p {
  color: #96999d;
}

footer hr {
  border: 1px dashed white;
}

.vertical-line {
  border-left: 2px dotted white;
  height: 180px;
  width: 0px;
  padding: 0px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Footer */