@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Black.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraBold.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Thin.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraLight.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  /* font-display: swap; */
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  /* font-display: swap; */
}

:root {
  --poppins: "Poppins";
  --orange: #f0805c;
  --bluish-purple: #1752a1;
  --dark-charcoal: #333333;
  --white: #ffffff;
  --black: #000000;
  --powder-blue: #eaf3ff;
  --bright-gray: #eeeeee;
  --pale-pink: #efe6ea;
  --phillipine-silver: #b3b3b3;
  --dr-white: #fafafa;
  --very-dark-gray: #2c2c2c;
  --ghost-white: #f6faff;
  --dim-gray: #696969;
  --dark-silver: #f6f6f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--poppins);
  font-size: 16px;
  color: var(--black);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

span {
  display: inline-block;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--poppins);
  margin: 0px;
  padding: 0px;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
li {
  list-style: none;
}

img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1460px;
  padding: 0px 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.gredient-bg {
  background: linear-gradient(180deg, #f6faff 0%, rgba(246, 250, 255, 0) 100%);
}
.iub__us-widget {
  display: none !important;
}

section {
  overflow: hidden;
}

.slick-slider {
  cursor: grab;
}

.slick-slider:active {
  cursor: grabbing;
}

.primary_btn {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 10px;
  padding: 11px 32px;
  cursor: pointer;
  transition: 0.3s ease;
  max-width: max-content;
}
.cta-btn span,
.primary_btn span {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
}

/* Default Arrow */
.cta-btn:hover span img:first-child,
.primary_btn span img:first-child {
  position: absolute;
  width: 20px;
  height: 20px;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Arrow */
.cta-btn span img:last-child,
.primary_btn span img:last-child {
  position: absolute;
  width: 20px;
  height: 20px;
  transform: translateX(-150%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button Hover */
.primary_btn:hover {
  background: var(--white);
  color: var(--orange);
  border: 1px solid var(--orange);
}

/* Hover BG */
.cta-btn:hover img:first-child {
  background: var(--white);
}
.primary_btn:hover span {
  background: var(--white);

  border: 1px solid var(--orange);
}

/* Animations */
.cta-btn:hover span img:first-child,
.primary_btn:hover span img:first-child {
  transform: translateX(150%);
}
.cta-btn:hover span img:last-child,
.primary_btn:hover span img:last-child {
  transform: translateX(0);
}

.primary_btn.outlined {
  color: var(--orange);
  background-color: var(--white);
  border: 1px solid var(--orange);
}

.primary_btn.outlined:hover {
  color: var(--bluish-purple);
  background-color: var(--white);
  border: 1px solid var(--bluish-purple);
}

.secondary_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--bluish-purple);
  border-radius: 10px;
  padding: 17px 24px;
  width: fit-content;
  cursor: pointer;
  transition: 0.3s ease;
}

.secondary_btn:hover {
  background-color: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.comman-section {
  padding: 40px 0px;
}

.section_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto 40px;
}

.section_heading.left,
.section_heading.left h2,
.section_heading.left p,
.section_heading.left span {
  text-align: start;
  justify-content: start;
  align-items: start;
}

.section_heading.medium_box {
  max-width: 1199px;
  width: 100%;
  margin: 0 auto 40px;
}

.section_heading.medium_box h2 {
  max-width: 1064px;
  width: 100%;
  margin: 0 auto;
}

.section_heading.small_box {
  max-width: 801px;
  width: 100%;
  margin: 0 auto 40px;
}

.section_heading > span {
  display: inline;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 10px;
  background-color: var(--bluish-purple);
  padding: 11px 32px;
}

.section_heading h2 {
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 48px;
  line-height: 61px;
  text-align: center;
  color: var(--dark-charcoal);
}

.section_heading h2 span {
  color: var(--bluish-purple);
  display: inline;
}

.section_heading p {
  font-family: var(--poppins);
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0%;
  text-align: center;
  color: var(--dark-charcoal);
}
/* header */

header,
header.white-bg.scrolled {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  border-bottom: 1px solid;
  border-image-source: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-image-slice: 1;
  z-index: 9999;
  overflow: hidden;
}

header.scrolled .container,
header.white-bg.scrolled .container {
  background-color: var(--bluish-purple);
  border-radius: 0px 0px 20px 20px;
}

nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0px;
}

.navbar-collapse {
  display: flex;
}

nav.navbar a.navbar-brand {
  display: flex;
}

.navbar-collapse .collapse ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.navbar-collapse .collapse ul li a {
  font-family: var(--poppins);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--white);
  transition: 0.34 all ease;
}

.navbar-collapse .collapse ul li:hover a {
  color: var(--orange) !important;
}

.navbar-collapse .collapse ul li.current-menu-item a {
  color: var(--orange);
}

.navbar-collapse .navbar-toggler,
.navbar-collapse .cta-btn.mobile,
.close_btn {
  display: none;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px 4px 4px;
  background-color: var(--orange);
  font-family: var(--poppins);
  font-size: 18px;
  line-height: 28px;
  border-radius: 30px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  border: 1px solid var(--orange);
}

.cta-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--white);
  border-radius: 50%;
  padding: 4px;
  border: 1px solid transparent;
}

.cta-btn:hover span {
  border: 1px solid var(--orange);
}

.cta-btn:hover {
  background-color: var(--white);
  color: var(--orange);
  border: 1px solid var(--orange);
}

.cta-btn span img {
  width: 26px !important;
  height: 16px !important;
}

/* Home Page banner */

.main_banner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 952px;
  max-height: 952px;
  background-color: var(--bluish-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner_container {
  width: 100%;
  position: relative;
  z-index: 9;
}

/* .main_banner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/09/dot_waves.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
} */

.main_banner .banner_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

.main_banner .banner_btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.main_banner .banner_content h1 {
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 74px;
  line-height: 111px;
  text-align: center;
  color: var(--white);
  margin-bottom: 13px;
}

.main_banner .banner_content h1 span {
  color: var(--orange);
}

.main_banner .banner_content p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: var(--white);
  margin: 0 auto 25px;
  max-width: 940px;
  width: 100%;
}

.banner_content .primary_btn {
  padding: 8px 10px 8px 14px;
}

.banner_content .primary_btn span img {
  width: 26px;
  height: 16px;
}

.main_banner span.left_ellipse {
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 519px;
  height: 519px;
}

.main_banner span.left_ellipse img {
  height: 100%;
  width: 100%;
}

.main_banner span.right_ellipse {
  display: block;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 519px;
  height: 519px;
}

.main_banner span.right_ellipse img {
  height: 100%;
  width: 100%;
}

.navbar-collapse .navbar-toggler span img {
  width: 32px;
  height: 32px;
}

/* Brand Section */

.global_brand .brand_content {
  padding: 70px 0px 30px;
  border-top: 3px solid var(--pale-pink);
  border-radius: 40px;
}

.brand_slider .brand_image img {
  width: auto;
  margin: 0 auto;
}

.brand_slider .slick-track {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand_slider .slick-prev {
  left: 25px;
}

.brand_slider .slick-next {
  right: 25px;
}

.brand_slider .slick-next:before,
.brand_slider .slick-prev:before {
  display: none;
}
.brand_slider .slick-list.draggable::before {
  content: "";
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  display: block;
  width: 70px;
  height: 48px;
  position: absolute;
  left: 0px;
  z-index: 99;
}

.brand_slider .slick-list.draggable::after {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  display: block;
  width: 70px;
  height: 48px;
  position: absolute;
  right: 0px;
  z-index: 99;
  top: 0px;
}

.brand_desc p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  color: var(--orange);
  margin-top: 40px;
  font-style: italic;
}

/* Services */

.services_section .section_heading.small_box {
  padding: 0 20px;
}

.custom-controls {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.custom-controls .progress-bar,
.custom-controls .testimonial-progress {
  width: 100%;
  overflow: hidden;
  height: 4px;
  background-color: #f6f6f6;
}

.custom-controls .progress-bar span,
.custom-controls .testimonial-progress span {
  display: block;
  height: 4px;
  background-color: var(--orange);
}

.custom-controls .slick-prev,
.custom-controls .testimonial-prev {
  position: relative;
  inset: 0px !important;
  transform: translate(0, 0) !important;
  max-width: 40px;
  width: 100%;
  height: 40px;
  border-radius: 50%;
  border: 2.18px solid #dedede;
}

.custom-controls .slick-next,
.custom-controls .testimonial-next {
  position: relative;
  inset: 0px !important;
  transform: translate(0, 0) !important;
  max-width: 40px;
  width: 100%;
  height: 40px;
  border-radius: 50%;
  border: 2.18px solid #dedede;
}

.custom-controls .slick-prev:before,
.custom-controls .testimonial-prev:before {
  content: "";
  display: flex;
  background-image: url(/wp-content/uploads/2025/09/chevron-right_gray.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  position: relative;
  inset: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.custom-controls .slick-next:before,
.custom-controls .testimonial-next:before {
  content: "";
  display: flex;
  background-image: url(/wp-content/uploads/2025/09/chevron-right_gray.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  position: relative;
  inset: 0px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

.custom-controls .slick-prev.active:before,
.custom-controls .testimonial-prev.active:before {
  background-image: url("/wp-content/uploads/2025/09/chevron-right.svg");
  transform: translateX(-50%) rotate(180deg);
}
.custom-controls .slick-next.active:before,
.custom-controls .testimonial-next.active:before {
  background-image: url("/wp-content/uploads/2025/09/chevron-right.svg");
  transform: translateX(-50%);
}

.custom-controls .slick-prev.active,
.custom-controls .slick-next.active,
.custom-controls .testimonial-prev.active,
.custom-controls .testimonial-next.active {
  border: 2.18px solid var(--orange);
}

.services_slider .slick-prev,
.user_review .slick-prev {
  position: relative;
  left: 25px;
}

.services_slider .slick-next,
.user_review .slick-next {
  right: 25px;
}

.services_slider .slick-prev,
.services_slider .slick-next,
.user_review .slick-prev,
.user_review .slick-next {
  top: 110%;
}

.services_slider .slick-next:before,
.services_slider .slick-prev:before,
.user_review .slick-prev:before,
.user_review .slick-next:before {
  display: none;
}

.services_slider .slick-track {
  display: flex;
  gap: 30px;
}

.services_slide_item_inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 5px solid #efe6ea;
  border-radius: 20px;
}

.services_slide_item_inner .serve_image {
  position: relative;
  padding-top: 60.44%;
}

.services_slide_item_inner .serve_image img {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.services_slide_item_inner .serve_desc {
  padding: 0px 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services_slide_item_inner .serve_desc h3 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--black);
  min-height: 56px;
}

.services_slide_item_inner .serve_desc p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-charcoal);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.services_slide_item_inner .serve_desc a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--orange);
  width: fit-content;
}
.services_slide_item_inner .serve_desc a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background-image: url(/wp-content/uploads/2025/09/chevron-right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
  transition: right 0.3s ease;
}

/* about section */

.abt_content {
  display: flex;
  gap: 20px;
}

.abt_content .abt_left {
  width: 100%;
  max-width: 598px;
}

.about_main {
  border-bottom: 1px solid var(--bright-gray);
  padding-bottom: 40px;
}
.abt_content .abt_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.abt_content .abt_right {
  width: 100%;
  max-width: 792px;
}

.abt_content .abt_right .abt_content_inner {
  padding: 0px 0px 0px 20px;
  border-left: 1px solid var(--bright-gray);
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

.abt_right .abt_content_inner .abt_desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abt_right .abt_content_inner .abt_desc p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: var(--dark-charcoal);
}

.abt_right .abt_content_inner .abt_badge {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.abt_right .abt_content_inner .abt_badge .abt_badge_item {
  width: 100%;
}

.abt_right .abt_content_inner .abt_badge .abt_badge_item:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--bright-gray);
}

.abt_right .abt_btn {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt_badge .abt_badge_item .badge_image {
  max-width: 73px;
  width: 100%;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--powder-blue);
  margin-bottom: 14px;
  border-radius: 10px;
}
.abt_badge .abt_badge_item .badge_image img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.abt_badge .abt_badge_item .badge_content h3 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--bluish-purple);
  margin-bottom: 5px;
}

.abt_badge .abt_badge_item .badge_content p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--dark-charcoal);
}

/* about counter */

.about_counter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--bright-gray);
}

.about_counter .abt_count_item {
  width: 100%;
  max-width: calc((100% / 4) - 17px);
}

.about_counter .abt_count_item h2 {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.75;
  color: var(--bluish-purple);
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--bright-gray);
}

.about_counter .abt_count_item h2 .count_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 46px;
  width: 100%;
  height: 46px;
}

.about_counter .abt_count_item h2 span {
  color: var(--orange);
}

.about_counter .abt_count_item h2 span.static-count,
.about_counter .abt_count_item h2 span.count-number {
  color: var(--bluish-purple);
}

.about_counter .abt_count_item h3 {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0%;
  color: var(--bluish-purple);
  margin-bottom: 6px;
}

.about_counter .abt_count_item p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--dark-charcoal);
}

/* help_section */

.help_section {
  background: linear-gradient(180deg, #f6faff 0%, rgba(246, 250, 255, 0) 100%);
}
.industry_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.industry_list .industry_item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 20px;
  border: 1px solid var(--bright-gray);
  background-color: var(--white);
  padding: 30px;
  width: 100%;
  max-width: calc((100% / 3) - 17px);
}

.industry_list .industry_item .indus_image {
  display: flex;
  border-radius: 5px;
  width: fit-content;
  padding: 20px;
  box-shadow: 0px 4px 7px 0px #0000000d;
}

.industry_list .industry_item .indus_image img {
  max-width: 40px;
  width: 100%;
  height: 40px;
}

.indus_desc {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.indus_desc h3 {
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.75;
  color: var(--dark-charcoal);
  margin-bottom: 10px;
}

.indus_desc p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-charcoal);
  margin-bottom: 28px;
}

.indus_desc a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: var(--orange);
  width: fit-content;
}

.indus_desc a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background-image: url("/wp-content/uploads/2025/09/chevron-right.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
  transition: right 0.3s ease;
}

.indus_desc a:hover::after {
  right: -38px; /* moves arrow to right smoothly */
}

/* start journey */

.journey_content {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: block;
  padding: 40px 61px;
  background-image: url("/wp-content/uploads/2025/09/journey_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.journey_content::before {
  content: "";
  background: #1752a1bd;
  position: absolute;
  inset: 0;
}

.journey_content .journey_desc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto 40px;
}

.journey_content .journey_desc h2 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.25;
  text-align: center;
  color: var(--white);
}
.journey_content .journey_desc p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  color: var(--white);
}

.journey_btn {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--white);
  text-align: center;
}

.journey_btn .primary_btn {
  margin: 0 auto;
}

/* Why Aevoneyx */

.company_list {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.company_list .company_item {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  gap: 30px;
}

.company_list .company_item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: end;
  text-align: right;
}

.company_left {
  position: relative;
  padding-top: 30.494%;
  max-width: 50%;
  width: 100%;
}
.company_left img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company_left::after {
  content: "";
  position: absolute;
  right: -19px;
  top: 0;
  bottom: 0px;
  background-image: url("/wp-content/uploads/2025/09/vertical_line.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 8px;
}

.company_list .company_item:nth-child(even) .company_left::after {
  left: -19px;
}

.company_right {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 41px;
  width: 100%;
  max-width: 50%;
}

.company_list .company_item:nth-child(even) .company_right .why_icon {
  margin-left: auto;
}

.company_right .why_icon {
  display: flex;
  padding: 21px;
  background-color: var(--powder-blue);
  border-radius: 10px;
}

.company_right .why_icon img {
  width: 100%;
  max-width: 40px;
  height: 40px;
}

.company_right h4 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.25;
  color: var(--bluish-purple);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--orange);
}

.company_right p {
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: var(--dark-charcoal);
  padding-bottom: 10px;
}

/* Insights */

.insights_list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.insights_list .insights_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 6px 9px 52px 0px #0000000d;
  background-color: var(--white);
  width: 100%;
  max-width: calc((100% / 3) - 14px);
}

.insights_list .insights_item .insight_image a{
  display: block;
  position: relative;
  padding-top: 58.37%;
  margin-bottom: 24px;
}

.insights_list .insights_item .insight_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.insights_list .insights_item .insight_desc span {
  display: inline-block;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--orange);
  padding: 11px 32px;
  border: 1px solid var(--orange);
  border-radius: 5px;
  margin-bottom: 10px;
}

.insights_list .insights_item .insight_desc h4 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: var(--black);
}

.insights_list .insights_item .insight_author_info {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--bright-gray);
}

.insights_list .insights_item .insight_author_info span {
  display: inline-flex;
  gap: 2px;
  font-family: var(--poppins);
  font-weight: 600;
  font-style: Italic;
  font-size: 16px;
  line-height: 1.25;
  color: var(--dark-charcoal);
}

.insights_list .insights_item .insight_author_info span::after {
  content: "/";
  font-size: 12px;
}

.insights_list .insights_item .insight_author_info p {
  display: inline-block;
  font-family: var(--poppins);
  font-weight: 600;
  font-style: Italic;
  font-size: 16px;
  line-height: 1.25;
  color: var(--orange);
}

.insights_content .insights_btn {
  margin-top: 51px;
}

.insights_content .insights_btn .primary_btn {
  margin: 0 auto;
}

/* promotion bar */

.promotion-bar {
  overflow: hidden;
}

.promotion-bar-content-wrapper {
  display: flex;
  flex-direction: row;
  background-color: var(--bluish-purple);
  display: flex;
  gap: 37px;
}

.promotion-bar-content {
  display: flex;
  align-items: center;
  gap: 37px;
  padding: 26px 0;
  flex: 0 0 auto;
  animation: promoAnimation 20s linear infinite;
}

.promotion-bar-content p {
  display: flex;
  gap: 37px;
  align-items: center;
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 1%;
  color: var(--white);
}

@keyframes promoAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); /* depends on duplicate width */
  }
}

/* Testimonials */
.testimonial {
  background: linear-gradient(180deg, #f6faff 0%, rgba(246, 250, 255, 0) 100%);
}
.testimonial_inner_content {
  display: flex;
  gap: 20px;
}

.testimonial_inner_content .user_image {
  display: flex;
  width: 100%;
  max-width: 580px;
  border-radius: 16px;
}

.testimonial_inner_content .user_image img {
  width: 100%;
  max-width: 580px;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.testimonial_inner_content .user_content {
  display: flex;
  flex-direction: column;
  gap: 73px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
  justify-content: space-between;
  background-color: var(--white);
}

.testimonial_inner_content .user_content .user_review_content p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--dark-charcoal);
}

.testimonial .slick-track {
  display: flex;
  gap: 20px;
}

.user_info h4 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 26px;
  line-height: 39px;
  letter-spacing: 1%;
  color: var(--bluish-purple);
  margin-bottom: 10px;
}

.user_info p {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1%;
  color: var(--dark-charcoal);
}

/* contact form */

.contact_heading {
  margin-bottom: 38px;
}

.contact_heading h2 {
  font-family: var(--poppins);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.75;
  color: var(--bluish-purple);
  margin-bottom: 12px;
}

.contact_heading p {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: var(--dark-charcoal);
}

.connect_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.connect_list .connect_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 27px 38px;
  border: 1px solid var(--bright-gray);
  background: var(--white);
  border-radius: 10px;
}

.connect_list .connect_item .connect_desc {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.connect_list .connect_item .connect_desc span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 40px;
  height: 40px;
}

.connect_item .connect_desc span img {
  width: 100%;
  max-width: 40px;
  height: 40px;
}

.connect_desc .connect_info h4 {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 9px;
}

.connect_desc .connect_info p {
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--dark-charcoal);
}

.connect_list .connect_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  border-radius: 5px;
}

.connect_list .connect_item a img {
  width: auto;
  max-width: 16px;
}

.contact_right_form {
  padding: 39px 24px;
  background-color: var(--white);
  box-shadow: 0px 4px 36px 0px #0000001a;
  border: 1px solid var(--bright-gray);
  border-radius: 20px;
}

.contact_right_form .contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact_right_form .contact-form {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.contact_right_form .contact-form .contact-group {
  display: flex;
  align-items: start;
  gap: 23px;
}

.contact_right_form .contact-item label {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  color: var(--black);
}

.contact_right_form .contact-item span {
  width: 100%;
}

.contact_right_form .contact-item span input,
.contact_right_form .contact-item span textarea,
.contact_right_form .contact-item span select {
  width: 100%;
  max-width: 100%;
  border: none;
  outline: none;
  padding: 14px 20px;
  background-color: var(--dr-white);
  border-radius: 5px;
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-charcoal);
}

.contact_right_form .contact-item span textarea {
  min-height: 136px;
  max-height: 136px;
}

.contact_right_form .contact-item span select {
  appearance: none;
}

.contact_right_form .contact-item span input::placeholder,
.contact_right_form .contact-item span textarea::placeholder,
.contact_right_form .contact-item span select::placeholder {
  color: var(--phillipine-silver);
}

.contact_content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact_content .contact_left,
.contact_content .contact_right {
  width: 100%;
  max-width: 50%;
}

.contact-item input[type="submit"] {
  max-width: 100%;
  outline: none;
  width: 100%;
}

.contact-item .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 0.8em;
  font-weight: normal;
  display: block;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 14px;
  line-height: 20px;
}

@media screen and (max-width: 1440px) {
  .services_slider .slick-track {
    gap: 20px;
  }
}

@media screen and (max-width: 1199px) {
  /* about section */

  .abt_right .abt_content_inner .abt_badge {
    gap: 20px;
  }
  .abt_right .abt_content_inner .abt_badge .abt_badge_item:nth-child(odd) {
    padding-right: 20px;
  }
  .abt_content .abt_right .abt_content_inner {
    gap: 30px;
  }

  /* Company */

  .company_right .why_icon {
    padding: 16px;
  }

  .company_right h4 {
    font-size: 24px;
    line-height: 1.25;
  }
  .company_right p {
    font-size: 18px;
    line-height: 1.25;
  }
  .navbar-collapse .collapse ul li a {
    font-size: 16px;
  }
  .navbar-collapse .collapse ul {
    gap: 20px;
  }
}

@media screen and (max-width: 1024px) {
  nav.navbar a.navbar-brand img {
    max-width: 180px;
    width: 100%;
  }

  .navbar-collapse .collapse ul {
    gap: 24px;
  }

  .cta_button .cta-btn {
    font-size: 16px;
    line-height: 20px;
  }

  .cta_button .cta-btn span,
  .banner_content .primary_btn span {
    width: 30px;
    height: 30px;
  }

  .main_banner {
    height: 100%;
    min-height: 870px;
    max-height: 870px;
  }

  .main_banner .banner_content h1 {
    font-size: 60px;
    line-height: 81px;
  }

  .main_banner .banner_content p {
    font-size: 22px;
    line-height: 32px;
    max-width: 700px;
    width: 100%;
  }

  /* about us */
  .abt_content .abt_left {
    width: 100%;
    max-width: 100%;
  }
  .abt_content .abt_right .abt_content_inner {
    padding: 0px 0px 25px;
    border: none;
  }

  .about_counter .abt_count_item h3 {
    font-size: 18px;
    line-height: 1.75;
  }
  .abt_right .abt_content_inner .abt_desc p {
    font-size: 18px;
    line-height: 24px;
  }
  .about_counter .abt_count_item h2 {
    font-size: 46px;
  }

  .section_heading h2 {
    font-size: 40px;
    line-height: 50px;
  }

  /* services section */

  .services_slide_item_inner .serve_desc a {
    font-size: 18px;
  }

  /* brand section  */

  .global_brand .brand_content {
    padding: 40px 0px;
  }

  /* help section */
  .industry_list .industry_item {
    padding: 24px;
  }

  .indus_desc h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .indus_desc a {
    font-size: 18px;
    line-height: 22px;
  }

  .industry_list .industry_item .indus_image img {
    max-width: 30px;
    width: 100%;
    height: 30px;
  }

  /* journey section */
  .journey_content {
    padding: 40px;
  }
  .journey_content .journey_desc {
    margin-bottom: 24px;
  }

  .journey_content .journey_desc h2 {
    font-size: 35px;
  }

  .journey_content .journey_desc p {
    font-size: 18px;
  }

  /* insights */

  .insights_list .insights_item {
    padding: 16px;
  }

  .insights_list .insights_item .insight_desc span {
    font-size: 14px;
    line-height: 1;
    padding: 10px 14px;
  }

  .insights_list .insights_item .insight_desc h4 {
    font-size: 20px;
    line-height: 1.25;
  }

  .insights_list .insights_item .insight_author_info {
    flex-wrap: wrap;
  }

  .insights_list .insights_item .insight_author_info span,
  .insights_list .insights_item .insight_author_info a {
    font-size: 14px;
    line-height: 1.25;
  }

  .promotion-bar-content p,
  .promotion-bar-content {
    gap: 24px;
  }

  .promotion-bar-content {
    margin-left: 24px;
  }

  /* testimonial */

  .testimonial_inner_content .user_content {
    gap: 40px;
  }

  .testimonial_inner_content .user_content .user_review_content p {
    font-size: 16px;
    line-height: 20px;
  }
  .user_info h4 {
    font-size: 24px;
    line-height: 39px;
  }
  .user_info p {
    font-size: 18px;
    line-height: 28px;
  }

  /* contact form */

  .contact_heading h2 {
    font-size: 40px;
    line-height: 1.25;
  }
  .contact_heading p {
    font-size: 20px;
    line-height: 24px;
  }

  .contact_right_form .contact-form .contact-group {
    flex-wrap: wrap;
  }

  .connect_list .connect_item {
    padding: 20px;
  }
  .connect_list .connect_item .connect_desc span,
  .connect_item .connect_desc span img {
    max-width: 30px;
    height: 30px;
  }

  .connect_list .connect_item .connect_desc {
    gap: 16px;
  }
}

@media screen and (max-width: 991px) {
  nav.navbar .site_logo {
    flex: 1;
    order: 1;
  }

  nav.navbar .cta_button {
    order: 2;
  }

  nav.navbar .navbar-collapse {
    order: 3;
  }

  .navbar .collapse {
    display: none;
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    background-color: #1752a1;
    padding: 40px;
    transition: right 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .navbar.open-wrapper .collapse {
    display: flex;
    right: 0;
    opacity: 1;
    pointer-events: auto;
    gap: 20px;
  }

  nav.navbar.open-wrapper .navbar-collapse .collapse ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  nav.navbar.open-wrapper .close_btn {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
  }
  nav.navbar.open-wrapper .close_btn svg {
    cursor: pointer;
    fill: var(--white);
  }
  nav.navbar.open-wrapper .navbar-collapse .cta-btn.mobile {
    display: flex;
  }

  .navbar-collapse .collapse ul li a {
    font-size: 24px;
    line-height: 30px;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    background-color: transparent;
    border: none;
    outline: none;
  }

  .about_counter .abt_count_item h2 {
    font-size: 40px;
  }

  .custom-controls {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .section_heading {
    margin: 0 auto 24px;
  }

  .section_heading h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .section_heading > span {
    font-size: 16px;
    line-height: 20px;
  }

  .section_heading p {
    font-size: 18px;
    line-height: 1.5;
  }

  .primary_btn,
  .secondary_btn {
    font-size: 16px;
    line-height: 20px;
  }

  .main_banner .banner_content h1 {
    font-size: 50px;
    line-height: 71px;
  }

  .main_banner .banner_content p {
    font-size: 20px;
    line-height: 30px;
    max-width: 630px;
    width: 100%;
  }
  .banner_content .primary_btn,
  .banner_content .secondary_btn {
    font-size: 16px;
    line-height: 20px;
  }
  nav.navbar .cta_button {
    display: none;
  }

  /* about */
  .abt_content {
    flex-wrap: wrap;
  }
  .abt_badge .abt_badge_item .badge_content h3 {
    font-size: 18px;
    line-height: 30px;
  }
  .abt_badge .abt_badge_item .badge_image {
    padding: 8px;
  }
  .about_counter .abt_count_item {
    max-width: calc((100% / 2) - 10px);
    padding: 0px;
  }

  .about_counter {
    padding-top: 20px;
    margin-top: 20px;
  }

  .about_counter .abt_count_item h2 {
    font-size: 24px;
    line-height: 34px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .abt_right .abt_content_inner .abt_desc p {
    font-size: 16px;
    line-height: 20px;
  }

  .abt_content .abt_right .abt_content_inner {
    gap: 16px;
    margin-bottom: 16px;
  }

  /*  brand section */

  .brand_desc p {
    font-size: 18px;
    line-height: 24px;
  }

  /* help section */

  .industry_list .industry_item {
    max-width: calc((100% / 2) - 10px);
  }

  .indus_desc h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .indus_desc a {
    font-size: 16px;
    line-height: 22px;
  }

  .industry_list .industry_item .indus_image {
    padding: 14px;
  }

  /* journey section */
  .journey_content {
    padding: 30px;
  }
  .journey_content .journey_desc h2 {
    font-size: 30px;
  }

  .journey_content .journey_desc p {
    font-size: 16px;
  }

  /* comapny */

  .company_list .company_item,
  .company_list .company_item:nth-child(even) {
    flex-direction: column;
  }

  .company_left,
  .company_right {
    width: 100%;
    max-width: 100%;
  }

  .company_left {
    padding-top: 50%;
  }

  .company_left::after,
  .company_list .company_item:nth-child(even) .company_left::after {
    display: none;
  }
  .company_list .company_item:nth-child(even) {
    justify-content: center;
    text-align: start;
  }

  .company_list .company_item:nth-child(even) .company_right .why_icon {
    margin-left: 0;
  }

  /* insights */

  .insights_list .insights_item {
    max-width: calc((100% / 2) - 10px);
  }

  company_list {
    gap: 24px;
  }

  /* testimonial */

  .testimonial_inner_content {
    flex-direction: column;
  }

  .testimonial_inner_content .user_image,
  .testimonial_inner_content .user_image img {
    max-width: 100%;
  }

  /* contact form */
  .contact_content {
    flex-wrap: wrap;
  }
  .contact_content .contact_left,
  .contact_content .contact_right {
    width: 100%;
    max-width: 100%;
  }

  .connect_desc .connect_info h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
  }
  .connect_desc .connect_info p {
    font-size: 16px;
    line-height: 20px;
  }

  .connect_list .connect_item a {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 575px) {
  .comman-section {
    padding: 20px 0px;
  }

  .section_heading p {
    font-size: 16px;
    line-height: 1.5;
  }
  nav.navbar {
    padding: 16px 0px;
  }

  .section_heading h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .main_banner {
    height: 100%;
    min-height: 700px;
    max-height: 700px;
  }
  .main_banner .banner_content h1 {
    font-size: 40px;
    line-height: 60px;
  }
  .main_banner .banner_content p {
    font-size: 18px;
    line-height: 30px;
  }

  .abt_right .abt_content_inner .abt_badge {
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 0px;
  }

  .abt_content {
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
  .abt_right .abt_content_inner .abt_badge .abt_badge_item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .abt_content .abt_right .abt_content_inner {
    margin-bottom: 0px;
  }

  /* services */

  .services_slide_item_inner .serve_desc a {
    font-size: 16px;
  }

  /* brand section */

  .global_brand .brand_content {
    padding: 40px 0px 0px;
  }

  /* help section */

  .industry_list .industry_item {
    max-width: 100%;
  }

  /* company */

  .company_right h4 {
    font-size: 22px;
    line-height: 1.25;
  }

  .company_right p {
    font-size: 16px;
    line-height: 1.25;
  }

  /* insights */

  .insights_list .insights_item {
    max-width: 100%;
  }

  .company_right .why_icon img {
    width: 100%;
    max-width: 30px;
    height: 30px;
  }

  .insights_content .insights_btn {
    margin-top: 24px;
  }

  .promotion-bar-content {
    padding: 16px 0;
  }

  .promotion-bar-content p {
    font-size: 16px;
    line-height: 1.25;
    gap: 16px;
  }

  /* testimonial */

  .user_info h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .user_info p {
    font-size: 16px;
    line-height: 20px;
  }

  /* contact form */

  .contact_heading h2 {
    font-size: 35px;
    line-height: 1.25;
  }
  .contact_heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .contact_right_form {
    padding: 30px 20px;
  }

  .contact_right_form .contact-item span input,
  .contact_right_form .contact-item span textarea,
  .contact_right_form .contact-item span select {
    padding: 14px 14px;
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (max-width: 480px) {
  .section_heading h2 {
    font-size: 24px;
    line-height: 40px;
  }
  .primary_btn {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 20px;
  }

  .main_banner .banner_content h1 {
    font-size: 35px;
    line-height: 50px;
  }

  .main_banner .banner_content p {
    font-size: 16px;
    line-height: 20px;
  }

  .about_counter .abt_count_item {
    max-width: 100%;
    padding: 0px;
  }
}

/* Footer */

footer {
  background-color: var(--bluish-purple);
}

.main-footer {
  padding: 40px 0px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ffffff1f;
}

.main-footer .row,
.footer_content {
  display: flex;
  align-items: start;
  /* justify-content: space-between; */
  gap: 20px;
  width: 100%;
  /* flex-wrap: wrap; */
}

.main-footer .row .col:first-child {
  width: 100%;
  max-width: 473px;
  padding: 41px 26px 48px 26px;
  border-right: 1px solid #ffffff1f;
}

.main-footer .row .col:not(:first-child) {
  padding: 41px 0px 48px 0px;
  flex: 0 0 20%;
}
.widget .widget-title {
  margin-bottom: 34px;
}

.widget-title {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1%;
  color: var(--white);
}

.widget-image {
  margin-bottom: 19px;
}

footer img {
  width: auto;
}

.footer_intro_text {
  margin-bottom: 40px;
}

.footer_social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff0d;
  border-radius: 50%;
}

.footer_social a img {
  width: 100%;
  max-width: 28px;
  height: 28px;
}

.newslertter_form .form_group br {
  display: none;
}
.newslertter_form .form_group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff0d;
  border-radius: 5px;
  padding: 8px 12px 8px 22px;
}

.newslertter_form .form_group span,
.newslertter_form .form_group span input {
  width: 100%;
}

.newslertter_form .form_group span input {
  background-color: transparent;
  border: none;
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 1%;
  color: var(--white);
  outline: none;
}

.newslertter_form .form_group button {
  background-color: var(--white);
  outline: none;
  border: none;
  border-radius: 5px;
  width: 100%;
  max-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newslertter_form .form_group button::after {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2025/09/send.svg");
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
}

.newslertter_form .form_group span input::placeholder {
  color: var(--white);
}

.wpcf7-spinner {
  display: none;
}

.thumbnail-widget {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 16px;
}

.footer_intro_text p,
.thumbnail-widget li a {
  font-family: var(--poppins);
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  color: var(--white);
}

.badge_signup .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  /* flex-wrap: wrap; */
}

.badge_signup .widget-title {
  margin-bottom: 20px;
}

.badge_signup .row .col .award_list {
  display: flex;
  gap: 20px;
}

.awrad_item {
  display: flex;
}

.row .col .award_list .awrad_item img {
  width: 100%;
  max-width: 114px;
  height: 114px;
  object-fit: cover;
}

.footer-copyright {
  background-color: var(--orange);
}

.footer-copyright .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0px;
}

.footer-copyright .row .col p {
  font-family: var(--poppins);
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
}

.footer-copyright .row .copright_links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-copyright .row .copright_links a {
  font-family: var(--white);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-decoration: underline;
  color: var(--white);
  cursor: pointer;
  text-transform: capitalize;
}

.footer-copyright .row .copright_links a:hover {
  color: var(--bluish-purple);
}

.newslertter_form .wpcf7 form.invalid .wpcf7-response-output,
.newslertter_form .wpcf7 form.unaccepted .wpcf7-response-output,
.newslertter_form .wpcf7 form.payment-required .wpcf7-response-output {
  color: var(--white);
}

.newslertter_form .form_group span.wpcf7-not-valid-tip {
  position: absolute;
  top: 160%;
}

@media screen and (max-width: 1199px) {
  .main-footer .row,
  .footer_content {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1024px) {
  .main-footer .row .col:first-child {
    padding: 41px 26px 48px 0px;
  }

  .badge_signup .row {
    flex-wrap: wrap;
    gap: 40px;
  }

  .newslertter_form .form_group p span input {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (max-width: 768px) {
  .main-footer .row {
    gap: 40px;
  }
  .main-footer .row .col:not(:first-child) {
    flex: 0 0 100%;
  }

  .main-footer .row .col:first-child {
    border-right: none;
  }

  .main-footer .row .col:first-child,
  .main-footer .row .col:not(:first-child) {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .widget .widget-title {
    margin-bottom: 20px;
  }

  .footer_intro_text p,
  .thumbnail-widget  li a {
    font-size: 16px;
    line-height: 20px;
  }
  .thumbnail-widget {
    gap: 10px;
  }
  .footer-copyright .row {
    padding: 10px 0px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-copyright .row .col p,
  .footer-copyright .row .copright_links a {
    font-size: 16px;
    line-height: 20px;
  }

  .widget-title {
    font-size: 20px;
    line-height: 24px;
  }

  .badge_signup .row .col .award_list {
    flex-wrap: wrap;
  }

  .row .col .award_list .awrad_item img {
    max-width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 575px) {
  .newslertter_form .form_group p span input {
    font-size: 16px;
    line-height: 24px;
  }

  .footer_social a img {
    width: 100%;
    max-width: 24px;
    height: 24px;
  }

  .footer_social a {
    width: 50px;
    height: 50px;
  }
}
