/* testmonial-area */
.testimonials-area {
    background-color: #fff;
  }
  
  .testimonial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    padding: 0px 0px 10px 0px;
  }
  
  .slider {
    /* overflow: hidden; */
    /* white-space: nowrap; */
    width: 100%;
  }
  

  .slide-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: calc(300px * 12); /* 6 cards * 2 duplicate */
  }
  
  .slide-track.reverse {
    animation: scroll-reverse 40s linear infinite;
  }

  .slide-track:hover {
    animation-play-state: paused;
  }
  
  .testimonial-card {
    max-width: 388px;
    /* height: 275px; */
    margin: 0 15px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }
  
  .reviews-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .testimonial-name {
    font-weight: bold;
    font-size: 16px;
    font-weight: 600;
    color: #303030;
  }
  
  .testimonial-username {
    font-size: 14px;
    color: #201a2e;
    font-family: "poppins", sans-serif !important;
    font-weight: 400;
  }
  
  .testimonial-text {
    font-size: 16px;
    color: #303030;
    /* min-height: 120px; */
    min-height: 60px;
    margin-bottom: 15px;
    font-weight: 400;
  }
  
  .reviews .testimonial-text {
    font-size: 16px;
    color: #303030;
    min-height: 120px !important;
    /* min-height: 60px; */
    margin-bottom: 15px;
    font-weight: 400;
  }
  
  .testimonial-stars {
    color: #bdb396;
    font-size: 18px;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  @keyframes scroll-reverse {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }
  /* testmonial-area */

  /* our-services-area-v2 start */
.our-services-area-v2 {
    background-color: #fff !important;
  }
  
  .sr-bx-v2 h4 {
    padding: 8px 0px;
    font-size: 22px;
    font-weight: 600;
    color: black;
  }
  
  .sr-bx-v2 p {
    max-width: 340px !important;
    margin: 0px auto;
    font-size: 16px;
  }
  
  .abt-txt-bx .step-heading {
    border-bottom: 3px solid #201a2e;
    padding-bottom: 0px;
    margin-bottom: 8px;
    display: inline-block;
  }
  
  .abt-txt-bx .step-sb-heading {
    font-size: 30px;
    font-weight: 600;
    color: black;
  }
  .abt-txt-bx .step-para {
    padding: 15px 0px;
    font-style: normal;
  }
  
  .step-features-list {
    list-style: none;
    padding: 0;
  }
  
  .step-features-list li {
    margin-bottom: 15px;
  }
  
  .step-features-list .feature-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #303030 !important;
  }
  
  .step-features-list p {
    margin: 0px 0 0 24px;
    font-size: 15px !important;
    color: #555;
  }
  
  .step-one .abt-txt-bx {
    padding: 0px 60px 0px 0px;
  }
  
  .step-two .abt-txt-bx {
    padding: 0px 0px 0px 60px;
  }
  
  .footerForm .form-check-label {
    color: #475467;
    font-weight: 400 !important;
    font-size: 15px;
    font-style: normal;
  }
  
  .services-v2-wrp-bx {
    margin-bottom: 45px;
  }
  
  .cnt-hero-txt-bx {
    margin-bottom: 20px;
    padding: 0px 50px 0px 0px;
  }


.step-one .img-style img,
.step-two .img-style img {
    box-shadow: none;
}

.headerForm {
    background-color: var(--main-color) !important;
    border-radius: 20px;
    box-shadow: 1px 1px 18.5px 0px #00000026;
    padding: 30px 50px;
    margin-top: -28px;
}

#orderForm h2 {
    padding-bottom: 20px;
  }
  
  #orderForm h3 {
    padding: 20px 0px 24px 0px;
    font-size: 22px;
    font-weight: 600;
    color: black;
  }
    
  #orderForm .checkbox-wrapper {
    display: grid;
    grid-template-columns: repeat(3, auto); /* har row mein 3 checkbox */
    gap: 6px 25px; /* space horizontal aur vertical */
    justify-content: center;
  }
  
  #orderForm .form-check-inline {
    margin-left: unset !important;
    margin-right: unset !important;
    display: inline-block;
    margin-right: unset !important;
  }

  .services-chk-bx .form-check {
    padding: 5px 16px 5px 34px;
    background: #201A2E;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 1px 1px 18.5px 0px #00000026;
  }
  
  
  #orderForm .form-check-label {
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
  }
  
  /* Hover dropdown on desktop only */
  
  @media (max-width: 575px) {
    .checkbox-wrapper {
      grid-template-columns: repeat(2, auto) !important;
    }
  }
  
  .cnt-hero-txt-bx {
    margin-bottom: 20px !important;
  }
  
  .cnt-hero-txt-bx h1 {
    font-size: 48px !important;
  }
  .cnt-hero-txt-bx h2 {
    font-size: 32px;
  }
  
  .cnt-hero-txt-bx p {
    font-size: 17px !important;
  }
  select#categorySelect {
    font-size: 13px !important;
    color: #5a7184 !important;
  }
  
  .thnk-hd-bx h1 {
    font-size: 50px !important;
    text-align: center !important;
  }
  
  .popservices-chk-bx {
    position: relative !important;
  }
  
  .popservices-chk-bx .error {
    position: absolute !important;
    top: -30px !important;
    left: 128px;
    display: block !important;
    font-family: "Titillium Web";
  }
  
  
  .services-item {
    position: relative;
  }
  
  
   /* ------------------------------------------------------------------- */
  .publishing-form-area{
    padding: 0px 0px 40px 0px;
    background: linear-gradient(360deg, #bdb3961c, #ffffff);
    z-index: 2;
  }
  
  
   /* ------------------------------------------------------------------- */

.sec-home-banner::before {
    opacity: 0.9;
}

.btn-3 {
  color: #fff !important;
    background: #201A2E !important;
    font-family: 'Hanken Grotesk', sans-serif !important;
    font-weight: 500 !important;
    border-radius: 6px;
    padding: 10px 15px;
    min-width: 155px;
    font-size: 17px;
    font-weight: 700 !important;
    border: none !important;
}

.services-chk-bx {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 600px;
  margin-inline: auto;
}

.services-chk-bx .error {
  position: absolute !important;
  top: -27px !important;
  display: block !important;
  font-family: 'Titillium Web';
}

form label.error {
  display: none !important;
  color: red;
  font-size: 14px;
  margin-top: 4px;
}

.select-box-arrow {
  position: relative;
}

.select-box-arrow::after {
  content: "\f0dd";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 18px;
}

@media (max-width: 600px) {

  .sec-home-banner-2 {
    padding: 20px 0 !important;
  }

  .sec-home-banner-2 .hero-small {
    margin-bottom: 10px;
  }

  .hero-small h2 {
    font-size: 18px;
  }

  .headerForm {
    padding: 16px 16px;
    margin: 0 -20px;
    border-radius: 0;
  }

  #orderForm h2 {
    font-size: 20px;
    padding-bottom: 10px;
  }

  #orderForm h3 {
    padding: 10px 0px 16px 0px;
    font-size: 16px;
    font-weight: 700;
    color: black;
  }

  .services-chk-bx {
    justify-content: flex-start;
  }

  #orderForm .form-check-inline {
    width: calc(50% - 3px);
  }

  #orderForm .form-check-label {
    font-weight: 500;
    font-size: 14px;
  }

  #orderForm select.form-control {
    padding: 8px 12px;
    font-size: 14px;
  }

  .select-box-arrow::after {
    top: 4px;
  }

  #orderForm input.form-control {
    padding: 8px 12px;
    font-size: 14px;
  }
  
}