body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
}

img {
  width: 100%;
  display: block;
}

.industry-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;

  --primary-color: #0b2b73;
  --secondary-color: #f9c200;
  --text-color: #4b5563;
  --white-color: #ffffff;
  --bg-color: #f8fafc;
  --shadow-light: 0 8px 30px rgba(0, 0, 0, 0.05);
  --radius-lg: 22px;
  --transition: all 0.35s ease;
}

.industry-section__heading {
  max-width: 900px;
  margin: 0 auto 60px;
}

.industry-section__subheading {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.industry-section__subheading span {
  width: 48px;
  height: 2px;
  background: var(--primary-color);
}

.industry-section__subheading p {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 1px;
  margin: 0;
}

.industry-section__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  font-family: var(--primary-font);
  margin-bottom: 10px !important;
}

.industry-section__description {
  font-size: 14px;
  max-width: 750px;
  /* margin: 12px auto; */
  margin: 0 auto;
  line-height: 1.8;
}

.industry-section__divider {
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 30px;
}

/* Card */

.industry-card {
  background: var(--white-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-8px);
}

.industry-card__image {
  /* height: 240px; */
  height: 190px;
  overflow: hidden;
}

.industry-card__image img {
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.industry-card:hover .industry-card__image img {
  transform: scale(1.06);
}

.industry-card__body {
  position: relative;
  padding: 30px 28px 20px;
}

.industry-card__icon {
  position: absolute;
  top: -50px;
  left: 25px;
  width: 68px;
  height: 68px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 4px solid var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.industry-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-family: var(--primary-font);
}

.industry-card__text {
  font-size: 16px;
  margin-bottom: 0 !important;
  /* line-height: 1.8;
  min-height: 85px; */
}

.industry-card__link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 6px;
}

.industry-card__link span {
  width: 38px;
  height: 38px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.industry-card__link:hover span {
  transform: rotate(-15deg);
}

/* Responsive */

@media (max-width: 1400px) {
  .industry-section__title {
    font-size: 45px;
  }
}

@media (max-width: 1199px) {
  .industry-section__title {
    font-size: 36px;
  }

  .industry-card__title {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .industry-section {
    padding: 50px 0;
  }

  .industry-section__title {
    font-size: 30px;
  }

  .industry-section__description {
    font-size: 18px;
  }

  .industry-card__image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .industry-section__title {
    font-size: 26px;
    line-height: 1.4;
  }

  .industry-section__description {
    font-size: 16px;
    line-height: 1.7;
  }

  .industry-card__body {
    padding: 30px 20px 20px;
  }

  .industry-card__title {
    font-size: 22px;
  }

  .industry-card__text {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .industry-section {
    padding: 30px 0;
  }

  .industry-section__title {
    font-size: 22px;
  }

  .industry-section__subheading {
    gap: 10px;
  }

  .industry-section__subheading span {
    width: 30px;
  }

  .industry-card__image {
    height: 200px;
  }

  .industry-card__icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
}

/* --------------------------------------CTA----------------------------- */

.cta-banner {
  padding: 60px 30px;

  --primary-color: #021f61;
  --secondary-color: #fcc101;
  --white-color: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --feature-bg: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.15);
  --transition: all 0.35s ease;
}

.cta-banner__container {
  position: relative;
  max-width: 1640px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--primary-color);
  background-image: linear-gradient(90deg,
      rgba(2, 31, 97, 0.96) 0%,
      rgba(2, 31, 97, 0.9) 45%,
      rgba(2, 31, 97, 0.3) 100%);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  padding: 50px 40px 30px;
}

.cta-banner__left {
  max-width: 700px;
}

.cta-banner__tag {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.cta-banner__line {
  width: 45px;
  height: 3px;
  background: var(--secondary-color);
}

.cta-banner__tag p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.cta-banner__title {
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 18px;
  font-family: var(--primary-font);
}

.cta-banner__divider {
  width: 70px;
  height: 4px;
  background: var(--secondary-color);
  margin-bottom: 20px;
}

.cta-banner__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 26px;
}

.cta-banner__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.cta-banner__btn i {
  display: flex;
  align-items: center;
}

.cta-banner__btn--primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.cta-banner__btn--secondary {
  background: var(--white-color);
  color: var(--primary-color);
}

.cta-banner__btn:hover {
  transform: translateY(-4px);
}

.cta-banner__image {
  text-align: right;
}

.cta-banner__image img {
  width: 100%;
  max-width: 760px;
  border-radius: 20px;
  object-fit: cover;
}

/* Features */
.cta-features {
  margin-top: 36px;
  background: var(--feature-bg);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  backdrop-filter: blur(15px);
}

.cta-features__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 11px;
  border-right: 1px solid var(--border-light);
  height: 100%;
}

.cta-features__item--last {
  border-right: none;
}

.cta-features__icon {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 30px;
  flex-shrink: 0;
}

.cta-features__content h4 {
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: var(--primary-font);
}

.cta-features__content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1400px) {
  .cta-banner__title {
    font-size: 42px;
  }

  .cta-banner__description {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .cta-banner__title {
    font-size: 38px;
  }

  .cta-banner__content {
    padding: 40px 30px 25px;
  }

  .cta-features__content h4 {
    font-size: 22px;
  }

  .cta-features__content p {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .cta-banner__image {
    margin-top: 40px;
  }

  .cta-banner__title {
    font-size: 32px;
  }

  .cta-banner__description {
    font-size: 14px;
  }

  .cta-features__item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
}

@media (max-width: 767px) {
  .cta-banner {
    padding: 20px;
  }

  .cta-banner__content {
    padding: 30px 25px 20px;
  }

  .cta-banner__title {
    font-size: 34px;
  }

  .cta-banner__description {
    font-size: 14px;
  }

  .cta-banner__btn {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 18px 20px;
  }

  .cta-banner__tag p {
    font-size: 13px;
  }

  .cta-features__item {
    padding: 22px;
  }

  .cta-features__content h4 {
    font-size: 18px;
  }

  .cta-features__content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .cta-banner__title {
    font-size: 28px;
  }

  .cta-banner__description {
    font-size: 16px;
  }

  .cta-features__icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }
}

/* --------------------------------------CTA----------------------------- */

/* --------------------------------------Why Choose us----------------------------- */

.why-choose {
  padding: 60px 0;

  --primary: #021f61;
  --secondary: #fcc101;
  --text: #4a5568;
  --white: #ffffff;
  --bg: #f7f9fc;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  --radius: 22px;
  --transition: all 0.35s ease;
}

.why-choose__header {
  max-width: 910px;
  margin: 0 auto 45px;
}

.why-choose__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 14px;
}

.why-choose__line {
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.why-choose__subtitle h6 {
  margin: 0;
  font-size: 15px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 2px;
}

.why-choose__title {
  font-size: 45px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2 !important;
}

.why-choose__divider {
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 0 auto 14px;
  border-radius: 20px;
}

.why-choose__description {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* Cards */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px 20px 15px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card__content {
  flex: 1;
}

.why-card__icon {
  width: 70px;
  height: 70px;
  background: #eef4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 12px;
}

.why-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 12px;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0 !important;
}

.why-card__bar {
  display: inline-block;
  width: 30px;
  height: 4px;
  background: var(--secondary);
  border-radius: 10px;
  margin-top: 20px;
}

.why-card__image {
  /* flex: 0 0 220px; */
  flex: 0 0 160px;
  display: flex;
  align-items: center;
}

.why-card__image img {
  width: 100%;
  object-fit: contain;
}

/* Stats */
.why-stats {
  margin-top: 50px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.why-stats__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 28px;
  border-right: 1px solid #e5e7eb;
}

.why-stats__item--last {
  border-right: none;
}

.why-stats__item i {
  font-size: 28px;
  color: var(--primary);
}

.why-stats__item p {
  margin: 0;
  font-size: 16px;
  color: var(--primary);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1199px) {
  .why-choose__title {
    font-size: 40px;
  }

  .why-card__title {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .why-card {
    flex-direction: column;
    text-align: center;
  }

  .why-card__image {
    flex: auto;
    justify-content: center;
  }

  .why-card__icon {
    margin: 0 auto 20px;
  }

  .why-stats__item {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}

@media (max-width: 767px) {
  .why-choose {
    padding: 60px 0;
  }

  .why-choose__title {
    font-size: 26px;
  }

  .why-choose__description {
    font-size: 18px;
  }

  .why-card {
    padding: 20px;
  }

  .why-card__title {
    font-size: 22px;
  }

  .why-card__desc {
    font-size: 15px;
  }

  .why-stats__item p {
    font-size: 16px;
  }
}

/* --------------------------------------Why Choose us----------------------------- */

/* --------------------------------------TESTIMONIALS----------------------------- */

/*==================================================
==================================================*/

ul {
  list-style: none;
}

/*==================================================
        Section
==================================================*/

.testimonial {
  padding: 90px 0 90px;

  position: relative;

  overflow: hidden;


  --primary-color: #021f61;
  --secondary-color: #fcc101;

  --heading-color: #0d2a6b;
  --text-color: #4d5b78;

  --white: #ffffff;

  --section-bg: #f7f9fd;

  --border-color: #edf2f8;

  --shadow-sm: 0 10px 35px rgba(9, 30, 66, 0.06);

  --shadow-md: 0 20px 60px rgba(10, 35, 80, 0.08);

  --transition: 0.35s ease;

  --radius: 22px;
}

.testimonial::before {
  content: "";

  position: absolute;

  left: -180px;

  top: -180px;

  width: 450px;

  height: 450px;

  background: radial-gradient(rgba(252, 193, 1, 0.08), transparent);

  border-radius: 50%;
}

.testimonial::after {
  content: "";

  position: absolute;

  right: -220px;

  top: -80px;

  width: 480px;

  height: 480px;

  background: radial-gradient(rgba(2, 31, 97, 0.05), transparent);

  border-radius: 50%;
}

/*==================================================
        Heading
==================================================*/

.testimonial__heading {
  max-width: 960px;
  margin: auto;
  margin-bottom: 50px;
}

.testimonial__subtitle {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  margin-bottom: 20px;
}

.testimonial__subtitle span {
  width: 60px;

  height: 2px;

  background: var(--primary-color);
}

.testimonial__subtitle h6 {
  margin: 0;

  color: var(--secondary-color);

  letter-spacing: 2px;

  font-weight: 700;

  font-size: 18px;
}

.testimonial__title {
  font-size: 58px;

  font-weight: 700;

  color: var(--heading-color);

  line-height: 1.18;

  margin-bottom: 22px;
}

.testimonial__description {
  max-width: 760px;

  margin: auto;

  font-size: 16px;

  line-height: 1.4;

  color: #53617f;
}

.testimonial__divider {
  width: 60px;

  height: 4px;

  background: var(--secondary-color);

  margin: 12px auto 0;

  border-radius: 50px;
}

/*==================================================
            Swiper
==================================================*/

.testimonial-slider {
  position: relative;
}

.testimonial-slider__swiper {
  overflow: hidden;

  padding: 10px;
}

.swiper-slide {
  height: auto;
}

/*==================================================
        Testimonial Card
==================================================*/

.testimonial-card {
  background: #fff;

  border-radius: 24px;

  padding: 40px;

  box-shadow: var(--shadow-sm);

  border: 1px solid #edf1f7;

  position: relative;
  min-height: 300px;
  height: 100%;

  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  position: absolute;

  left: 28px;

  top: 20px;

  font-size: 58px;

  color: #d9e6fa;
}

.testimonial-card__header {
  display: flex;

  align-items: center;

  gap: 24px;

  margin-bottom: 25px;
}

.testimonial-card__avatar {
  width: 90px;

  height: 90px;

  border-radius: 50%;

  overflow: hidden;

  flex-shrink: 0;

  border: 6px solid #f3f6fc;
}

.testimonial-card__avatar img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.testimonial-card__rating {
  display: flex;

  gap: 5px;

  margin-bottom: 10px;
}

.testimonial-card__rating i {
  color: #fdbb00;

  font-size: 17px;
}

.testimonial-card__info h3 {
  margin: 0;

  font-size: 24px;

  color: var(--heading-color);

  font-weight: 700;
}

.testimonial-card__info span {
  color: #64748b;

  font-size: 16px;
}

.testimonial-card__body {
  margin-bottom: 15px;
}

.testimonial-card__body p {
  margin: 0;

  font-size: 22px;

  line-height: 1.4;

  color: #364152;
}

.testimonial-card__footer {
  padding-top: 25px;

  border-top: 1px solid #e9edf4;
}

.testimonial-card__footer img {
  height: 48px;

  width: auto;

  object-fit: contain;
}

/*==================================================
        Navigation
==================================================*/

.testimonial-slider__nav {
  width: 62px;

  height: 62px;

  border: none;

  background: #fff;

  border-radius: 50%;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 20;

  transition: 0.3s;
}

.testimonial-slider__nav i {
  font-size: 22px;

  color: var(--primary-color);
}

.testimonial-slider__nav:hover {
  background: var(--primary-color);
}

.testimonial-slider__nav:hover i {
  color: #fff;
}

.testimonial-slider__nav--prev {
  left: -35px;
}

.testimonial-slider__nav--next {
  right: -35px;
}

/*==================================================
            Pagination
==================================================*/

.testimonial-slider__pagination {
  position: relative !important;

  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 13px;

  height: 13px;

  background: #d6dce7;

  opacity: 1;

  margin: 0 7px !important;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color);

  width: 14px;

  height: 14px;
}

/*==================================================
        Animation
==================================================*/

.testimonial-card {
  opacity: 0;

  transform: translateY(35px);

  animation: fadeUp 0.8s forwards;
}

.swiper-slide:nth-child(2) .testimonial-card {
  animation-delay: 0.2s;
}

.swiper-slide:nth-child(3) .testimonial-card {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(35px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* ----------------Clients------------------------ */
/*==================================================
            Client Logos Section
==================================================*/

.testimonial-clients {
  margin-top: 70px;
  background: var(--white);
  border-radius: 24px;
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.testimonial-clients__count {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
  position: relative;
}

.testimonial-clients__count::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70px;
  background: #e8edf5;
}

.testimonial-clients__icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.testimonial-clients__icon i {
  color: var(--secondary-color);
  font-size: 34px;
}

.testimonial-clients__count h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.testimonial-clients__count p {
  margin: 8px 0 0;
  font-size: 20px;
  color: var(--text-color);
  position: relative;
}

.testimonial-clients__count p::after {
  content: "";
  width: 42px;
  height: 4px;
  background: var(--secondary-color);
  display: block;
  margin-top: 12px;
  border-radius: 30px;
}

/*==========================================
            Logo Grid
==========================================*/

.testimonial-clients__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial-clients__logo {
  flex: 1;
  min-width: 140px;
  height: 82px;
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.testimonial-clients__logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-clients__logo img {
  max-width: 135px;
  max-height: 48px;
  object-fit: contain;
  transition: 0.3s;
}

.testimonial-clients__logo:hover img {
  transform: scale(1.05);
}

/*==================================================
            Bottom Trust Statement
==================================================*/

.testimonial-bottom {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.testimonial-bottom__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.testimonial-bottom__icon i {
  color: white;
  font-size: 30px;
}

.testimonial-bottom p {
  margin: 0;
  font-size: 20px;
  color: #48566f;
}

.testimonial-bottom h5 {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  color: #48566f;
}

.testimonial-bottom h5 span {
  color: var(--heading-color);
}

/*==================================================
            Hover Effects
==================================================*/

.testimonial-card:hover .testimonial-card__avatar img {
  transform: scale(1.08);
}

.testimonial-card__avatar img {
  transition: 0.4s;
}

.testimonial-card:hover .testimonial-card__quote {
  color: rgba(252, 193, 1, 0.35);
}

.testimonial-card:hover .testimonial-card__footer img {
  filter: none;
}

.testimonial-card__footer img {
  transition: 0.35s;
}

.testimonial-clients__logo:hover {
  border-color: rgba(252, 193, 1, 0.5);
}

/*==================================================
            Responsive
==================================================*/

@media (max-width: 1600px) {
  .testimonial__title {
    font-size: 38px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

@media (max-width: 1400px) {
  .testimonial__title {
    font-size: 38px;
  }

  .testimonial-card__info h3 {
    font-size: 20px;
  }

  .testimonial-card__body p {
    font-size: 16px;
  }

  .testimonial-slider__nav--prev {
    left: -15px;
  }

  .testimonial-slider__nav--next {
    right: -15px;
  }
}

@media (max-width: 1199px) {
  .testimonial {
    padding: 80px 0;
  }

  .testimonial__title {
    font-size: 36px;
  }

  .testimonial__description {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .testimonial-card__avatar {
    width: 85px;
    height: 85px;
  }

  .testimonial-card__body p {
    font-size: 18px;
  }

  .testimonial-clients__count::after {
    display: none;
  }

  .testimonial-clients__logos {
    margin-top: 30px;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .testimonial {
    padding: 70px 0;
  }

  .testimonial__title {
    font-size: 38px;
  }

  .testimonial__description {
    font-size: 15px;
  }

  .testimonial-card__header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card__rating {
    justify-content: center;
  }

  .testimonial-card__body {
    text-align: center;
  }

  .testimonial-card__footer {
    text-align: center;
  }

  .testimonial-bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-bottom p {
    font-size: 20px;
  }

  .testimonial-bottom h5 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .testimonial {
    padding: 60px 0;
  }

  .testimonial__subtitle h6 {
    font-size: 15px;
  }

  .testimonial__line {
    width: 35px;
  }

  .testimonial__title {
    font-size: 30px;
    line-height: 1.35;
  }

  .testimonial__description {
    font-size: 16px;
    line-height: 1.4;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-card__avatar {
    width: 80px;
    height: 80px;
  }

  .testimonial-card__info h3 {
    font-size: 18px;
  }

  .testimonial-card__info span {
    font-size: 16px;
  }

  .testimonial-card__body p {
    font-size: 16px;
    line-height: 1.4;
  }

  .testimonial-slider__nav {
    display: none;
  }

  .testimonial-clients {
    padding: 25px;
  }

  .testimonial-clients__count {
    justify-content: center;
    margin-bottom: 25px;
  }

  .testimonial-clients__count h3 {
    font-size: 36px;
  }

  .testimonial-clients__count p {
    font-size: 18px;
  }

  .testimonial-clients__logos {
    gap: 15px;
  }

  .testimonial-clients__logo {
    min-width: 120px;
    height: 72px;
  }

  .testimonial-bottom__icon {
    width: 64px;
    height: 64px;
  }

  .testimonial-bottom__icon i {
    font-size: 24px;
  }

  .testimonial-bottom p {
    font-size: 17px;
  }

  .testimonial-bottom h5 {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .testimonial {
    padding: 50px 0;
  }

  .testimonial__title {
    font-size: 26px;
  }

  .testimonial-card {
    padding: 22px;
    border-radius: 18px;
  }

  .testimonial-card__quote {
    font-size: 42px;
    left: 18px;
    top: 14px;
  }

  .testimonial-card__avatar {
    width: 70px;
    height: 70px;
  }

  .testimonial-card__body p {
    font-size: 15px;
  }

  .testimonial-clients {
    padding: 20px;
  }

  .testimonial-clients__icon {
    width: 68px;
    height: 68px;
  }

  .testimonial-clients__icon i {
    font-size: 28px;
  }

  .testimonial-clients__logo {
    min-width: 100%;
  }

  .testimonial-bottom {
    gap: 15px;
  }
}

@media (max-width: 400px) {
  .testimonial__title {
    font-size: 23px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .testimonial-card__info h3 {
    font-size: 17px;
  }

  .testimonial-card__info span {
    font-size: 15px;
  }

  .testimonial-bottom p {
    font-size: 15px;
  }

  .testimonial-bottom h5 {
    font-size: 18px;
  }
}

/*==================================================
            Utilities
==================================================*/

.text-primary-custom {
  color: var(--primary-color);
}

.bg-primary-custom {
  background: var(--primary-color);
}

.bg-secondary-custom {
  background: var(--secondary-color);
}

.shadow-custom {
  box-shadow: var(--shadow-md);
}

.rounded-custom {
  border-radius: var(--radius);
}

.transition {
  transition: var(--transition);
}

/* ----------------Clients------------------------ */


/*====================================
    Premium Continuous Logo Marquee
====================================*/

.client-logo-marquee {

  width: 100%;

  overflow: hidden;

  position: relative;

}

.clientLogoSwiper {

  overflow: visible;

}

.clientLogoSwiper .swiper-wrapper {

  transition-timing-function: linear !important;

}

.client-logo-marquee .swiper-slide {

  width: auto;

}

.client-logo-marquee__item {

  width: 170px;

  height: 82px;

  background: #fff;

  border: 1px solid #E8EDF5;

  border-radius: 14px;

  display: flex;

  justify-content: center;

  align-items: center;

  transition: .35s;

}

.client-logo-marquee__item:hover {

  /* transform:translateY(-5px); */

  border-color: #FCC101;

  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.client-logo-marquee__item img {

  width: auto;

  max-width: 130px;

  max-height: 42px;

  object-fit: contain;

  transition: .35s;

}

.client-logo-marquee__item:hover img {

  transform: scale(1.06);

}

/* Mobile */

@media(max-width:991px) {

  .client-logo-marquee__item {

    width: 150px;

    height: 74px;

  }

}

@media(max-width:576px) {

  .client-logo-marquee__item {

    width: 130px;

    height: 68px;

  }

  .client-logo-marquee__item img {

    max-width: 100px;

  }

}

/* --------------------------------------TESTIMONIALS----------------------------- */