/* =========Integrations Section two Section========== */
.integrations-section {
  background: var(--background-color);
  padding: 100px 0px;
}

@media (max-width: 980px) {
  .integrations-section {
    padding: 30px 0px;
  }
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.marquee-content {
  display: inline-flex;
  animation: scroll 35s linear infinite;
  gap: 10px;
  padding-bottom: 15px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-65%);
  }
}

/* =========CTA Section two Section========== */

.cta-section-two {
  padding-top: 100px;

  .cta-box-two {
    background-image: url(../images/cta-01.webp);
    background-color: var(--semi-secondary-color);
    border-radius: 3rem;
    padding: 100px 50px;
    background-size: 50%;
    background-position: right top;
    background-repeat: no-repeat;

    .ventaforce-highlight-text {
      color: var(--white);
      font-size: 4rem;
      margin: 0px;
    }
  }
}

@media (max-width: 980px) {
  .cta-section-two {
    padding-top: 15px;

    .cta-box-two {
      padding: 30px 20px;
      border-radius: 2rem;

      .ventaforce-highlight-text {
        font-size: 2rem;
      }
    }
  }
}

/* ======FAQ Section start======= */
.faq-section {
  padding: 100px 0px 50px;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #1c283f;
}

.accordion-button:focus {
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-button {
  font-size: 1.2rem;
  padding: 25px;
}

.bg {
  background-image: linear-gradient(90deg,
      rgba(206, 211, 246, 0) 0,
      #bbb 38%,
      #bbb 64%,
      rgba(206, 211, 246, 0) 99%);
  border: none;
  opacity: 0.4;
  background-color: transparent;
  width: 100%;
  height: 1px;
}

@media (max-width: 980px) {
  .faq-section {
    padding: 30px 0px 30px;
  }

  .accordion-button {
    font-size: 1rem;
    padding: 15px;
  }
}

/* ======Association Section End======= */

.association-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: 100%;
  position: relative;
}

.association-section .association-container {
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(17, 12, 46, 0.06) 0px 5px 15px 0px;
  margin-top: 25px;
  background: var(--white);

  img {
    width: 100%;
  }
}

.association-section .bottom-image {
  width: 100%;

  img {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .association-section {
    padding: 30px 0px 50px;
  }

  .association-section .association-container {
    padding: 10px;
    margin-top: 15px;
  }
}

/* =========banner Section========== */

.page-banner {
  padding: 100px 0px;
  background: url(../images/banner-bg.png);
  margin-top: 120px;
  background-size: cover;
  background-position: top;

  h1 {
    text-align: center;
  }
}

@media (max-width: 980px) {
  .page-banner {
    padding: 30px 0px;
    margin-top: 65px;

    .title-first {
      font-size: 2.0rem;
      line-height: 2.8rem;
    }
  }
}

/* =========Fact Section========== */

.why-ventaforce-hero-section {
  padding: 100px 0px 50px;

  .hero-content-box {
    background: var(--semi-secondary-color);
    border-radius: 3rem;
    padding: 50px;
    color: var(--white);
  }
}

@media (max-width: 980px) {
  .why-ventaforce-hero-section {
    padding: 30px 0px 0px;

    .hero-content-box {
      padding: 20px;
    }
  }
}

/* =========Hero Section========== */

.side-by-side-section {
  padding: 100px 0px 50px;
}

.section {
  padding: 100px 0px 50px;
}

.section-two {
  padding: 0px 0px 100px;
}

@media (max-width: 980px) {
  .side-by-side-section {
    padding: 30px 0px 30px;
  }

  .section {
    padding: 30px 0px 30px;
  }

  .section-two {
    padding: 0px 0px 50px;
  }
}

/* =========Fact Section========== */

.inner-fact-section {
  padding: 50px 0px;
  background-color: var(--white);

  .fact-box {
    padding: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
    display: flex;

    .fact-content-box {
      width: calc(100% - 100px);
    }

    .fact-icon-box {
      width: 85px;
      height: 85px;
      background: var(--primary-color);
      border-radius: 50%;
      padding: 18px;
      margin-left: 15px;

      img {
        max-width: 100%;
      }
    }

    .fact-icon-box-secondary {
      background: var(--semi-secondary-color);
    }

    h4 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #fff;
    }

    p {
      color: #fff;
      font-size: 14px;
      margin-bottom: 0px;
    }
  }

  .fact-box-first {
    background-color: var(--primary-color);

    .fact-icon-box {
      background: var(--white);
    }
  }

  .fact-box-second {
    background-color: var(--white);
    border: 1px solid var(--border);

    .fact-content-box {
      h4 {
        color: var(--primary-text);

        span {
          font-size: 2rem;
        }
      }

      p {
        color: var(--primary-text);
      }
    }
  }

  .fact-box-third {
    background-color: var(--white);
    border: 1px solid var(--border);

    .fact-content-box {
      h4 {
        color: var(--primary-text);
      }

      p {
        color: var(--primary-text);
      }
    }
  }

  .fact-box-fourth {
    background-color: var(--semi-secondary-color);
  }

  .fact-box-fifth {
    background-color: var(--secondary-color);
  }
}

@media (max-width: 980px) {
  .inner-fact-section {
    padding: 30px 0px;

    .fact-box {
      margin: 10px 0px;
      display: grid;
      padding: 15px;

      .fact-content-box {
        order: 1 !important;
        width: 100%;
      }

      .fact-icon-box {
        width: 55px;
        height: 55px;
        padding: 13px;
        margin-left: 0px;
      }

      h4 {
        font-size: 2rem;
      }

      p {
        font-size: 0.9rem;
        margin-bottom: 0px;
      }
    }
  }
}

/* =========Global Reach Section========== */

.light-bg-section {
  background: var(--background-color);
  padding: 100px 0px;
}

.global-reach-points-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-top: 15px;

  .global-reach-point-box {
    display: inline-flex;
    align-items: center;
    margin: 15px 0px;

    p {
      width: calc(100% - 55px);
    }
  }

  .number-icon {
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    background: var(--semi-secondary-color);
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 700;
    top: 50px;
    transition: all 0.35s ease-in-out;
    color: var(--white);
    margin-bottom: 20px;
  }
}

.desktop-map {
  display: block;
}

.mobile-map {
  display: none;
}

@media (max-width: 980px) {
  .global-reach-points-wrapper {
    display: block;
  }

  .light-bg-section {
    padding: 30px 0px;
  }
}

@media(max-width:800px) {
  .desktop-map {
    display: none;
  }

  .mobile-map {
    display: block;
  }
}

/* =========Team & Culture Section========== */

.Dark-Gray-box {
  background-color: var(--primary-color);
  border-radius: 3rem;
  padding: 45px;
  margin-top: 50px;

  .text-list {
    li {
      color: var(--white);
      font-weight: 600;
    }
  }

  h4 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
  }
}

.purple-box {
  background: url(../images/team-bg.jpg), var(--primary-color);
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  padding: 0px;
  margin-top: 50px;
  padding: 50px;
  width: calc(66.66% - 15px);
  margin-right: 15px;
  background-size: cover;
  background-position: center;

  p {
    font-size: 1.1rem;
    color: #fff;
  }

  .text-big {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
  }
}

.card-box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3rem;
  margin: 20px 0px;
  backdrop-filter: blur(2px);
  border: 1px solid var(--border);

  .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 15px;
  }

  .card-icon-secondary {
    background: var(--semi-secondary-color);
  }

  h4 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
  }
}

@media (max-width: 980px) {
  .purple-box {
    margin-top: 15px;
    padding: 25px;
    width: 100%;
    margin-right: 0px;

    .text-big {
      font-size: 1.3rem;
    }
  }

  .Dark-Gray-box {
    padding: 25px;
    margin-top: 15px;

    h4 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
  }

  .card-box {
    padding: 20px;
    border-radius: 2.0rem;

    .card-icon {
      width: 65px;
      height: 65px;
    }

    h4 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      font-weight: 700;
    }
  }
}

/* =========Recognition  Section========== */

.recognition-section {
  padding: 100px 0px 100px;
  background-color: var(--background-color);

  .recognition-container {
    padding: 15px;
    text-align: center;
  }

  .rating-wrapper {
    background-color: var(--white);
    padding: 2rem 2rem;
    border-radius: 25px;
    margin: 30px 0px;
    border: 1px solid var(--border);
  }
}

@media (max-width: 980px) {
  .recognition-section {
    padding: 30px 0px;

    .rating-wrapper {
      padding: 15px;

      .rating-logo-box {
        margin-top: 15px
      }

      .rating-star-box {
        text-align: center;

        img {
          width: 17px;
          height: 17px;
        }
      }
    }

  }
}

/* =========testimonal  Section========== */

.testimonal-wrapper {
  border: 2px solid var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 2rem;
  padding: 50px;
  margin-top: 35px;
  display: flex;

  .testimonial-logo {
    width: 150px;
    height: auto;
  }

  .pointer-wrapper {
    display: flow-root;

    .pointer-box {
      border: 1px dashed var(--primary-color);
      border-radius: 35px;
      padding: 10px 15px;
      font-size: 16px;
      font-weight: 600;
      width: max-content;
      margin: 5px 5px;
      float: left;
      background: #edeaf9;
    }
  }

  .client-info {
    display: flex;
    align-items: center;
  }

  .client-photo {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid #f5f5f5;
  }

  .testimonial-content {
    width: calc(100% - 200px);
    margin-left: 35px;

    .company-name {
      font-weight: 600;
      margin-bottom: 0px;
    }

    .client-name {
      font-size: 14px;
    }

    i {
      color: var(--primary-color);
      font-size: 36px;
    }

    .company-reviews-logo {
      float: right;
      margin-top: 15px;

      img {
        width: 150px;
        height: auto;
      }
    }
  }
}

@media (max-width: 980px) {
  .testimonal-wrapper {
    padding: 20px;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 20px;

    .client-photo {
      width: 100px;
      height: 100px;
      margin: 0px auto;
    }

    .testimonial-content {
      width: 100%;
      margin-left: auto;

      .company-reviews-logo {
        float: unset;
        margin-top: 15px;

        img {
          width: 100px;
          height: auto;
          margin: 0 auto;
        }
      }
    }

    .company-name {
      font-size: 16px;
    }

    .pointer-wrapper {
      .pointer-box {
        padding: 10px 15px;
        width: 100%;
        font-size: 14px;
      }
    }

    .client-info {
      display: block;
      align-items: center;
    }
  }
}

/* ============================================
=============Contact Us Page========== */

.contact-form-wrapper {
  box-shadow: 0 2px 60px #0000001a;
  border-radius: 3rem;
  padding: 50px;
}

.contact-right-para {
  margin-top: 5px
}

.Platform-items-wrapper {
  /* display: grid; */
  margin-top: 20px;
  position: relative;
  z-index: 1;
  /* grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px; */

  .Platform-item {
    padding: 20px 15px;
    /* width: 100%; */
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 2px 60px #0000001a;
    width: calc(33.33% - 20px);
    margin: 10px;

    .number-icon {
      height: 45px;
      width: 45px;
      text-align: center;
      line-height: 45px;
      background: var(--semi-secondary-color);
      border-radius: 50%;
      margin-right: 15px;
      font-weight: 700;
      top: 50px;
      transition: all 0.35s ease-in-out;
      color: var(--white);
      margin-bottom: 20px;
    }

    h4 {
      font-size: 18px;
      line-height: 22px;
      font-weight: 600;
    }
  }

  .Platform-item-primary {
    background: var(--primary-color);

    .number-icon {
      color: var(--semi-secondary-color);
      background: var(--white);
    }

    h4 {
      color: var(--white);
    }
  }

  .Platform-item-secondary {
    background: var(--semi-secondary-color);

    .number-icon {
      color: var(--semi-secondary-color);
      background: var(--white);
    }

    h4 {
      color: var(--white);
    }
  }
}

.padd-b-100 {
  padding-bottom: 100px;
}


.contact-address-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/contact-bg.png);

  .sub-title {
    color: var(--white);
  }

  h3 {
    color: var(--white);
  }

  p {
    color: var(--white);
  }

  .card-box {
    background: rgba(22, 22, 22, 0.6);
    border: 1px solid var(--semi-secondary-color);

    h4 {
      color: var(--white);
    }
  }
}

@media(max-width:980px) {
  .contact-form-wrapper {
    border-radius: 2rem;
    padding: 20px;
  }

  .contact-right-para {
    margin-top: 25px;
    text-align: center;
  }

  .Platform-items-wrapper {
    .Platform-item {
      padding: 15px 15px;
      width: calc(50% - 20px);

      .number-icon {
        height: 45px;
        width: 45px;
        line-height: 45px;
        top: 50px;
        margin-bottom: 20px;
      }

      h4 {
        font-size: 16px;
        line-height: 20px;
      }
    }

  }

  .contact-address-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .padd-b-100 {
    padding-bottom: 30px !important;
  }

}

/* ============================================
=============MLM Plan Page========== */

.plan-wrapper {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.plan-box {
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  margin: 10px 8px;
  backdrop-filter: blur(2px);
  border: 1px solid var(--border);
  width: calc(16.66% - 16px);
  display: flex;
  background: var(--primary-color);
  align-items: center;
  box-shadow: rgba(99, 99, 99, 0.4) 0px 2px 8px 0px;

  p {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0px;
    color: var(--white);
    width: calc(100% - 40px);
  }

  .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0px;
    background: var(--white);
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    line-height: 20px;
    font-size: 1.2rem;
    margin-right: 10px;
  }

  .card-icon-secondary {
    background: var(--semi-secondary-color);
  }
}

.plan-box-secondary {
  background: var(--semi-secondary-color);

  .card-icon {
    background: var(--primary-color);
    color: rgb(255, 255, 255);
  }
}

.plan-links-wrapper {
  display: flex;
  padding: 0px;
}


a.plan-link {
  color: var(--primary-text);
  text-decoration: none;
  display: contents;
}

.light-primary-box-wrapper {
  display: flow-root;

  .light-primary-box {
    border: 1px dashed var(--primary-color);
    border-radius: 35px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    width: max-content;
    margin: 5px 5px;
    float: left;
    background: #edeaf9;
  }
}

.light-red {
  background: #fdf4f5;

  .light-primary-box-wrapper {
    display: flow-root;

    .light-primary-box {
      border: 1px solid #e8a8a6;
      background: #f3d9d8;
    }
  }
}

.light-orange {
  background: #fefbf4;

  .light-primary-box-wrapper {
    display: flow-root;

    .light-primary-box {
      border: 1px solid #f5dea8;
      background: #fbf0da;
    }
  }
}

.light-paret-green {
  background: #fbfff3;

  .light-primary-box-wrapper {
    display: flow-root;

    .light-primary-box {
      border: 1px solid #bbe16c;
      background: #eef9d7;
    }
  }
}

.light-ocen-green {
  background: #eff9ff;

  .light-primary-box-wrapper {
    display: flow-root;

    .light-primary-box {
      border: 1px solid #acd9f3;
      background: #cce7f7;
    }
  }
}

.light-ocen-purple {
  background: #f5f5ff;

  .light-primary-box-wrapper {
    display: flow-root;

    .light-primary-box {
      border: 1px solid #a5a6f8;
      background: #d8d8fc;
    }
  }
}

.scroll-top-arrow {
  position: fixed;
  z-index: 9;
  bottom: 10px;
  right: 10px;
}

@media (max-width: 980px) {
  .plan-wrapper {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .plan-links-wrapper {
    display: flex;
    overflow-x: scroll;
    padding: 0px;
    flex-wrap: nowrap;
    justify-content: start !important;
  }


  .plan-box {
    padding: 15px;
    margin: 20px 5px;
    width: calc(44% - 10px);
    border-radius: 2.0rem;
    display: block;

    p {
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 0px;
      width: 100%;
    }

    .card-icon {
      width: 40px;
      height: 40px;
      padding: 12px;
      font-size: 16px;
      margin-bottom: 10px;
    }
  }

  .light-primary-box-wrapper {
    .light-primary-box {
      width: auto;
    }
  }
}

/* ============================================
===================Feature Page================
============================================ */
.feature-top-space {
  margin-top: 80px;
  margin-bottom: 80px;
}

.feature-box {
  box-shadow: 0 2px 60px #0000001a;
  border-radius: 3rem;
  padding: 50px;

  .features-wrapper {
    display: flex;
    margin: 20px 0px;
  }

  .feature-content {
    width: calc(100% - 50px);

    p {
      margin-bottom: 0px;
    }
  }

  .feature-icon {
    width: 50px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
  }

  .benifit-box {
    background: #ebebeb;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 35px;

    p {
      margin-bottom: 0px;
      text-align: center;
    }
  }
}

.feature-box-primary {
  background: var(--primary-color);
  color: var(--white);

  .benifit-box {
    background: #d6caff;
    border: 1px solid #604f9b;
    color: var(--primary-text);
  }
}

.feature-box-secondary {
  background: var(--semi-secondary-color);
  color: var(--white);

  .benifit-box {
    background: #2f2f2f;
    border: 1px solid #4e4d4f;
  }
}

.down-arrow {
  text-align: center;
  margin: 5px 0px;
  font-size: 25px;
  font-weight: 700;
  display: none;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

@media(max-width:980px) {
  .feature-top-space {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .feature-box {
    padding: 20px;
    border-radius: 2.0rem;

    .feature-icon {
      width: 30px;
      margin-right: 15px;
    }
  }

  .down-arrow {
    display: block;
  }
}

/* ============================================
===================Pricing Page================
============================================ */

.pricing-section {
  padding-top: 100px;
  padding-bottom: 100px;

  .package-box {
    box-shadow: 0 2px 60px #0000001a;
    border-radius: 3rem;
    padding: 0px;
    /* overflow: hidden; */
    width: calc(33.33% - 30px);
    margin: 25px 15px;
    position: relative;

    .package-content-box {
      padding: 30px;

      .support-text {
        padding-bottom: 15px;
        text-align: center;
        margin-bottom: 15px;
        background: #f3f3f3;
        border-radius: 35px;
        padding: 10px;
      }

      p {
        margin-bottom: 5px;
      }
    }

    .highlighted-box {
      padding: 20px;
      background: var(--semi-secondary-color);
      border-radius: 0px 0px 2.5rem 2.5rem;
      text-align: center;
      color: var(--white);
      border-radius: 3rem;

      h3 {
        font-size: 2.4rem;
        text-transform: capitalize;
        margin-top: 15px;
      }

      h4 {
        font-size: 2.9rem;
        font-weight: 700;
        background: var(--white);
        color: var(--primary-color);
        width: max-content;
        padding: 10px 25px;
        border-radius: 45px;
        margin: 10px auto;
        box-shadow: 5px 0px 26px -8px rgba(85 66 155 / 80%);

        span {
          font-size: 1rem;
        }
      }

      .most-popular-badge {
        position: absolute;
        top: -8px;
        width: 170px;
        left: calc(50% - 85px);
        z-index: 1;
      }
    }

    .request-demo-button {
      background: var(--primary-color);
      padding: 15px 35px;
      border-radius: 50px;
      color: var(--white);
      font-weight: 700;
      border: 0px;
      font-size: 1.0rem;
      margin: 15px auto;
      text-transform: uppercase;
      justify-content: center;
      display: grid;
      width: 100%;
      transition: all 0.3s ease;

      a {
        color: var(--white);
        text-decoration: none;
      }
    }

    .request-demo-button:hover {
      background: var(--secondary-color);
    }
  }

  .list-style {
    padding: 0px 0px 0px 10px;
    margin: 0px;
    list-style: none;
  }

  .list-style li {
    font-size: 1rem;
    padding: 10px 0px;
    font-weight: 500;
    position: relative;
    padding-left: 15px;

    p {
      margin-bottom: 10px;

      span {
        font-weight: 700;
        text-transform: uppercase;
      }
    }
  }

  .list-style li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/tick-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 25px;
    transform: translate(-50%, -50%);
  }

  .primary-package-box {
    background: var(--primary-color);
    color: var(--white);

    .highlighted-box {
      background: #866fd7;

      h4 {
        color: var(--secondary-color);
      }
    }

    .package-content-box {
      .list-style li::before {
        background-image: url(../images/tick-icon2.png);
      }

      .support-text {
        background: #d0c3ff;
        color: var(--semi-secondary-color);
      }
    }

    .request-demo-button {
      background: var(--semi-secondary-color);
    }
  }
}


@media(max-width:980px) {
  .pricing-section {
    padding-top: 30px;
    padding-bottom: 30px;

    .package-box {
      width: calc(100% - 0px);
      margin: 15px 0px;

      .highlighted-box {
        h3 {
          font-size: 1.8rem;
        }

        h4 {
          font-size: 2.4rem;
          padding: 10px 25px;
          margin: 10px auto;
        }
      }
    }
  }
}

/* ============================================
===================Testimonial Page================
============================================ */

.Testimonial-section {
  background-color: transparent !important;
}

.client-testimonial-section {
  background: #fff;
}

.highlight {
  color: #6c63ff;
}

.quote-icon {
  fill: var(--primary-color);
  width: 35px;
  height: 35px;
  margin-right: 5px;
  position: relative;
  top: -5px;
}

.card {
  transition: all 0.3s ease;
  min-height: 430px;

  .client-logo-slider {
    margin-bottom: 10px;
  }
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.text-warning {
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.swiper-pagination-bullet {
  background: #6c63ff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #4f46e5;
}

.swiper-button-next,
.swiper-button-prev {
  position: unset !important;
}

/* Custom Navigation Buttons beside View All */

.button-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  padding-top: 15px;
  position: relative;
  z-index: 0;
}

.btn-nav {
  width: 40px !important;
  height: 40px !important;
  border-radius: 8px;
  border: 2px solid #6c63ff;
  background: var(--background-color);
  color: #6c63ff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: #6c63ff;
  color: #fff !important;
}

.btn-primary {
  background-color: #6c63ff;
  border: none;
}

.btn-primary:hover {
  background-color: #4f46e5;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 14px !important;
  content: none !important;
}

@media (max-width: 767px) {
  .d-flex.gap-2 {
    justify-content: center;
  }
}

.client-youtube-testimonial {
  padding: 100px 0;

  .video-section-padding {
    padding: 80px 0;
  }

  .client-video-content {
    display: flex;
    flex-direction: row;
    flex: 1;
    gap: 80px;
  }
}

.testimonial-section {
  background-color: var(--background-color) !important;

  .pointer-wrapper {
    margin-top: 15px;

    .pointer-box {
      border: 1px dashed var(--primary-color);
      border-radius: 35px;
      padding: 10px 15px;
      font-size: 12px;
      font-weight: 600;
      width: max-content;
      margin: 5px 5px;
      float: left;
      background: #edeaf9;
    }
  }
}

.clients--testimonial {
  padding: 100px 0;

  .clients-testimonial-card {
    flex-direction: column;

    .client-info {
      display: flex;
      align-items: center;
    }
  }

  .swiper-pagination-bullet {
    background: #444 !important;
    opacity: 0.3;
    width: 34px;
    height: 14px;
    border-radius: 8px;
  }

  .swiper-pagination-bullet-active {
    background: #000 !important;
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .row {
    margin-left: 0px;
    margin-right: 0px;
  }
}

/* Video Box */
.video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
  transition: 0.3s;
}

.video-wrapper:hover .video-thumb {
  filter: brightness(65%);
}

/* Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  font-size: 3rem;
  color: #d32f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
  animation: pulsePlay 1.8s infinite ease-in-out;
  box-shadow: 0 0 25px rgba(211, 47, 47, 0.3);
  overflow: hidden;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: white;
  color: #b71c1c;
}

/* Pulse Animation */
@keyframes pulsePlay {
  0% {
    box-shadow: 0 0 0px 0 rgba(211, 47, 47, 0.4);
  }

  50% {
    box-shadow: 0 0 0px 18px rgba(211, 47, 47, 0);
  }

  100% {
    box-shadow: 0 0 0px 0 rgba(211, 47, 47, 0.4);
  }
}

/* Ripple Click */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
}

@keyframes rippleEffect {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* Testimonial Content */
.client-youtube-testimonial .client-photo img {
  width: 120px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 10px;
}

.pointer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pointer-box {
  border: 1px dashed var(--primary-color);
  border-radius: 35px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  width: max-content;
  margin: 5px 5px;
  float: left;
  background: #edeaf9;
}

.company-name {
  font-weight: 600;
  color: #333;
  font-size: 24px;
  margin: 0;
}

.client-name {
  color: #777;
}

.myTestimonialSlider {
  border: 2px solid var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 2rem;
  padding-bottom: 30px !important;
  margin-top: 50px;

  .client-pagination {
    display: flex;
    justify-content: center;
  }


  .testimonal-wrapper {
    box-shadow: none !important;

    .testimonial-content {
      p {
        font-size: 20px;

        i {
          font-size: 36px;
          color: var(--primary-color);
        }
      }
    }
  }
}

.rating-wrapper {
  .g2-img-section {

    .rating-star-box,
    .rating-logo-box {
      display: flex;
      justify-content: center;
    }
  }

  .reviews-content {
    text-align: center;

    .rating-logo-box img {
      width: 180px;
    }
  }
}

.cta-section-four {
  text-align: center;
  background: url(../images/cta-shape.png), #181D27;
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  p {
    color: var(--white);
    margin: 0;
  }
}






/* testimonial page responsive */

@media (max-width:786px) {


  .Testimonial-section {
    padding: 40px 0 !important;


    .clients-testimonial-card {
      padding: 20px;
      margin: 0 !important;

      .client-info {
        display: block !important;
      }

      .client-photo {
        width: 100px;
        height: 100px;
        float: right;
      }

      .testimonial-content {
        width: 100% !important;
        margin-left: 0 !important;

        p {
          font-size: 16px;
          line-height: 1.5;

          i {
            font-size: 24px;
          }
        }

        .pointer-wrapper {
          .pointer-box {
            font-size: 13px !important;
          }
        }
      }
    }

    .rating-wrapper {
      .reviews-content {
        padding-bottom: 20px !important;
      }

      .rating-logo-box {

        img {
          width: 100%;
        }
      }
    }
  }

  .testimonial-section {
    .button-group {
      justify-content: center;
    }

    .testimonial-slider {
      .card {
        min-height: 520px !important;

        p {
          font-size: 14px !important;
        }
      }
    }
  }

  .cta-section-four {
    .primary-button-style {
      font-size: 14px;
      padding: 20px;
    }
  }


  .g2-img-section {
    .rating-logo-box {
      img {
        width: 40px !important;
      }
    }
  }


  .client-youtube-testimonial {
    padding: 40px 0;

    .video-section-padding {
      padding: 20px 0;

      .testimonal-content-2 {
        order: 1 !important;
      }

      .client-video-content {
        display: grid;
        padding: 15px;
        background: #f5f5f7;
        border-radius: 16px;
        border: 1px solid #ededed;
        gap: 30px;

        .company-name {
          font-size: 18px;
        }

        .pointer-wrapper {
          .pointer-box {
            font-size: 14px !important;
          }
        }
      }
    }
  }

  .myTestimonialSlider {
    .testimonal-wrapper {
      .testimonial-content {
        p {
          font-size: 18px;
        }
      }
    }
  }
}


@media (max-width:1280px) {
  .rating-wrapper {
    .reviews-content {
      .rating-logo-box {
        img {
          width: 140px !important;
        }
      }
    }
  }
}


/* ============================================
=============Thank You Page========== */

.what-next-box {
  padding: 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
  display: flex;
  align-items: center;

  .what-next-content-box {
    width: calc(100% - 100px);
  }

  h4 {
    font-size: 30px;
    font-weight: 700;
  }

  p {
    font-size: 18px;
    margin-bottom: 0px;
  }

  .what-next-icon-box {
    width: 85px;
    height: 85px;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 18px;
    margin-left: 15px;
  }

  a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-text);
  }
}

.what-next-primary {
  background-color: var(--primary-color);

  .what-next-icon-box {
    background: var(--white);
  }

  h4 {
    color: #fff;
  }

  p {
    color: #fff;
  }
    a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-text);
  }
}

.what-next-secondary {
  background-color: var(--semi-secondary-color);

  .what-next-icon-box {
    background: var(--primary-color);
  }

  h4 {
    color: #fff;
  }

  p {
    color: #fff;
  }
    a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-text);
  }
}