* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Zt Shago Font Initilize */
/* Bold */

@font-face {
  font-family: "ZT Shago";
  src: url("../fonts/ZtShago-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Lufga Font Initilize */
/* Light */
/* @font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
} */

/* Regular */
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* SemiBold */
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaSemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Lufga", "ZT Shago", sans-serif;
  scroll-behavior: smooth !important;
  overflow-x: hidden !important;
  background-color: #ffffff;
  /* #f2f2f2 */
}

/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f2f2f2;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(10, 10, 10, 0.3);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 10, 10, 0.4);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #000000;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.title {
  font-family: "ZT Shago";
  font-size: 56px;
  line-height: 64px;
  font-weight: 700;
  color: #3e3e3e;
  text-align: center;
}

.title2 {
  font-family: "ZT Shago";
  font-size: 54.5px;
  line-height: 62.4px;
  font-weight: 700;
  letter-spacing: -5px;
  color: #3e3e3e;
  text-align: center;
  text-transform: capitalize;
}

.sub_title {
  font-family: "Lufga";
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  color: #3e3e3e;
  text-transform: capitalize;
}
.sub_title2 {
  font-family: "ZT Shago";
  font-size: 2rem;
  line-height: 2.2rem;
  letter-spacing: normal;
  text-align: left;
}

.title span,
.text span,
.title2 span {
  color: #ff7f22;
}

.text {
  font-family: "Lufga";
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #000000;
}

.regular_text {
  font-family: "Lufga";
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  color: #000000;
}

.global_btn {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-transform: capitalize;
  color: #000000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  background-color: transparent;
  height: 47px;
  z-index: 1;
  transition: transform 0.3s ease;
}
.global_btn:hover {
  transform: scale(0.9);
}
.global_btn::after {
  content: "";
  /* background-image: url("../images/svg/btn-bg.svg"); */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bg_orange {
  background-color: #ff9d56 !important;
}
.bg_blue {
  background-color: #55ccff !important;
}
.bg_green {
  background-color: #c6ff2a !important;
}
.bg_yellow {
  background-color: #fbff47 !important;
}
.bg_pink {
  background-color: #fc5c66 !important;
}
.bg_purple {
  background-color: #4c7bed !important;
}

.quote_orange::before {
  background-image: url("../images/svg/quote1.svg") !important;
}
.quote_yellow::before {
  background-image: url("../images/svg/quote2.svg") !important;
}
.quote_blue::before {
  background-image: url("../images/svg/quote3.svg") !important;
}
.quote_green::before {
  background-image: url("../images/svg/quote4.svg") !important;
}

section,
header,
footer {
  max-width: 1920px;
  margin: 0 auto;
}

/* Header Start */
header {
  width: 100%;
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 9;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}
header.scroll-active,
header.dropdown-active {
  width: 100%;
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 9;
  transform: translateX(-50%);
}
header .main_navbarclass {
  /* height: 4rem; */
  margin: 0 auto;
  position: relative;
  padding: 12px;
  border-radius: 72px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 4px 30px;
  white-space: nowrap;
  transition: backdrop-filter 0.3s ease;
}
header.dropdown-active .main_navbarclass {
  border-radius: 2rem 2rem 0 0;
}
header.scroll-active .main_navbarclass,
header.dropdown-active .main_navbarclass {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 8;
}
header .logo {
  width: 100% !important;
  max-width: 150px !important;
  height: 50px !important;
}
header .logo img {
  width: 100% !important;
  max-width: 150px !important;
  height: 50px !important;
  object-fit: contain;
}
header nav.nav_links {
  display: flex;
}
header nav.nav_links ul {
  margin-right: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}
header nav.nav_links li {
  position: relative;
}
header nav.nav_links li::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #ff9d56;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 100%;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
header nav.nav_links li:hover:after,
header nav.nav_links li.active::after {
  transform: scale(1);
}
header nav.nav_links ul a {
  text-transform: capitalize;
}
header .global_btn,
.sideBar .global_btn {
  width: 134px;
}
header .global_btn::after,
.sideBar .global_btn::after {
  background-image: url("../images/svg/btn-bg.svg");
}
.hamburder_icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: none;
}
.hamburder_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Header End */

/* Dropdown Menu Start */
.dropdown_content {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0 0 40px 40px;
  z-index: 8;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header .dropdown_content.active {
  visibility: visible;
  opacity: 1;
}
.dropdown_content ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1rem;
  position: relative;
}
.dropdown_content li {
  border-radius: 31px;

  text-wrap: auto;
  overflow: hidden;
}
.dropdown_content a {
  padding: 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
  /* width: 287px;
  height: 354px; */
}
.dropdown_content .regular_text {
  line-height: 23px;
  font-weight: 400;
  text-transform: capitalize;
}
.dropdown_content h3.text {
  font-family: "Zt Shago";
  font-weight: 700;
}
.dropdown_content li div img:not(.dropdown_content li .bottom_icon img) {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.dropdown_content li .bottom_icon img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
/* Dropdown Menu End */

/* Home Banner Section Start */
.home_banner {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  transition: position 0.3s ease, box-sizing 0.3s ease;
}
.home_banner::before {
  content: "";
  background-image: url("../images/svg/banner_before.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 126px;
  height: 160px;
  position: absolute;
  top: 10%;
  left: 0;
}
.home_banner::after {
  content: "";
  background-image: url("../images/svg/banner_after.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 20%;
  right: 0;
}
.home_banner .title {
  margin-bottom: 10px;
}
.home_banner .sub_title {
  text-align: center;
  color: #55ccff;
}
.home_banner .scroller .buttons_group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  z-index: 2;
}
.home_banner .global_btn,
.about_banner_sec .global_btn {
  width: 168px;
}
.home_banner .global_btn:nth-child(1):after,
.about_banner_sec .global_btn:nth-child(1):after {
  background-image: url("../images/svg/get_touch.svg");
}
.home_banner .global_btn:nth-child(2):after,
.about_banner_sec .global_btn:nth-child(2):after {
  background-image: url("../images/svg/live.svg");
}
/* Home Banner Section End */

/* Banner slider Section Start */
.home_banner .scroller {
  width: 100%;
  height: 80vh; /* Allows scrolling for animation */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home_banner .slide-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: top;
  overflow: hidden;
  padding-block: 2rem;
}

.home_banner .slide {
  position: absolute;
  width: 412px;
  height: 452px;
  border-radius: 32px;
  border: 2px solid #000000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: rotate(0deg); /* Default rotation */
  transition: outline 0.3s ease;
}
.home_banner .slide .pack_div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  padding: 2rem 1.5rem;
  position: relative;
}
.home_banner .slide .pack_div img:not(.right_icon img) {
  width: 96px;
  height: 96px;
  margin-bottom: 0.5rem;
  object-fit: contain;
}

.home_banner .slide .pack_div .right_icon {
  transform: rotate(25deg);
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 20px;
  right: 30px;
}
.home_banner .slide .pack_div .right_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_banner .slide:nth-child(1) {
  background-color: #55ccff;
}
.home_banner .slide:nth-child(1) .pack_div img:not(.right_icon img) {
  transform: rotate(25deg);
}

.home_banner .slide:nth-child(2) {
  background: #c6ff2a;
}
.home_banner .slide:nth-child(2) .pack_div img:not(.right_icon img) {
  transform: rotate(5deg);
}

.home_banner .slide:nth-child(3) {
  background: #fbff47;
}
.home_banner .slide:nth-child(3) .pack_div img:not(.right_icon img) {
  transform: rotate(-5deg);
}

.home_banner .slide:nth-child(4) {
  background: #ff9d56;
}
.home_banner .slide:nth-child(4) .pack_div img:not(.right_icon img) {
  height: 73px;
  transform: rotate(-30deg);
}
.home_banner .slide:nth-child(5) {
  background: #fc5c66;
}
.home_banner .slide:nth-child(6) {
  background: #4c7bed;
}
.home_banner .slide:nth-child(6) .pack_div img:not(.right_icon img) {
  transform: rotate(15deg);
}
.home_banner .slide .pack_div::after {
  content: "";
  background-image: url("../images/svg/card_after.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -12%;
  right: -60px;
  transform: scale(0);
  transform-origin: center center;
  transition: transform 0.3s ease;
}
.home_banner .slide.outlined,
.home_banner .slide:hover {
  outline: 2px solid #000000;
  /* outline-offset: 3px; */
}
.home_banner .slide.outlined .pack_div::after,
.home_banner .slide:hover .pack_div::after {
  transform: scale(1);
}
/* Banner slider Section End */

/* Footer Section Start */
footer {
  background-color: #1f1f1f;
  padding: 5rem 68px 0;
}
.get_touch_sec + footer {
  padding-top: 170px;
}
footer .row:nth-child(1) {
  border-bottom: 1px solid #c6ff2a;
  padding-bottom: 30px;
}
footer .footer_content {
  display: flex;
  flex-direction: column;
  gap: 67px;
}
footer .footer_content .f_logo {
  width: 100%;
  max-width: 400px;
  height: 84px;
  object-fit: cover;
}
footer .footer_content .f_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .footer_content .sub_title {
  color: #fff;
  margin-bottom: 29px;
  font-family: "ZT Shago";
}
footer .text {
  color: #f2f2f2;
}

footer .global_btn {
  width: 168px;
}
footer .global_btn::after {
  background-image: url("../images/svg/footer_btn.svg");
}
.social_icons a,
.provenResults_cards_wrapper .provenResults_card .card_right a {
  transition: transform 0.3s ease;
}
.social_icons a:hover,
.provenResults_cards_wrapper .provenResults_card .card_right a:hover {
  transform: scale(0.9);
}
/* Footer Section End */

/* Get In Touch Section Start */
.get_touch_sec {
  position: relative;
  margin-bottom: -118px;
  padding: 10px 0 80px 0;
  background-color: #ffffff;
  border-radius: 0 0 60px 60px;
  z-index: 0;
  overflow: hidden !important;
}
.get_touch_sec::before,
.get_touch_sec::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  animation: rotation 20s linear infinite;
}
.get_touch_sec::before {
  background-image: url("../images/get_touct_before.png");
  width: 293px;
  height: 283px;
  bottom: 90px;
  left: -100px;
}
.get_touch_sec::after {
  background-image: url("../images/get_touct_after.png");
  width: 356px;
  height: 356px;
  top: 0;
  right: 0;
}
.get_touch_sec .title {
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}
.get_touch_sec .text:not(.form_div .text) {
  text-align: center;
  margin-bottom: 5rem;
  text-transform: capitalize;
}
.get_touch_sec .text span {
  font-weight: 600;
}
.get_touch_sec .form_div {
  position: relative;
  z-index: 2;
  padding: 40px;
  border-radius: 20px;
  background-color: #1f1f1f;
}
.get_touch_sec .form_div .global_btn {
  width: 134px;
}
.get_touch_sec .form_div .global_btn::after {
  background-image: url("../images/svg/submit_btn.svg");
}
.get_touch_sec .form_div input,
.get_touch_sec .form_div textarea {
  border: none;
  outline: none;
  font-size: 20px;
  line-height: 28px;
  color: #a0a0a0;
  padding: 14px 24px;
  border-radius: 10px;
  background-color: #ffffff;
  width: 100%;
}
/* Get In Touch Section End */

/* SEO Section Start */
.seo_sec {
  /* height: 200vh; */
  padding: 0 150px 112px;
  position: relative;
}
.seo_sec .title {
  margin-bottom: 500px;
}
.seo_sec .cards_wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(350px, 1fr));
  gap: 1.5rem;
  position: relative;
  /* overflow: hidden; */
}
.seo_sec .cards_wrapper .seo_card {
  background-color: #f9f9f9;
  padding: 2.5rem 2rem;
  border: 1px solid #000000;
  border-radius: 32px;
}
.seo_sec .cards_wrapper .seo_card:nth-child(2) {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: perspective(1200px) translateX(0) translateY(21px) scale(0.9874)
    rotateX(11.496deg);
  transform-origin: center center;
  transition: transform 0.3s ease;
}
.seo_sec .cards_wrapper .seo_card .card_top {
  margin-bottom: 40px;
}
.seo_sec .cards_wrapper .seo_card .card_top .card_logo {
  width: 100%;
  max-width: 150px;
  height: 60px;
}
.seo_sec .cards_wrapper .seo_card .card_top div:nth-child(1) {
  position: relative;
}
.seo_sec .cards_wrapper .seo_card .card_top div:nth-child(1)::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  width: 103px;
  height: 4px;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.seo_sec
  .cards_wrapper
  .seo_card:nth-child(2)
  .card_top
  div:nth-child(1)::after {
  background-image: url("../images/svg/seo_underline1.svg");
}
.seo_sec
  .cards_wrapper
  .seo_card:nth-child(1)
  .card_top
  div:nth-child(1)::after {
  background-image: url("../images/svg/seo_underline2.svg");
}
.seo_sec
  .cards_wrapper
  .seo_card:nth-child(3)
  .card_top
  div:nth-child(1)::after {
  background-image: url("../images/svg/seo_underline3.svg");
}
.seo_sec .cards_wrapper .seo_card .card_top .card_icon {
  width: 56px;
  height: 56px;
}
.seo_sec .cards_wrapper .seo_card .card_top .card_logo img,
.seo_sec .cards_wrapper .seo_card .card_top .card_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.seo_sec .cards_wrapper .seo_card .card_content ul li {
  position: relative;
  margin-bottom: 2rem;
  text-transform: capitalize;
}
.seo_sec .cards_wrapper .seo_card .card_content ul li::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  left: -2rem;
}
.seo_sec .cards_wrapper .seo_card.active {
  background-color: #ff9d56;
  border: 2px solid #000000;
}
.seo_sec .cards_wrapper .seo_card .card_content ul li.checked_icon::before {
  background-image: url("../images/svg/Checked_Circle2.svg");
}
.seo_sec .cards_wrapper .seo_card .card_content ul li.crossed_icon::before {
  background-image: url("../images/svg/Crossed_Circle.svg");
}
.seo_sec .cards_wrapper .seo_card.active .card_content ul li::before {
  background-image: url("../images/svg/Checked_Circle.svg") !important;
}
.seo_sec .cards_wrapper .seo_card .card_content ul {
  padding-left: 2rem;
}
/* SEO Section End */

/* Proven Results Section Start */
.proven_results_sec {
  position: relative;
  z-index: 5;
  padding: 63px 192px 0;
}
.proven_results_sec .title {
  margin-bottom: 1.5rem;
}
.provenResults_cards_wrapper {
  padding-top: 50px;
  --spacer: 30px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  justify-items: center;
  overflow-y: visible;
}
.provenResults_cards_wrapper::before {
  content: "";
  background-image: url("../images/svg/proven_result_before.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 286px;
  height: 286px;
  position: absolute;
  top: -65px;
  left: -160px;
  animation: rotation 20s linear infinite;
}
.provenResults_cards_wrapper .provenResults_card {
  width: 100%;
  padding: 2.5rem;
  border: 2px solid #000000;
  border-radius: 3rem;
  gap: 127px;
  position: absolute;
  grid-area: 1/1/2/2;
  will-change: transform;
}
.provenResults_cards_wrapper .provenResults_card:first-child {
  top: calc(var(--spacer) * 1);
  z-index: 1;
}
.provenResults_cards_wrapper .provenResults_card:nth-child(2) {
  top: calc(var(--spacer) * 2);
  z-index: 2;
}
.provenResults_cards_wrapper .provenResults_card:nth-child(3) {
  top: calc(var(--spacer) * 3);
  z-index: 3;
}
.provenResults_cards_wrapper .provenResults_card_1 {
  background-color: #ff9d56;
}
.provenResults_cards_wrapper .provenResults_card_2 {
  background-color: #55ccff;
}
.provenResults_cards_wrapper .provenResults_card_3 {
  background-color: #c6ff2a;
}

.provenResults_cards_wrapper .provenResults_card .card_left .c_img {
  width: 100%;
  max-width: 400px;
  height: 312px;
}
.provenResults_cards_wrapper .provenResults_card .card_left .c_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.provenResults_cards_wrapper .provenResults_card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  color: #000000;
}
.provenResults_cards_wrapper .provenResults_card h2 {
  font-family: "Zt Shago";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 64px;
  text-transform: capitalize;
  color: #000000;
}
.provenResults_cards_wrapper .provenResults_card .card_right h3 {
  margin-bottom: 1rem;
}
.provenResults_cards_wrapper .provenResults_card .card_right ul {
  padding-left: 2rem;
}
.provenResults_cards_wrapper .provenResults_card .card_right ul li {
  margin-bottom: 14px;
  position: relative;
}
.provenResults_cards_wrapper .provenResults_card .card_right ul li::before {
  content: "";
  background-image: url("../images/svg/Checked_Circle2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 26px;
  height: 22px;
  position: absolute;
  top: 0;
  left: -2rem;
}
.provenResults_cards_wrapper .provenResults_card .card_right a span {
  font-weight: 700;
  text-transform: capitalize;
}
.provenResults_cards_wrapper .provenResults_card .card_right a img {
  width: 32px;
  height: 32px;
}

/* Proven Results Section End */

/* Badge Start */
.badge_title {
  display: inline-block;
  padding: 17px 43px;
  background-color: #000000;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  border-radius: 5px;
  margin-bottom: 39px;
  text-transform: capitalize;
  text-wrap: nowrap;
}

.badge_title:before,
.badge_title:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  color: transparent;
}

.badge_title:before {
  left: 0;
  border-top: 31px solid transparent;
  border-bottom: 31px solid transparent;
  border-left: 21px solid #ff9d56;
}

.badge_title:after {
  right: 0;
  border-top: 31px solid transparent;
  border-bottom: 31px solid transparent;
  border-right: 21px solid #ff9d56;
}

.provenResults_cards_wrapper .provenResults_card_1 .badge_title:before {
  border-left-color: #ff9d56;
}
.provenResults_cards_wrapper .provenResults_card_1 .badge_title:after {
  border-right-color: #ff9d56;
}
.provenResults_cards_wrapper .provenResults_card_2 .badge_title:before {
  border-left-color: #55ccff;
}
.provenResults_cards_wrapper .provenResults_card_2 .badge_title:after {
  border-right-color: #55ccff;
}
.provenResults_cards_wrapper .provenResults_card_3 .badge_title:before {
  border-left-color: #c6ff2a;
}
.provenResults_cards_wrapper .provenResults_card_3 .badge_title:after {
  border-right-color: #c6ff2a;
}
/* Badge End */

/* Our Certifications Section Start */
.our_certifications_sec {
  position: relative;
  padding-block: 9rem;
}
.our_certifications_sec .title,
.client_reviews_sec .title {
  margin-bottom: 1.5rem;
}
.our_certifications_sec .title span {
  color: #0cb6ff;
}
.our_certifications_sec .title + .text,
.client_reviews_sec .title + .text {
  margin-bottom: 5rem;
}
.c_wrapper {
  padding: 0 68px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.c_wrapper .c_cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1.5rem;
}
.c_wrapper .c_cards div {
  border: 2px solid #000000;
  border-radius: 29px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: box-shadow 0.3s ease;
}
.c_wrapper .c_cards div:hover {
  box-shadow: 0 0 14px rgba(0, 0, 0, 1);
}
.c_wrapper .c_cards:nth-child(2) div:nth-child(1) img {
  margin-top: 29px;
}
.c_wrapper .c_cards:nth-child(2) div:nth-child(2) img {
  margin-top: 43px;
}
.c_wrapper .c_cards:nth-child(2) div:nth-child(4) img {
  margin-top: 56px;
}
.c_wrapper .c_cards div p.text {
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
}
/* Our Certifications Section End */

/* Clients Reviews Section Start */
.client_reviews_sec {
  position: relative;
  padding-bottom: 9rem;
}
.testimonial_wrapper {
  padding: 0 68px;
  display: grid;
  grid-template-columns: repeat(5, minmax(696px, 1fr));
  gap: 1.5rem;
  height: 450px;
  overflow: hidden;
}
.testimonial_wrapper .testimonial {
  position: relative;
  left: 0;
}
.testimonial .t_body {
  position: relative;
  padding: 40px 55px 40px 104px;
  background-color: #000000;
  border-radius: 50px;
  border-bottom-left-radius: 0;
}
.testimonial .t_body::before {
  content: "";
  width: 40px;
  height: 32px;
  position: absolute;
  top: 40px;
  left: 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.testimonial:nth-child(1) .t_body::before,
.testimonial:nth-child(4) .t_body::before {
  background-image: url("../images/svg/quote1.svg");
}
.testimonial:nth-child(2) .t_body::before,
.testimonial:nth-child(5) .t_body::before {
  background-image: url("../images/svg/quote2.svg");
}
.testimonial:nth-child(3) .t_body::before,
.testimonial:nth-child(6) .t_body::before {
  background-image: url("../images/svg/quote3.svg");
}
.testimonial .t_body .sub_title,
.testimonial .t_body .regular_text {
  color: #fff;
  margin-bottom: 1.5rem;
}
.testimonial .t_body .sub_title {
  font-size: 1.5rem;
  line-height: 2rem;
}
.testimonial .t_body .regular_text {
  line-height: 28px;
}
.rating_div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rating_div img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
.t_footer img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.t_footer div p {
  font-size: 18px;
  text-transform: capitalize;
}
.t_footer div p:nth-child(1) {
  font-weight: 600;
  color: #000000;
}
.t_footer div p:nth-child(2) {
  font-weight: 500;
  color: #8e8e8e;
}
.testimonial_wrapper .socialIcon_div {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.testimonial_wrapper .socialIcon_div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial_wrapper .testimonial a.sub_title {
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}
.testimonial_wrapper .testimonial a.sub_title:hover {
  color: #ff7f22;
}
/* Clients Reviews Section End */

/* Sidebar Navigation Menu Start */
.sideBar {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  transition: right 0.3s ease;
  z-index: 99;
  padding: 6rem 0 2rem 1rem;
}
.sideBar .dropdown_content {
  position: unset;
  transform: unset;
  background-color: #ffffff;
  padding: 0rem;
  padding-top: 1rem;
  visibility: visible;
  opacity: 1;
  display: none;
}
.sideBar .cancel_icon {
  width: 32px;
  height: 32px;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 2rem;
  right: 5%;
}
.sideBar .cancel_icon i {
  font-size: 1.5rem;
  opacity: 0.8;
}
.sideBar.active ul:not(.sideBar .dropdown_content ul) {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-right: 0;
  margin-bottom: 3rem;
  gap: 2rem;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 400px;
  padding-right: 1rem;
}
.sideBar li.dropdown_item {
  position: relative;
  width: 100%;
}
.sideBar li {
  width: fit-content;
}
.sideBar a.regular_text {
  font-size: 1.5rem;
}
.sideBar .cancel_icon {
  display: flex;
}
.no-scroll {
  overflow: hidden;
}
.sideBar.active {
  right: 0;
}
/* Sidebar Navigation Menu End */

/* Service Steps Page Start */
.steps_sec {
  position: relative;
  padding: 68px;
}
.steps_sec .container h1 {
  font-family: "Lufga";
  font-size: 64px;
  line-height: 72px;
  text-align: center;
  color: #000000;
  margin-bottom: 0.5rem;
  font-weight: 400;
  text-transform: capitalize;
}
.steps_sec .container h3 {
  font-family: "Lufga";
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #000000;
  margin-bottom: 2rem;
  font-weight: 400;
  text-transform: capitalize;
}
.steps_sec .container h2 {
  font-family: "Lufga";
  font-size: 42px;
  line-height: 40px;
  text-align: center;
  color: #000000;
  margin-bottom: 4rem;
  font-weight: 500;
  text-transform: capitalize;
}
.steps_wrapper .steps_items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.steps_wrapper .steps_items div {
  font-family: "Lufga";
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 500;
  width: 340px;
  height: 148px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: grid;
  place-content: center;
  text-align: center;
  text-transform: capitalize;
  overflow: hidden;
  padding: 36px 60px;
}
.steps_wrapper .steps_items div.yellow__bg {
  background-image: url("../images/svg/yellow__bg.svg");
}
.steps_wrapper .steps_items div.orange__bg {
  background-image: url("../images/svg/orange__bg.svg");
}
.steps_wrapper .steps_items div.blue__bg {
  background-image: url("../images/svg/blue__bg.svg");
}
.steps_wrapper .steps_items div.green__bg {
  background-image: url("../images/svg/Green__bg.svg");
}
.steps_wrapper .steps_items div.pink__bg {
  background-image: url("../images/svg/pink__bg.svg");
}
.steps_wrapper .steps_items div.purple__bg {
  background-image: url("../images/svg/purple__bg.svg");
}
.divider_wrapper {
  width: 100%;
  margin: 3rem 0;
}

.steps_wrapper {
  position: relative;
  width: 100%;
  height: auto; /* Allow wrapper height to adjust dynamically */
}

.steps_wrapper .steps_content {
  width: 100%;
  position: relative;
  overflow: hidden; /* Prevent content overflow */
  transition: height 0.3s ease; /* Smooth height adjustment */
}

.steps_wrapper .steps_content .steps {
  position: absolute;
  top: 0;
  left: 100%; /* Start off-screen */
  transform: translateX(0);
  width: 100%;
  height: auto; /* Let the height adjust based on content */
  transition: left 0.5s ease; /* Smooth horizontal movement */
}

.steps_wrapper .steps_content .steps.active {
  left: 0; /* Make active step visible */
}

.divider_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steps_sec .back_btn {
  font-family: "Lufga";
  font-size: 40px;
  line-height: 48px;
  text-transform: capitalize;
  color: #000000;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}
.steps_sec .back_btn img {
  width: 32px;
  height: 32px;
}
.steps_sec .continue_btn {
  width: 286px;
  height: 90px;
  background-image: url("../images/svg/continue_btn.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  outline: none;
  color: #000000;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
  transition: transform 0.3s ease;
}
.steps_content .badge_title {
  font-size: unset;
  margin-bottom: 0;
  text-align: end;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.steps_sec .back_btn:hover,
.steps_sec .continue_btn:hover,
.steps_content .badge_title:hover {
  transform: scale(0.9);
}

.steps_content .large_badge .badge_title {
  padding: 1.5rem 3rem;
}
.steps_content .small_badge .badge_title {
  padding: 16px 74px;
}
.steps_content .badge_title .sub_title {
  color: #000000;
  text-align: center;
}
.steps_content .large_badge .badge_title .sub_title {
  margin-bottom: 20px;
  text-wrap: wrap;
}
.steps_content .small_badge .badge_title .sub_title {
  margin-bottom: 0.5rem;
}
.steps_content .badge_title:before {
  left: -1px;
  border-top: 60px solid transparent;
  border-bottom: 70px solid transparent;
  border-left: 50px solid #ffffff;
}
.steps_content .badge_title:after {
  right: -1px;
  border-top: 50px solid transparent;
  border-bottom: 70px solid transparent;
  border-right: 35px solid #ffffff;
  overflow: hidden;
}
.steps_content .large_badge {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
  padding-inline: 1rem;
}
.steps_content .small_badge {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem 1.1rem;
  margin-bottom: 3rem;
  padding-inline: 1rem;
}
.step_form {
  margin-bottom: 3rem;
  padding-inline: 1rem;
}
.step_form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.step_form .input_type1,
.step_form .input_type2 {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step_form .input_type1 {
  background-image: url("../images/input_type1.png");
}
.step_form .input_type2 {
  background-image: url("../images/input_type2.png");
}
.step_form input,
.step_form input::placeholder {
  font-family: "Lufga";
  font-size: 30px;
  line-height: 38px;
  color: #000000;
  text-align: center;
}
.step_form input {
  width: 100%;
  height: 100%;
  /* padding: 2rem; */
  border: none;
  outline: none;
  background: transparent;
}
/* Service Steps Page End */

/* Services Inner Pages Start */
.services_banner_sec {
  position: relative;
  display: grid;
  place-content: center;
  padding: 124px 68px 150px;
}
.banner_inner_div .title img,
.banner_inner_div .img_box div img,
.banner_step_1 .title img,
.banner_step_3 img {
  width: 94px;
  height: 94px;
  object-fit: contain;
  object-position: center;
}
.banner_inner_div .title img,
.banner_step_1 .title img {
  margin-left: 1.5rem;
}
.banner_inner_div .img_box,
.banner_step .img_box {
  width: 412px;
  height: 452px;
  position: relative;
  margin-inline: auto;
}
.banner_inner_div
  .img_box
  img:first-child:not(.banner_inner_div .img_box div img),
.banner_step .img_box img:first-child:not(.banner_step .img_box div img) {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.banner_inner_div .img_box div,
.banner_step_3,
.banner_step .img_box div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services_banner_sec .step_form,
.banner_step_4 .step_form {
  margin-bottom: 0;
  padding-inline: 0;
}
.services_banner_sec .step_form form,
.banner_step_4 .step_form form {
  grid-template-columns: 1fr;
}
.services_banner_sec h2,
.banner_step h2 {
  font-family: "Zt Shago";
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.services_banner_sec .step_form .global_btn,
.banner_step_4 .step_form .global_btn {
  background-image: url("../images/svg/form_btn.svg");
  width: 148px;
}
.services_banner_sec .step_form input,
.services_banner_sec .step_form input::placeholder,
.banner_step_4 .step_form input,
.banner_step_4 .step_form input::placeholder {
  font-size: 20px;
  text-align: left;
  padding: 0 1rem;
}
.banner_inner_div .content_div,
.banner_step_4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}
.banner_inner_div .content_div {
  grid-template-columns: 1fr;
  margin: 0 0 1rem 0;
}
.banner_inner_div .center_content {
  order: 1;
}
.banner_inner_div .right_content {
  order: 2;
}
.banner_inner_div .left_content {
  order: 3;
}
.banner_inner_div .bottom_content ul,
.banner_step .bottom_content ul {
  margin-bottom: 3rem;
}
.banner_inner_div .bottom_content li img,
.banner_step .bottom_content li img {
  width: 100px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.banner_inner_div .bottom_content .buttons_group,
.banner_step .bottom_content .bottom_content .buttons_group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.banner_inner_div .bottom_content .buttons_group button:nth-child(1),
.banner_step .bottom_content .buttons_group button:nth-child(1) {
  background-image: url("../images/svg/services_btn1.svg");
  background-size: 100% 100%;
  width: 188px;
}
.banner_inner_div .bottom_content .buttons_group button:nth-child(2),
.banner_step .bottom_content .buttons_group button:nth-child(2) {
  background-image: url("../images/svg/services_btn2.svg");
  background-size: 100% 100%;
  width: 188px;
}
.banner_inner_div .bottom_content .buttons_group button i,
.banner_step .bottom_content .buttons_group button i {
  margin-right: 0.5rem;
}
.services_banner_steps {
  height: 275vh;
  padding: 0 68px 150px;
  --title-mb: 60px;
  --nav-h: 10px;
}

.services_banner_steps .banner_step {
  top: calc(var(--nav-h) + var(--title-mb));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  width: 100%;
  height: 89vh;
  background: transparent;
}

.services_banner_steps .banner_step_4 .img_box {
  opacity: 0;
}
/* .services_banner_steps .banner_step:last-child {
  height: fit-content;
} */

.freeDemo_sec {
  position: relative;
  padding-bottom: 9rem;
}
.freeDemo_sec::before,
.freeDemo_sec::after {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
  position: absolute;
}
.freeDemo_sec::before {
  background-image: url("../images/get_touct_before.png");
  left: 3%;
  top: 20%;
  transform: rotate(-15deg);
  animation: rotation 20s linear infinite;
}
.freeDemo_sec::after {
  background-image: url("../images/svg/banner_before.svg");
  right: 5%;
  top: 0;
  transform: rotate(153.65deg);
}
.freeDemo_sec p.text {
  margin-bottom: 0.5rem;
}
.freeDemo_sec .title,
.freeDemo_sec .title + div {
  margin-bottom: 1.9rem;
}
.freeDemo_sec .demo_input {
  background-image: url("../images/svg/free_demo_input.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  max-width: 472px;
  height: 100%;
  padding: 12px 26px;
  overflow: hidden;
}
.freeDemo_sec .demo_input input {
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.freeDemo_sec .global_btn {
  background-image: url("../images/svg/free_demo_btn.svg");
  width: 218px;
}
.freeDemo_sec .partners_images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.portfolio_sec {
  position: relative;
  padding: 0 68px 5rem;
}
.portfolio_sec .row .title {
  margin-bottom: 30px;
}
.portfolio_sec .row .text {
  margin-bottom: 60px;
}
.portfolio_content {
  width: 100%;
  height: 100%;
}
.portfolio_content .col-6:nth-child(2) {
  margin-top: 70px;
}
.portfolio_content .col-6:nth-child(3) {
  margin-top: 20px;
}
.portfolio_content .col-6:nth-child(4) {
  margin-top: -20px;
}
.portfolio_content .col-6 div {
  width: 100%;
  height: 270px;
}
.testimonial_banner_sec::before,
.testimonial_banner_sec::after,
.portfolio_content div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 33px;
  transition: box-shadow 0.3s ease;
}
.testimonial_banner_sec::before,
.testimonial_banner_sec::after {
  animation: rotation 20s linear infinite;
}
/* Rotation animation keyframes */
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.portfolio_content div img:hover {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.9);
}
/* Services Inner Pages End */

/* About Page Start */
.about_banner_sec {
  position: relative;
  padding: 7rem 0 9rem;
  overflow: hidden;
}
.about_banner_sec .title {
  position: relative;
  margin-bottom: 3rem;
}
.about_banner_sec .title::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 0;
  background-image: url("../images/svg/text_over_img.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
  transform: rotate(1deg);
  z-index: -1;
}
.about_banner_sec .banner_img {
  object-fit: contain;
}
.about_banner_sec .a_side_images {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: contain;
}
.about_banner_sec .a_side_images:nth-child(1) {
  left: -2rem;
  top: 10%;
}
.about_banner_sec .a_side_images:nth-child(2) {
  left: -4rem;
  bottom: 20%;
}
.about_banner_sec .a_side_images:nth-child(3) {
  right: -4rem;
  bottom: 30%;
}
.about_body_sec1,
.about_body_sec2,
.about_body_sec3,
.about_body_sec4 {
  position: relative;
  padding-bottom: 9rem;
}
.about_body_sec1 .title,
.about_body_sec2 .title {
  margin-bottom: 4rem;
  text-transform: capitalize;
}
.about_body_sec1 .global_btn {
  color: #fff;
  background-image: url("../images/svg/about_service_button.svg");
  width: 188px;
  height: 44px;
}
.about_body_sec1 .sub_title2 {
  margin-bottom: 1.25rem;
}
.about_body_sec1 .sub_title2 ~ .regular_text,
.about_body_sec2 .sub_title2 ~ .regular_text,
.about_body_sec4 .sub_title2 ~ .regular_text {
  color: #6d6d6d;
  text-transform: capitalize;
  font-weight: 600;
}
.about_body_sec1 .sub_title2 ~ .regular_text:nth-of-type(1) {
  margin-bottom: 0.5rem;
}
.about_body_sec1 .sub_title2 ~ .regular_text:nth-of-type(1) {
  margin-bottom: 2rem;
}
.about_body_sec1 .row .row {
  margin-bottom: 5rem;
}
.about_body_sec1 .row .row .col-6:nth-child(2) {
  position: relative;
}
.about_body_sec1 .row .row .col-6:nth-child(2)::after {
  content: "";
  position: absolute;
  left: -60px;
  top: -60px;
  background-image: url("../images/svg/about_service_arrow1.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 82px;
  height: 89px;
  z-index: -1;
  animation: arrowSign 2s linear infinite;
}
.about_body_sec1 .row .row:nth-child(2) .col-6:nth-child(2)::after,
.about_body_sec1 .row .row:nth-child(5) .col-6:nth-child(2)::after {
  left: 75%;
  top: -40px;
  background-image: url("../images/svg/about_service_arrow2.svg");
}
.about_body_sec1 .row .row:nth-child(3) .col-6:nth-child(2)::after,
.about_body_sec1 .row .row:nth-child(6) .col-6:nth-child(2)::after {
  left: -60px;
  top: -40px;
  background-image: url("../images/svg/about_service_arrow3.svg");
  width: 48px;
  height: 48px;
}
@keyframes arrowSign {
  0%,
  100% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(0);
  }
}
.about_body_sec1 .a_services_images {
  position: absolute;
  object-fit: contain;
}
.about_body_sec1 .a_services_images:nth-child(1) {
  top: 40%;
  left: 2rem;
}
.about_body_sec1 .a_services_images:nth-child(2) {
  bottom: 35%;
  right: 1rem;
}
.about_body_sec1 .a_services_images:nth-child(3) {
  bottom: 10%;
  right: -3rem;
  object-position: center;
}
.about_body_sec2 .title {
  text-align: left;
}
.about_body_sec2 .title span {
  color: #0cb6ff;
}
.about_clients {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background-color: #d6d6d6;
  padding: 5rem 10rem;
  box-shadow: 10px 10px 0 #000000;
}

.about_clients {
  position: relative;
}
.about_clients::before {
  content: "";
  position: absolute;
  background-image: url("../images/svg/banner_before.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 250px;
  height: 250px;
  left: -25%;
  bottom: 0;
  transform: rotate(153.65deg);
  z-index: -1;
}
.about_clients::after {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  background-image: url("../images/get_touct_after.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 250px;
  height: 250px;
  z-index: -1;
  animation: rotation 20s linear infinite;
}
.about_clients .title,
.blog_banner_sec .title {
  margin-bottom: 60px;
}
.about_body_sec4 .sub_title2 {
  margin-bottom: 1rem;
}
.about_body_sec4 .regular_text {
  margin-bottom: 1.5rem;
}
.about_body_sec4 .global_btn {
  background-size: 100% 100%;
  width: 168px;
}
.about_body_sec4 .global_btn:nth-child(1) {
  background-image: url(../images/svg/services_btn1.svg);
}
.about_body_sec4 .global_btn:nth-child(2) {
  background-image: url(../images/svg/services_btn2.svg);
}
.about_body_sec4::before {
  content: "";
  position: absolute;
  left: -4rem;
  top: 0;
  background-image: url("../images/svg/about_body_sec4_before.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 250px;
  height: 250px;
  z-index: -1;
}
.contact_us {
  background-color: transparent;
  margin-bottom: 0;
  padding-top: 5rem;
}
.contact_us + footer {
  padding-top: 5rem;
}
/* About Page End */

/* Blog Page Start */
.blog_banner_sec {
  position: relative;
  padding: 7rem 0 9rem;
  overflow: hidden;
}
.blog_banner_sec .banner_img_div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}
.blog_banner_sec .title + img {
  margin-bottom: 4rem;
}
.blogs_card {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 5rem;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.11);
  overflow: hidden;
}
.blogs_card .card_body {
  padding: 38px 40px 22px 43px;
}
.blogs_card .card_time,
.blogs_card .regular_text {
  color: #6d6d6d;
  margin-bottom: 1rem;
}
.blogs_card h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.44px;
  margin-bottom: 1rem;
}
.blogs_card h3,
.blogs_card .regular_text {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* Allows multiple lines */
  word-break: break-word;
}
.blogs_card .regular_text {
  -webkit-line-clamp: 3;
}
.blogs_card .card_img {
  width: 100%;
  height: 325px;
}
.blogs_card .card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_banner_sec + .title {
  position: relative;
  margin-bottom: 5rem;
}
.blog_banner_sec + .title::before {
  content: "";
  background-image: url("../images/blogs/outer_star.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 150px;
  position: absolute;
  left: 17%;
  top: -2.5rem;
  animation: rotation 20s linear infinite;
}
/* Blog Page End */

/* Testimonial Page Start */
.testimonial_banner_sec {
  position: relative;
  padding: 7rem 0 9rem;
  overflow: hidden;
}
.testimonial_banner_sec::before,
.testimonial_banner_sec::after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 250px;
  position: absolute;
}
.testimonial_banner_sec::before {
  background-image: url("../images/svg/star_blue.svg");
  left: -100px;
  bottom: 5%;
}
.testimonial_banner_sec::after {
  background-image: url("../images/svg/star_orange.svg");
  right: -100px;
  top: 5%;
}
.testimonial_banner_sec .title {
  margin-bottom: 60px;
}
.testimonial_banner_sec .testimonial_banner_img {
  position: relative;
  width: 100%;
  height: 550px;
}
.testimonial_banner_sec .testimonial_banner_img img {
  object-fit: contain;
  object-position: center;
}
.testimonial_banner_sec .testimonial_banner_img::before,
.testimonial_banner_sec .testimonial_banner_img::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 100px;
  transform: rotate(15deg);
  animation: arrowDirection 2s infinite ease-in-out;
}
.testimonial_banner_sec .testimonial_banner_img::before {
  background-image: url("../images/svg/testimonial_banner_before.svg");
  top: 42%;
  left: 28%;
}
.testimonial_banner_sec .testimonial_banner_img::after {
  background-image: url("../images/svg/testimonial_banner_after.svg");
  top: 20%;
  right: 26%;
}
@keyframes arrowDirection {
  0% {
    transform: rotate(15deg) translateX(0);
  }
  50% {
    transform: rotate(15deg) translateX(10px);
  }
  100% {
    transform: rotate(15deg) translateX(0);
  }
}
.our_work_sec {
  position: relative;
  padding-bottom: 9rem;
}
.our_work_sec::after {
  content: "";
  background-image: url("../images/svg/star_green.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 150px;
  height: 150px;
  position: absolute;
  right: 20%;
  top: -90px;
  animation: rotation 20s linear infinite;
}
.our_work_sec .title {
  margin-bottom: 2rem;
}
.our_work_sec .title + .text {
  /* font-weight: bold; */
  color: #000000;
  margin-bottom: 4rem;
}
.testimonial_cards {
  width: 100%;
  height: 100%;
}
.testimonial_cards {
  border-radius: 50px 50px 0 50px;
  overflow: hidden;
}
.testimonial_cards .card_header {
  position: relative;
  background-color: #000000;
  padding: 2rem 2.3rem 2.3em 4.1rem;
}
.testimonial_cards .card_header .sub_title {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.34px;
  color: #fff;
  margin-bottom: 1rem;
}
.testimonial_cards .card_header::before {
  content: "";
  width: 38px;
  height: 24px;
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonial_cards .card_header .regular_text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  font-size: 0.9rem;
  line-height: 1.2rem;
  letter-spacing: -0.34px;
  color: #dadada;
  margin-bottom: 1rem;
}
.testimonial_cards .card_footer {
  padding: 78px 2.5rem 2.5rem;
}
.testimonial_cards .card_footer p {
  color: #000000 !important;
}
.testimonial_cards .card_footer p:nth-child(2) {
  font-size: 1rem !important;
}
/* Testimonial Page End */

/* Portfolio Page Start */
.portfolio_banner_sec {
  position: relative;
  overflow: hidden;
  padding: 13rem 0 9rem;
}
.portfolio_banner_sec::before,
.portfolio_banner_sec::after {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  animation: rotation 20s linear infinite;
}
.portfolio_banner_sec::before {
  background-image: url("../images/svg/star_blue.svg");
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 20px;
}
.portfolio_banner_sec::after {
  background-image: url("../images/svg/star_green.svg");
  width: 200px;
  height: 200px;
  top: 10%;
  right: 20%;
}
.portfolio_banner_sec .sub_title {
  position: relative;
  color: #ff7f22;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
.portfolio_banner_sec .sub_title::after {
  content: "";
  width: 128px;
  height: 11px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../images/portfolio/heading_underling.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.portfolio_banner_sec .title {
  font-size: 64px;
  margin-bottom: 1.5rem;
}
.portfolio_banner_sec .text,
.portfolio_body_sec1 .text {
  /* font-weight: 700; */
  color: #000000;
}
.portfolio_banner_sec .p_banner_img {
  position: absolute;
  z-index: -1;
  animation: imageSize 10s infinite ease-in-out;
}
@keyframes imageSize {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
}
.portfolio_banner_sec .p_banner_img:nth-child(1) {
  top: 12%;
  left: 14%;
  animation-delay: 2;
}
.portfolio_banner_sec .p_banner_img:nth-child(2) {
  top: 44%;
  right: 17%;
  animation-delay: 4;
}
.portfolio_banner_sec .p_banner_img:nth-child(3) {
  bottom: 26.5%;
  left: 22.2%;
}
.portfolio_body_sec1 {
  position: relative;
  padding-bottom: 9rem;
  overflow: hidden;
}
.portfolio_body_sec1 .title {
  margin-bottom: 1.9rem;
}
.portfolio_body_sec1 .title + .text {
  margin-bottom: 2rem;
}
.portfolio_inner_wrapper {
  background-color: #ff7f22;
  box-shadow: 0 -6px 50px rgba(0, 0, 0, 0.11);
  padding: 5rem 0;
  height: 100vh;
  display: flex !important;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.portfolio_inner_wrapper img {
  object-fit: cover;
}
.portfolio_inner_wrapper .sub_title {
  margin-bottom: 1.25rem;
}
.portfolio_inner_wrapper .text {
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.portfolio_inner_wrapper .sub_title,
.portfolio_inner_wrapper .text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  color: #fff;
}
.portfolio_inner_wrapper .title2 {
  letter-spacing: 0;
}
.p_logoDesign img {
  border-radius: 3rem;
}
.portfolio_inner_wrapper.first_child {
  position: relative;
}
.portfolio_inner_wrapper.first_child::before,
.portfolio_inner_wrapper.first_child::after {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 350px;
  height: 350px;
  z-index: 0;
}
.portfolio_inner_wrapper.first_child::before {
  background-image: url("../images/svg/star_green.svg");
  bottom: 10%;
  left: 0;
}
.portfolio_inner_wrapper.first_child::after {
  background-image: url("../images/svg/star_yellow.svg");
  top: 5%;
  left: 100%;
}
.portfolio_body_sec1 + .portfolio_sec .portfolio_content:not(:last-child) {
  margin-bottom: 5rem;
}
/* Portfolio Page End */

/* privacy policy page start */
.privacy_policy_sec {
  position: relative;
  padding: 7rem 4rem 5rem;
}
.privacy_policy_sec .title2 {
  letter-spacing: 0;
  text-align: left;
}
.privacy_policy_sec p,
.privacy_policy_sec li {
  color: #6d6d6d;
  font-weight: 400;
}
.privacy_policy_sec a {
  color: #1b91ff;
  font-weight: 600;
  text-decoration: underline;
}
.mb_30 {
  margin-bottom: 30px;
}
.mb_20 {
  margin-bottom: 20px;
}
.mb_16 {
  margin-bottom: 16px;
}
.mb_10 {
  margin-bottom: 10px;
}
.privacy_policy_sec h1:not(.privacy_contect_info h1.title2) {
  position: relative;
  width: fit-content;
  margin: 0 auto 5rem;
  text-align: center !important;
}
.privacy_policy_sec h1:not(.privacy_contect_info h1.title2):after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  width: 240px;
  height: 4px;
  background-color: #aee80f;
}
.privacy_policy_sec hr {
  color: #000;
  margin: 20px 0 30px;
}
.privacy_policy_sec h3.title2 {
  font-size: 2rem;
  line-height: 2.5rem;
}
.privacy_policy_sec h5 {
  font-weight: 600;
  color: #3e3e3e;
}
.privacy_policy_sec ul {
  padding-left: 1rem;
}
.privacy_policy_sec ul li {
  list-style-type: disc;
}
.privacy_policy_sec .content_wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 3rem;
}
.privacy_policy_sec .inner_content {
  display: flex;
  /* justify-content: space-between; */
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.privacy_policy_sec .inner_content h5 {
  flex-basis: 100%;
}
.privacy_policy_sec .content_wrapper2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}
.privacy_contect_info h1.title2 {
  text-align: left;
  color: #ff7f22;
  margin: 0 0 10px;
}
/* privacy policy page end */

.banner_step_1 .title {
  font-size: 4rem;
}
.seo_sec .title2,
.portfolio_sec .title2 {
  letter-spacing: 0;
}
.seo_sec .title2 span {
  color: #0cb6ff;
}
.portfolio_body_slider .slick-dots {
  bottom: -35px;
}
.portfolio_body_slider .slick-dots li button:before {
  font-size: 10px;
  color: #ff7f22;
  opacity: 0.5;
}
.portfolio_body_slider .slick-dots li.slick-active button:before {
  font-size: 18px;
  opacity: 1;
}

.seo_sec .seo_star_images {
  position: absolute;
}
.seo_sec .seo_star_images:nth-child(1) {
  left: 10%;
  top: 10%;
}
.seo_sec .seo_star_images:nth-child(2) {
  left: 50%;
  top: 17%;
  transform: translateX(-50%);
}
.seo_sec .seo_star_images:nth-child(3) {
  right: 10%;
  top: 35%;
}

.rotate_img {
  transform: rotate(15deg);
}
.comm_heading {
  font-size: 2.8rem;
  line-height: 3rem;
}
.color_blue {
  color: #55ccff !important;
}

.dropdown_content ul li h3.text {
  text-transform: capitalize;
}
.client_reviews_sec .testimonial .sub_title,
.client_reviews_sec .testimonial .regular_text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
}
.client_reviews_sec .testimonial .regular_text {
  -webkit-line-clamp: 3;
}

/* Media Queries Start */
@media (max-width: 1800px) {
  .seo_sec .title {
    margin-bottom: 550px;
  }
}

@media (max-width: 1600px) {
  .seo_sec .cards_wrapper .seo_card {
    padding: 1.5rem 1rem;
  }
  .seo_sec .cards_wrapper .seo_card .card_content ul li {
    margin-bottom: 1rem;
  }
  .text {
    font-size: 18px;
    line-height: 24px;
  }
  .seo_sec .title {
    margin-bottom: 400px;
  }
  .provenResults_cards_wrapper {
    padding-top: 50px;
    --spacer: 20px;
  }
  .provenResults_cards_wrapper .provenResults_card {
    gap: 2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 1500px) {
  .privacy_policy_sec .content_wrapper {
    grid-template-columns: repeat(1, minmax(320px, 1fr));
    gap: 1rem;
  }.privacy_policy_sec .content_wrapper2{
    gap: 1rem;
  }
}

@media (max-width: 1400px) {
  .seo_sec .title {
    margin-bottom: 520px;
  }
  .steps_content .large_badge .badge_title {
    padding: 1rem 3.5rem;
  }
  .seo_sec {
    padding: 0 68px 112px;
  }
}

@media (max-width: 1199px) {
  .seo_sec .title {
    margin-bottom: 575px;
  }
  .title {
    font-size: 42px !important;
    line-height: 50px;
  }
  .title2 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -4px;
  }
  .sub_title {
    font-size: 24px;
    line-height: 32px;
  }
  /* .home_banner .scroller {
    height: 100%;
  } */
  /* .home_banner .slide-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 1rem 68px;
  } */
  /* .home_banner .slide {
    position: static;
    width: 100%;
    height: 362px;
  } */
  .home_banner::after,
  .home_banner::before {
    top: 4%;
  }
  .home_banner .slide:nth-child(3) .pack_div::after {
    width: 80px;
    height: 80px;
    top: -12%;
    right: -50px;
  }
  /* .home_banner .scroller .buttons_group {
    position: relative;
    left: 50%;
    bottom: 0;
    transform: translateX(0%);
  } */
  /* .home_banner .slide:nth-child(2) .pack_div img:not(.right_icon img) {
    transform: rotate(10deg);
  }
  .home_banner .slide:nth-child(3) .pack_div img:not(.right_icon img) {
    transform: rotate(-10deg);
  }
  .home_banner .slide:nth-child(4) .pack_div img:not(.right_icon img) {
    transform: rotate(-33deg);
  } */
  .proven_results_sec {
    padding: 0 3rem 0;
  }
  .proven_results_sec .title,
  .our_certifications_sec .title,
  .client_reviews_sec .title,
  .get_touch_sec .title,
  footer .footer_content .sub_title,
  .testimonial .t_body .sub_title,
  .testimonial .t_body .regular_text {
    margin-bottom: 1rem;
  }
  /* .seo_sec .title, */
  .proven_results_sec .title + .text,
  .our_certifications_sec .title + .text,
  .client_reviews_sec .title + .text,
  .get_touch_sec .text:not(.form_div .text) {
    margin-bottom: 2.5rem;
  }
  .seo_sec .cards_wrapper .seo_card:nth-child(2) {
    transform: unset;
  }
  .provenResults_cards_wrapper .slick-list.draggable {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .provenResults_cards_wrapper .slick-dots {
    bottom: -35px;
  }
  .provenResults_cards_wrapper .slick-dots li button:before {
    font-size: 10px;
    color: #ff7f22;
    opacity: 0.5;
  }
  .provenResults_cards_wrapper .slick-dots li.slick-active button:before {
    font-size: 18px;
    opacity: 1;
  }
  .provenResults_cards_wrapper .provenResults_card {
    position: unset;
    z-index: unset;
  }
  .provenResults_cards_wrapper::before {
    width: 186px;
    height: 186px;
    top: -32px;
    left: -100px;
  }
  .testimonial_wrapper {
    /* padding: 0 15rem;
    grid-template-columns: repeat(1, minmax(520px, 1fr));
    gap: 2rem; */
    height: 350px;
  }
  .client_reviews_sec,
  .our_certifications_sec,
  .proven_results_sec,
  .seo_sec,
  .home_banner,
  .get_touch_sec {
    padding-bottom: 5rem !important;
  }
  .our_certifications_sec,
  .seo_sec {
    padding-top: 0;
  }
  .get_touch_sec::before {
    width: 150px;
    height: 150px;
    bottom: 70px;
    left: -30px;
    z-index: -1;
  }
  .get_touch_sec::after {
    width: 150px;
    height: 150px;
    top: 15%;
    z-index: -1;
  }
  .seo_sec .cards_wrapper {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  footer .footer_content {
    gap: 2rem;
  }
  .testimonial .t_body {
    padding: 2rem 2rem 2rem 4rem;
  }
  .testimonial .t_body::before {
    width: 30px;
    height: 20px;
    top: 25px;
    left: 25px;
  }
  .rating_div img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
  .testimonial .t_body .regular_text {
    line-height: 24px;
  }
  .t_footer div p {
    font-size: 16px;
  }
  .testimonial_wrapper .slick-slide {
    margin-inline: 1rem;
  }
  .provenResults_cards_wrapper .provenResults_card h3 {
    font-size: 20px;
  }
  .provenResults_cards_wrapper .provenResults_card h2 {
    font-size: 2rem;
    line-height: 44px;
  }
  .badge_title {
    padding: 1rem 2rem;
    font-size: 20px;
    margin-bottom: 2rem;
  }
  .c_wrapper .c_cards div {
    padding: 2rem;
    height: 300px;
    justify-content: space-around;
  }
  .c_wrapper .c_cards:nth-child(2) div:nth-child(1) img,
  .c_wrapper .c_cards:nth-child(2) div:nth-child(2) img,
  .c_wrapper .c_cards:nth-child(2) div:nth-child(4) img {
    margin-top: 0;
  }
  .c_wrapper .c_cards div img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
    margin: 0;
  }
  .steps_sec {
    padding: 3rem 1rem;
  }
  .steps_wrapper .steps_items div {
    font-size: 1.5rem;
    line-height: 2rem;
    width: 250px;
    height: 120px;
    padding: 1rem 2rem;
  }
  .steps_content .large_badge .badge_title .sub_title {
    margin-bottom: 1rem;
  }
  .forward_icon,
  .steps_sec .back_btn img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .forward_icon {
    margin-left: auto;
  }
  .forward_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .steps_sec .back_btn {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .divider_wrapper {
    margin: 2rem 0;
  }
  .steps_sec .container h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .steps_sec .container h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
  .steps_sec .container h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 3rem;
  }
  .steps_content .large_badge {
    margin-bottom: 2rem;
  }
  .steps_sec .continue_btn {
    width: 200px;
    height: 65px;
    background-size: contain;
  }
  .about_clients::before,
  .about_clients::after,
  .about_body_sec4::before,
  .blog_banner_sec + .title::before,
  .testimonial_banner_sec::before,
  .testimonial_banner_sec::after,
  .our_work_sec::after,
  .portfolio_banner_sec::before,
  .portfolio_banner_sec::after,
  .about_banner_sec .title::after,
  .portfolio_inner_wrapper.first_child::before,
  .portfolio_inner_wrapper.first_child::after {
    content: unset;
  }
  .about_banner_sec .a_side_images,
  .about_body_sec1 .a_services_images,
  .freeDemo_sec::before,
  .freeDemo_sec::after,
  .portfolio_banner_sec .p_banner_img {
    display: none;
  }
  .testimonial_banner_sec .testimonial_banner_img img,
  .testimonial_banner_sec .testimonial_banner_img {
    height: 350px;
  }
  .portfolio_body_sec1 .title + .text {
    margin-bottom: 1rem;
  }
  .portfolio_inner_wrapper img[alt="star"] {
    width: 4rem;
    height: 4rem;
  }
  .portfolio_inner_wrapper img {
    width: 100%;
    object-fit: contain;
  }
  .portfolio_inner_wrapper img[alt="Animation"],
  .portfolio_inner_wrapper img[alt="Website"] {
    height: 350px;
  }
  .portfolio_inner_wrapper img[alt="Logo Design"] {
    height: 200px;
  }
  .portfolio_inner_wrapper {
    height: 80vh;
  }
  .c_wrapper .c_cards {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
  .testimonial_banner_sec .testimonial_banner_img::before,
  .testimonial_banner_sec .testimonial_banner_img::after {
    width: 65px;
    height: 65px;
    transform: rotate(13deg);
  }
  .testimonial_banner_sec .testimonial_banner_img::before {
    top: 42%;
    left: 28%;
  }
  .testimonial_banner_sec .testimonial_banner_img::after {
    top: 18%;
    right: 28%;
  }
  .dropdown_content ul {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 1143px) {
  .seo_sec .seo_star_images:nth-child(1) {
    left: 5%;
    top: 5%;
  }
  .seo_sec .seo_star_images:nth-child(2) {
    top: 13%;
  }
  .seo_sec .seo_star_images:nth-child(3) {
    right: 5%;
    top: 30%;
  }
}
@media (max-width: 991px) {
  .seo_sec .seo_star_images {
    display: none;
  }
  .home_banner .scroller {
    height: 100%;
    justify-content: start;
  }
  .home_banner .slide {
    width: 100%;
    max-width: 320px;
    height: 362px;
  }
  .home_banner .scroller .buttons_group {
    bottom: -15%;
  }
  .testimonial_wrapper {
    padding: 0 15rem;
    grid-template-columns: repeat(1, minmax(350px, 1fr));
    gap: 2rem;
    height: 100%;
  }
  .seo_sec .cards_wrapper {
    grid-template-columns: repeat(1, minmax(320px, 1fr));
    padding-inline: 5rem;
  }
  .seo_sec .cards_wrapper .slick-slide {
    padding-inline: 0.5rem;
  }
  .seo_sec .cards_wrapper .slick-next:before,
  .seo_sec .cards_wrapper .slick-prev:before {
    color: #0cb6ff;
  }
  .seo_sec .cards_wrapper .custom_arrow {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    outline: none;
    background-color: transparent;
    color: #ff7f22;
    cursor: pointer;
  }
  button.custom_arrow.prev.slick-arrow {
    left: 35%;
    transform: translateX(20px);
    animation: leftArrow 1.5s ease-in-out infinite alternate;
  }
  button.custom_arrow.next.slick-arrow {
    left: 55%;
    transform: translateX(-20px);
    animation: rightArrow 1.5s ease-in-out infinite alternate;
  }
  /* Left Arrow animation keyframes */
  @keyframes leftArrow {
    0% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(0);
    }
  }
  /* Right Arrow animation keyframes */
  @keyframes rightArrow {
    0% {
      transform: translateX(-10px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .seo_sec .title {
    margin-bottom: 2.5rem !important;
  }
  .testimonial_wrapper {
    padding: 0 8rem;
  }
  footer .footer_content {
    gap: 1rem;
  }
  footer .social_icons a {
    width: 32px;
    height: 32px;
  }
  footer .social_icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  header nav.nav_links,
  header .dropdown_content {
    display: none;
  }
  .hamburder_icon {
    display: block;
  }
  .steps_wrapper .steps_items {
    gap: 1rem;
  }
  .steps_wrapper .steps_items div {
    font-size: 1.3rem;
    line-height: 1.5rem;
    width: 210px;
    height: 100px;
    padding: 1rem 2rem;
  }
  .services_banner_sec h2,
  .banner_step h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .services_banner_sec {
    padding: 7rem 1rem 3rem;
  }
  .about_clients {
    padding: 2rem 2rem;
    box-shadow: 5px 5px 0 #000000;
  }
  .about_banner_sec,
  .about_body_sec1,
  .about_body_sec2,
  .about_body_sec3,
  .about_body_sec4 {
    padding-bottom: 5rem;
  }
  .about_banner_sec .title {
    margin-bottom: 2rem;
  }
  .about_banner_sec .banner_img {
    height: 300px;
  }
  /* .about_banner_sec {
    padding-top: 2rem;
  } */
  h1.title br {
    display: none;
  }
  .about_body_sec1 .title,
  .about_body_sec2 .title {
    margin-bottom: 2rem;
  }
  .blogs_card .card_body {
    padding: 1.4rem 1rem;
  }
  .blog_banner_sec .title + img {
    margin-bottom: 3rem;
    height: 350px;
  }
  .blog_banner_sec .title {
    margin-bottom: 2rem;
  }
  .blogs_card {
    border-radius: 3rem;
  }
  .testimonial_banner_sec .title {
    margin-bottom: 1rem;
  }
  .our_work_sec .title {
    margin-bottom: 1rem;
  }
  .our_work_sec .title + .text {
    margin-bottom: 2rem;
  }
  .testimonial_cards .card_footer {
    padding: 2rem 1rem;
  }
  .testimonial_cards .card_header {
    padding: 1.5rem 1rem 1.5em 3rem;
  }
  .testimonial_cards .card_header::before {
    width: 1.5rem;
    height: 1rem;
    top: 1.5rem;
    left: 1.1rem;
  }
  .testimonial_banner_sec .testimonial_banner_img::before {
    top: 42%;
    left: 25%;
  }
  .testimonial_banner_sec .testimonial_banner_img::after {
    top: 22%;
    right: 25%;
  }
}

@media (max-width: 767px) {
  .home_banner .scroller .buttons_group {
    transform: translateX(-50%);
  }
  .testimonial_wrapper,
  .home_banner .slide-container,
  .seo_sec,
  .c_wrapper,
  .get_touch_sec,
  .proven_results_sec {
    padding-inline: 2rem;
  }

  .home_banner .slide-container,
  .seo_sec .cards_wrapper {
    grid-template-columns: 1fr;
  }
  .home_banner .slide {
    width: 300px;
    height: 300px;
    margin-inline: auto;
  }

  .c_wrapper .c_cards {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
  .c_wrapper .c_cards div {
    width: 100%;
    height: 100%;
    margin-inline: auto;
  }
  .seo_sec .title,
  .proven_results_sec .title + .text,
  .our_certifications_sec .title + .text,
  .client_reviews_sec .title + .text,
  .get_touch_sec .text:not(.form_div .text) {
    margin-bottom: 1.5rem;
  }
  .provenResults_cards_wrapper {
    padding-top: 0;
    --spacer: 0;
  }
  .title {
    font-size: 2rem !important;
    line-height: 2.5rem;
  }
  .text,
  .get_touch_sec .form_div input,
  .get_touch_sec .form_div textarea {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .title2 {
    font-size: 1.9rem;
    line-height: 2rem;
    letter-spacing: -2px;
  }
  .home_banner .slide .pack_div img:not(.right_icon img) {
    width: 60px;
    height: 60px;
  }
  .home_banner .slide .pack_div .right_icon {
    width: 20px;
    height: 20px;
  }
  .home_banner .slide .pack_div {
    padding: 1rem;
  }
  .client_reviews_sec,
  .our_certifications_sec,
  .proven_results_sec,
  .seo_sec,
  .home_banner,
  .freeDemo_sec,
  .portfolio_sec,
  .about_banner_sec,
  .about_body_sec1,
  .about_body_sec2,
  .about_body_sec3,
  .about_body_sec4,
  .blog_banner_sec,
  .testimonial_banner_sec,
  .our_work_sec,
  .portfolio_banner_sec,
  .portfolio_body_sec1 {
    padding-bottom: 3rem;
  }
  .provenResults_cards_wrapper .provenResults_card .card_left .c_img {
    max-width: 250px;
    height: 200px;
  }
  .provenResults_cards_wrapper .provenResults_card .card_right ul li {
    margin-bottom: 0.5rem;
  }
  .provenResults_cards_wrapper .provenResults_card .card_left {
    text-align: center;
  }
  .badge_title {
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .provenResults_cards_wrapper .provenResults_card .card_right h3 {
    margin-bottom: 0;
  }
  .provenResults_cards_wrapper .provenResults_card {
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 2px;
  }
  .steps_sec .container h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .steps_sec .container h3 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .steps_sec .container h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
  .steps_content .large_badge .badge_title .sub_title {
    margin-bottom: 0rem;
    font-size: 18px;
    line-height: 24px;
  }
  .steps_content .large_badge .badge_title {
    padding: 1rem 2rem;
  }
  .steps_wrapper .steps_items div {
    font-size: 1.1rem;
    line-height: 1.3rem;
    width: 165px;
    height: 70px;
    padding: 1rem 1.3rem;
  }
  .steps_sec .back_btn {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .forward_icon,
  .steps_sec .back_btn img {
    width: 1.2rem;
    height: 1.2rem;
  }
  .steps_content .badge_title:before {
    border-top: 40px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #ffffff;
  }
  .steps_content .badge_title:after {
    border-top: 30px solid transparent;
    border-bottom: 50px solid transparent;
    border-right: 25px solid #ffffff;
  }
  .steps_content .small_badge {
    gap: 1.5rem 1rem;
    margin-bottom: 2rem;
    padding-inline: 0;
  }
  .steps_content .small_badge .badge_title {
    padding: 1rem 2rem;
  }
  .steps_content .small_badge .badge_title .sub_title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
  }
  .steps_sec .continue_btn {
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
  .steps_content .small_badge {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
  .get_touch_sec {
    padding-bottom: 2rem;
  }
  .step_form {
    margin-bottom: 2rem;
    padding-inline: 0;
  }
  .step_form input,
  .step_form input::placeholder {
    font-size: 20px;
    line-height: 26px;
  }
  .banner_inner_div .img_box,
  .banner_step .img_box {
    width: 285px;
    height: 310px;
  }
  .services_banner_sec .step_form form,
  .banner_inner_div .bottom_content .buttons_group {
    gap: 1rem;
  }
  .services_banner_sec .step_form input {
    font-size: 1rem;
  }
  .banner_inner_div .bottom_content ul {
    margin-bottom: 1rem;
  }
  .portfolio_sec {
    padding-inline: 0;
  }
  .portfolio_content .col-6:nth-child(2),
  .portfolio_content .col-6:nth-child(3),
  .portfolio_content .col-6:nth-child(4) {
    margin-top: 0;
  }
  .about_body_sec1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .about_body_sec1 .row .row .col-6:nth-child(2)::after {
    content: unset;
  }
  .about_clients {
    padding: 2rem 1rem;
  }
  .blog_banner_sec + .title {
    margin-bottom: 3rem;
  }
  .testimonial_banner_sec .testimonial_banner_img img,
  .testimonial_banner_sec .testimonial_banner_img {
    height: 200px;
  }
  .portfolio_banner_sec {
    padding-top: 7rem;
  }
  .portfolio_banner_sec .title {
    margin-bottom: 0.5rem;
  }
  .portfolio_banner_sec .sub_title {
    margin-bottom: 1.5rem;
  }
  .portfolio_body_sec1 .title {
    margin-bottom: 1rem;
  }
  .portfolio_inner_wrapper .blogs_card .card_img {
    height: 200px;
  }
  .portfolio_inner_wrapper .blogs_card .regular_text {
    margin-bottom: 0;
  }
  .portfolio_inner_wrapper .blogs_card .regular_text {
    -webkit-line-clamp: 2;
    font-size: 0.9rem;
  }
  .portfolio_inner_wrapper .blogs_card .card_time {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .portfolio_inner_wrapper .blogs_card h3 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 0rem;
  }
  .portfolio_inner_wrapper .blogs_card .card_body {
    padding: 1rem 1.2rem;
  }
  .portfolio_inner_wrapper img[alt="Animation"],
  .portfolio_inner_wrapper img[alt="Website"] {
    height: 250px;
  }

  .portfolio_inner_wrapper .text,
  .portfolio_inner_wrapper .sub_title {
    margin-bottom: 0.5rem;
  }
  .portfolio_inner_wrapper .sub_title {
    font-size: 18px;
    line-height: 22px;
  }
  .portfolio_inner_wrapper .text,
  .portfolio_sec .row .text {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1rem;
  }
  .p_logoDesign {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .portfolio_inner_wrapper {
    height: 75vh;
    padding: 2rem 0;
  }
  .portfolio_sec .row .title {
    margin-bottom: 0rem;
  }
  .portfolio_sec .row .text {
    margin-bottom: 2rem;
  }
  .portfolio_body_sec1 + .portfolio_sec .portfolio_content:not(:last-child) {
    margin-bottom: 2rem;
  }
  .testimonial_banner_sec .testimonial_banner_img::before,
  .testimonial_banner_sec .testimonial_banner_img::after {
    width: 40px;
    height: 40px;
  }
  .testimonial_banner_sec .testimonial_banner_img::before {
    top: 42%;
    left: 28%;
  }
  .testimonial_banner_sec .testimonial_banner_img::after {
    top: 15%;
    right: 28%;
  }
  .home_banner::after,
  .home_banner::before {
    content: unset;
  }
  .privacy_policy_sec h1 {
    margin: 0 auto 3rem;
}
.privacy_policy_sec h1:not(.privacy_contect_info h1.title2):after {
  bottom: -.5rem;
  width: 120px;
  height: 3px;
}
.privacy_policy_sec {
  padding: 7rem 1rem 3rem;
}
.privacy_policy_sec h3.title2 {
  font-size: 1.2rem;
  line-height: 1.5rem;
}
}

@media (max-width: 575px) {
  .provenResults_cards_wrapper::before,
  .get_touch_sec::before,
  .get_touch_sec::after {
    content: unset;
  }
  .seo_sec .cards_wrapper .seo_card .card_content ul li::before {
    width: 20px;
    height: 20px;
  }
  footer .row:nth-child(1) {
    padding-bottom: 0;
  }
  footer,
  .testimonial_wrapper,
  .home_banner .slide-container,
  .seo_sec,
  .c_wrapper,
  .get_touch_sec,
  .proven_results_sec {
    padding-inline: 0.5rem;
  }
  .get_touch_sec .form_div {
    padding: 1.5rem;
  }
  .c_wrapper .c_cards {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
  .c_wrapper .c_cards div {
    padding: 0.5rem;
  }
  .c_wrapper .c_cards div img {
    width: 100px;
  }
  .about_clients li img {
    width: 100px;
    height: 50px;
    object-fit: contain;
  }
  .about_clients .title,
  .blog_banner_sec .title {
    margin-bottom: 2rem;
  }
  .blog_banner_sec .title + img {
    margin-bottom: 2rem;
  }
  .dropdown_content .regular_text {
    line-height: 1rem;
    font-size: 0.9rem;
  }
  .dropdown_content h3.text {
    line-height: 1rem;
  }
  .dropdown_content li div img:not(.dropdown_content li .bottom_icon img) {
    width: 25px;
    height: 25px;
  }
  .dropdown_content li .bottom_icon img {
    width: 20px;
    height: 20px;
  }
  .dropdown_content a {
    padding: 1rem 0.8rem;
    gap: 0.5rem;
  }
  .sideBar a.regular_text {
    font-size: 2rem;
  }
  .sideBar.active ul:not(.sideBar .dropdown_content ul) {
    gap: 2rem;
    /* height: 100%; */
  }
  .portfolio_inner_wrapper .blogs_card .card_img {
    height: 10rem;
  }
  .p_logoDesign {
    flex-direction: column;
    gap: 0.5rem;
  }
  .portfolio_inner_wrapper img[alt="Logo Design"] {
    height: 130px;
  }
  .seo_sec .cards_wrapper {
    padding-inline: 0;
  }
  .seo_sec .cards_wrapper .custom_arrow {
    font-size: 1.25rem;
  }
  button.custom_arrow.prev.slick-arrow {
    left: 35%;
  }
  button.custom_arrow.next.slick-arrow {
    left: 55%;
  }
  .seo_sec .cards_wrapper .seo_card .card_content ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  .c_wrapper .c_cards div {
    gap: 0;
  }
  .provenResults_cards_wrapper .provenResults_card h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .provenResults_cards_wrapper .provenResults_card .card_left .c_img {
    max-width: 170px;
    height: 120px;
  }
  .c_wrapper .c_cards div p.text {
    font-size: 14px;
  }
  .home_banner .scroller .buttons_group {
    gap: 0.5rem;
  }
  .steps_sec .container h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0;
  }
  .steps_sec .container h3 {
    font-size: 1rem;
    line-height: 1rem;
    margin-bottom: 0.5rem;
  }
  .divider_wrapper {
    margin: 1rem 0;
  }
  .steps_content .large_badge {
    gap: 1rem;
    padding-inline: 0;
  }
  .steps_wrapper .steps_items div {
    font-size: 1rem;
    line-height: 1rem;
    width: 150px;
    height: 65px;
    padding: 1rem;
  }
  .steps_sec .continue_btn {
    width: 160px;
    height: 50px;
    background-size: contain;
  }
  .step_form form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about_banner_sec .banner_img {
    height: 150px;
  }
  .about_banner_sec .title {
    margin-bottom: 1rem;
  }
  .home_banner .global_btn,
  .about_banner_sec .global_btn,
  .about_body_sec4 .global_btn {
    width: 150px;
  }
  .about_body_sec1 .row .row .col-6 {
    width: 100%;
    text-align: center;
  }
  .sub_title2 {
    font-size: 1.5rem;
    line-height: 1.7rem;
  }
  .about_body_sec1 .sub_title2 {
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .about_body_sec1 .global_btn {
    margin-inline: auto;
  }
  .about_body_sec1 .sub_title2 ~ .regular_text:nth-of-type(1),
  .about_body_sec1 .title,
  .about_body_sec2 .title {
    margin-bottom: 1rem;
  }
  .about_body_sec1 img {
    width: 200px;
    height: 200px;
    margin-bottom: 0.5rem;
  }
  .about_body_sec1 .order-last {
    order: 0 !important;
  }
  .about_body_sec1 .row .row {
    margin-bottom: 3rem;
  }
  .blogs_card .card_time,
  .blogs_card .regular_text,
  .blogs_card h3 {
    margin-bottom: 0.5rem;
  }
  .blogs_card h3 {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .blogs_card .card_img {
    height: 250px;
  }
  .testimonial_banner_sec .testimonial_banner_img::before,
  .testimonial_banner_sec .testimonial_banner_img::after {
    width: 30px;
    height: 30px;
  }
  .testimonial_banner_sec .testimonial_banner_img::before {
    top: 50%;
    left: 25%;
  }
  .testimonial_banner_sec .testimonial_banner_img::after {
    top: 20%;
    right: 27%;
  }
  .client_reviews_sec .testimonial .sub_title {
    font-size: 18px;
    line-height: 20px;
  }
  .client_reviews_sec .testimonial .regular_text {
    font-size: 14px;
    line-height: 16px;
  }
  .testimonial .t_body {
    padding: 2rem 1rem 1rem 3rem;
  }
  .testimonial .t_body::before {
    width: 20px;
    height: 13px;
    left: 20px;
  }
}
/* Media Queries End */

/* Full-screen loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1); /* Background color for the loader */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999; /* Ensure it stays on top */
}

/* Spinner animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #ff9d56;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spinner animation keyframes */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hide loader after page load */
body.loaded #loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
body:not(.loaded) {
  overflow: hidden;
}

/* Bact to top button start */
#backToTop {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: none;
  background-color: #ff7f22;
  color: #fff;
  border: none;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 9;
}

#backToTop:hover {
  background-color: #ff7e22e7;
}

/* Bact to top button end */
