@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Light.eot");
  src: url("../fonts/SFProDisplay-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/SFProDisplay-Light.woff2") format("woff2"),
    url("../fonts/SFProDisplay-Light.woff") format("woff"),
    url("../fonts/SFProDisplay-Light.ttf") format("truetype"),
    url("../fonts/SFProDisplay-Light.svg#SFProDisplay-Light") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Regular.eot");
  src: url("../fonts/SFProDisplay-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/SFProDisplay-Regular.woff2") format("woff2"),
    url("../fonts/SFProDisplay-Regular.woff") format("woff"),
    url("../fonts/SFProDisplay-Regular.ttf") format("truetype"),
    url("../fonts/SFProDisplay-Regular.svg#SFProDisplay-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Medium.eot");
  src: url("../fonts/SFProDisplay-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/SFProDisplay-Medium.woff2") format("woff2"),
    url("../fonts/SFProDisplay-Medium.woff") format("woff"),
    url("../fonts/SFProDisplay-Medium.ttf") format("truetype"),
    url("../fonts/SFProDisplay-Medium.svg#SFProDisplay-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Semibold.eot");
  src: url("../fonts/SFProDisplay-Semibold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/SFProDisplay-Semibold.woff2") format("woff2"),
    url("../fonts/SFProDisplay-Semibold.woff") format("woff"),
    url("../fonts/SFProDisplay-Semibold.ttf") format("truetype"),
    url("../fonts/SFProDisplay-Semibold.svg#SFProDisplay-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Bold.eot");
  src: url("../fonts/SFProDisplay-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/SFProDisplay-Bold.woff2") format("woff2"),
    url("../fonts/SFProDisplay-Bold.woff") format("woff"),
    url("../fonts/SFProDisplay-Bold.ttf") format("truetype"),
    url("../fonts/SFProDisplay-Bold.svg#SFProDisplay-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* === Global Variables (PX only) === */
:root {
  --primary-color: #ff003c;
  --secondary-color: #090b0e;
  --white-color: #fff;
  --white-color50: rgba(255, 255, 255, 0.50);
  --white-color70: rgba(255, 255, 255, 0.70);
  --bodyText-color: #454648;
  --lightBG-color: #f7f7f7;
  --lightBG2-color: #e6e6e6;
  --border-color: #c8ccd0;
  --border-color20: rgba(255, 255, 255, 0.2);

  --font-family: "SF Pro Display";
  --fs14: 14px;
  --fs16: 16px;
  --fs18: 18px;
  --fs20: 20px;
  --fs22: 22px;
  --fs24: 24px;
  --fs26: 26px;
  --fs28: 28px;
  --fs30: 30px;
  --fs36: 36px;
  --fs42: 42px;
  --fs48: 48px;
  --fs60: 60px;

  --border-radius12: 12px;
  --border-radius16: 16px;
  --border-radius20: 20px;
  --border-radius24: 24px;
  --border-radius30: 30px;
  --border-radius100: 100%;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: var(--font-family);
  color: var(--bodyText-color);
  font-size: var(--fs18);
  line-height: 1.45;
  /* scroll-behavior: smooth; */
  overflow-x: hidden;
}

.container {
  max-width: 1224px;
}

.container-fluid {
  padding: 0 40px;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.d-none {
  display: none;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 20px 16px;
  border: 1px solid var(--border-color);
  font-size: var(--fs18);
  font-family: var(--font-family);
  color: var(--secondary-color);
  border-radius: var(--border-radius12);
  transition: ease-in-out .3s;
}

input:focus,
select:focus,
textarea:focus {
  border: 1px solid;
  border-color: var(--secondary-color);
  outline: none;

}

::placeholder {
  color: var(--bodyText-color);
  font-size: var(--fs16);
  transition: ease-in-out .3s;
}

:focus::placeholder {
  transform: translateY(-40px);
  /* Won't work on placeholder */
  position: relative;
  filter: blur(2px);
  opacity: 0;
}

/* === Global Typography === */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 700;
  line-height: normal;
  color: var(--secondary-color);
}

h1,
.h1 {
  font-size: var(--fs48);
  font-weight: 700;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: var(--fs42);
}

h3,
.h3 {
  font-size: var(--fs24);
}

h4,
.h4 {
  font-size: var(--fs20);
  font-weight: 500;
}

p {
  margin-bottom: 20px;
}

/* === Spacing Utility Classes === */
.my55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

.my110 {
  margin-top: 110px;
  margin-bottom: 110px;
}

.mt55 {
  margin-top: 55px;
}

.mt110 {
  margin-top: 110px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb110 {
  margin-bottom: 110px;
}

.py55 {
  padding-top: 55px;
  padding-bottom: 55px;
}

.py110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.pt55 {
  padding-top: 55px;
}

.pt110 {
  padding-top: 110px;
}

.pb55 {
  padding-bottom: 55px;
}

.pb110 {
  padding-bottom: 110px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb40 {
  margin-bottom: 40px;
}


/* === Button === */
.link-btn img {
  margin-left: 12px;
  transition: .3s ease;
}

.link-btn:hover img {
  margin-left: 14px;
}

.banner-content .site-btn {
  opacity: 0;
  transform: translateY(25px);
  /* smaller = smoother */
  display: inline-block;
  transition: ease .3s;
  /* IMPORTANT */
}

.site-btn {
  position: relative;
  background-color: transparent;
  font-size: var(--fs18);
  font-weight: 500;
  color: var(--primary-color);
  height: 56px;
  padding: 14px 62px 14px 30px;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius30);
  display: inline-block;
  letter-spacing: .02rem;
  cursor: pointer;
  transition: ease-in-out .3s;
  width: auto;
}

.site-btn::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius24);
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/white-right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  right: 6px;
  transition: ease-in-out .4s;
}

.white-btn {
  background-color: var(--white-color70);
  color: var(--secondary-color);
  border: 1px solid var(--white-color);
  border-radius: var(--border-radius30);
}

.input-btn-wrap {
  padding: 0;
}

.input-btn-wrap input {
  background: transparent;
  border: none;
  width: auto;
  padding: 0;
  font-size: var(--fs18);
  font-weight: 500;
  color: var(--primary-color);
  margin: 0 !important;
  z-index: 2;
  padding: 13px 62px 16px 30px;
  height: 56px;
  cursor: pointer;
  transition: ease-in-out .4s;
}

.site-btn span.wpcf7-spinner {
  position: absolute;
  margin: 0;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.site-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.site-btn:hover:before {
  background-color: var(--white-color);
  background-image: url(../images/sldier-right-arrow.svg);
}

.input-btn-wrap:hover input {
  color: var(--white-color);
}

.top-title {
  margin-bottom: 8px;
  font-size: var(--fs18);
  letter-spacing: 2px;
  color: var(--secondary-color);
}

.red-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--border-radius100);
  background-color: var(--primary-color);
  display: inline-block;
  margin-right: 10px;
  animation: blinkPulse 1.8s ease-in-out infinite;
}

@keyframes blinkPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(.9);
  }
}

.primary-text {
  color: var(--primary-color);
  margin-right: 6px;
}

.title .primary-text {
  margin-left: 6px;
  margin-right: 0;
}

/* === Header === */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--border-color20);
  z-index: 9;
  padding: 20px 0;
}

.nav-list li {
  padding: 0 16px;
}

.nav-list li a {
  font-size: var(--fs18);
  font-weight: 500;
  color: var(--white-color);
}

.header #mega-menu-wrap-menu-1 {
  background-color: transparent;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
  font-size: 18px;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
  padding: 0 16px;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu,
.header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
  width: 60vw;
  left: 50% !important;
  right: unset;
  transform: translateX(-50%) !important;
  padding: 35px;
  z-index: 99999;
  background: #ffffff;
  /* position: fixed; */
  top: 78px;
  border-radius: 20px;
}

.header .customRowFlex>.mega-sub-menu {
  display: flex !important;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-ourWorkMenu.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu,
.header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-ourWorkMenu.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
  width: auto;
  left: 0 !important;
  transform: none !important;
  padding: 30px;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-ourWorkMenu.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
  padding-left: 10px;
  border-left: 5px solid var(--primary-color);
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-ourWorkMenu.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link {
  color: var(--secondary-color);
  transition: 0.4s ease;
  position: relative !important;
  left: 0;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-ourWorkMenu.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link:hover {
  left: 6px;
}


.header #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-ourWorkMenu.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item:last-child {
  margin-bottom: 0;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  background-color: transparent;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--secondary-color);
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1 a.mega-menu-link {
  position: static !important;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
  padding: 0;
}

.header .company-mega-content span.h3 {
  border-left: 5px solid var(--primary-color);
  padding-left: 14px;
  display: flex;
  margin-bottom: 25px;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1 p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 20px;
}

.header h4.mega-block-title {
  color: black !important;
  border-left: 5px solid var(--primary-color) !important;
  display: inline-flex !important;
  align-items: center !important;
  padding-bottom: 0 !important;
  padding-left: 10px !important;
  margin-bottom: 22px !important;
  position: relative;
}

.header h4.mega-block-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: black;
  bottom: -6px;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
  font-size: 16px;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item a {
  position: relative;
  right: 0;
  transition: 0.4s ease;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item a:hover {
  right: -10px;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
  transition: 0.4s ease;
  border-radius: 22px;
}

.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link:hover,
.header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link:focus {
  background-color: var(--primary-color);
  border-radius: 22px;

}

.header .custom-html-widget {
  background-color: var(--secondary-color);
  color: #FFFFFF;
  padding: 24px;
  border-radius: 20px;
  margin-top: 35px;
}

.header .custom-html-widget .hire-title {
  color: #FFFFFF !important;
}

.header .custom-html-widget .hire-btn {
  margin-top: 14px;
}

.header .custom-html-widget .hire-btn.site-btn::before {
  width: 32px;
  height: 32px;
}

.header .custom-html-widget .hire-btn.site-btn {
  height: 48px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 50px;
}

/* .header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu{
  opacity: 1 !important;
}
.header #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu{
  max-width: max-content;
}
.header #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item > ul.mega-sub-menu{
  visibility: visible;
} */
/* === Banner === */
.banner-sec {
  position: relative;
  background-image: url(../images/banner-image.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  color: var(--white-color);
  overflow: hidden;
}

.banner-sec .h1 {
  color: var(--white-color);
}

.banner-sec::before {
  content: "";
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.8) 74.95%,
      rgba(0, 0, 0, 0.92) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.banner-sec .container {
  z-index: 2;
  color: var(--white-color);
}

.big-top-title {
  margin-bottom: 16px;
  color: var(--white-color);
}

.big-top-title .red-dot {
  width: 8px;
  height: 8px;
}

.banner-sec .site-btn {
  margin-top: 50px;
}

/* Down Arrow css start */

.scroll-down-btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
}

.scroll-down-btn svg {
  fill: var(--white-color);
}

.scroll-down-btn svg text {
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}

.rotating-text {
  transform-origin: 55px 55px;
  /* centre of the SVG */
  animation: rotateText 12s linear infinite;
}

.arrow-group {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* Down Arrow css end */

/* About section css */
.number-row {
  margin: 0 -15px;
}

.number-col {
  padding: 0 15px;
}

.number-box {
  background-color: var(--lightBG-color);
  border: 1px solid var(--lightBG2-color);
  border-radius: var(--border-radius16) var(--border-radius16) 0 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.number-box .h4 {
  padding: 20px 24px 58px;
}

.number-box .count-no {
  position: relative;
  padding: 24px 24px 65px;
  font-size: var(--fs48);
  font-weight: bold;
  color: var(--secondary-color);
  line-height: normal;
  z-index: 1;
  transition: ease-in-out .4s;
}

.number-box .count-no::before {
  content: "";
  position: absolute;
  height: 55px;
  width: 100%;
  background-color: var(--lightBG2-color);
  left: 0;
  bottom: 0;
  border-radius: var(--border-radius20) var(--border-radius20) 0 0;
  z-index: -1;
  transition: ease-in-out .3s
}

.number-box:hover .count-no:before {
  height: 100%;
  background-color: var(--primary-color);
}

.number-box:hover .count-no {
  color: var(--white-color);
}


/* Services Section css start */

.tab-panel {
  display: none;
  transition: opacity .3s ease;
}

.tab-panel:first-child {
  display: block;
}

.services-tabs .tab-link {
  padding: 16px 24px 16px 0;
  transition: opacity .4s ease;
  margin-bottom: 16px;
  cursor: pointer;
}

.services-tabs .tab-link:hover .services-no {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.services-tabs .tab-link:last-child {
  margin-bottom: 0;
}

.services-tabs .tab-link.active {
  background: linear-gradient(90deg, #F7F7F7 0%, #FFFFFF 100%);
  border-radius: 20px;
  border-left: 4px solid var(--primary-color);
  padding-left: 24px;
}

.services-tabs .tab-link.active:hover .services-no {
  background-color: transparent;
  color: var(--primary-color);
}

.services-devs .tab-nav {
  padding-right: 70px;
}

.services-no {
  width: 48px;
  max-width: 48px;
  height: 48px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 20px;
  flex: 1 0 auto;
  font-size: var(--fs20);
  font-weight: bold;
  color: var(--secondary-color);
  transition: ease-in-out .3s;
}

.tab-link.active span.services-no {
  color: var(--primary-color);
}

.services-title .h3 {
  margin-top: 10px;
  margin-bottom: 12px;
  transition: ease-in-out .4s;
}

.tab-link.active .services-title .h3 {
  color: var(--primary-color);
}

.sub-cont {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .4s ease, max-height .4s ease;
}

.tab-link.active .sub-cont {
  opacity: 1;
  max-height: 100px;

}

.services-card img {
  display: block;
  border-radius: var(--border-radius24);
  width: 100%;
}

/* Portfolio css start */
.portfolio-sec {
  background-color: var(--lightBG-color);
}

/* .portfolio-slider .slick-list {
  margin: 0 -24px;
}

.portfolio-slide {
    padding: 0 24px;
} */

.portfolio-slide .mockup-image {
  transform: scale(.78);
  border-radius: var(--border-radius24);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.portfolio-slide.slide-prev .mockup-image {
  transform: scale(.78) rotate(-6deg);
  transition-delay: 0.5s;
}

.portfolio-slide.slide-next .mockup-image {
  transform: scale(.82) rotate(6deg);
  transition-delay: 0.5s;
}

.portfolio-slide.slick-center .mockup-image {
  transform: scale(1);
  transition-delay: 0.5s;
}

/* .portfolio-slide.slick-current.slick-active.slick-center~.portfolio-slide .mockup-image {
  transform: scale(.82) rotate(6deg);
} */

.portfolio-slide .mockup-image iframe {
  display: flex;
  height: calc(calc(100vw / 3) - 8.53vw);
}

.portfolio-slide .mockup-image img {
  height: auto;
}

.portfolio-slider .slick-prev {
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
}

.portfolio-slider .slick-next {
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
}

/* ——— WHY CHOOSE US – Pixel Perfect Layout (No Inline CSS) ——— */

.why-choose-us .title {
  margin-bottom: 20px;
}

.listing {
  list-style: none;
  padding: 4px 0 0;
  margin-bottom: 40px;
  max-width: 460px;
}

.listing li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
}

.listing li::before {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: var(--border-radius100);
  border: 1px solid var(--bodyText-color);
  position: absolute;
  left: 0;
  top: 4px;
}

.listing li::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 5px;
  top: 9px;
  border-radius: var(--border-radius100);
  background-color: var(--bodyText-color);
}

/* Image Layout */
.why-choose-us .image-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.why-choose-us .img-team {
  position: absolute;
  bottom: 0;
  left: -235px;
  width: auto;
  border-radius: var(--border-radius16);
}

.img-dev {
  border-radius: var(--border-radius24);
}


.why-choose-us .badge-experience {
  position: absolute;
  bottom: -31px;
  right: -55px;
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgb(255 0 60 / 80%);
  border-radius: 50%;
  color: var(--white-color);
  font-size: var(--fs16);
  text-align: center;
  backdrop-filter: blur(20px);
  line-height: normal;
}

.badge-experience .num {
  font-size: var(--fs30);
  font-weight: 700;
  margin-bottom: 2px;
}


/* ——— INDUSTRIES section css start ——— */
.industries-grid {
  margin: -12px;
}

.industry-col {
  padding: 12px;
}

.industry-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius20);
  padding: 42px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.industry-card .icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.industry-card .h4 {
  margin-bottom: 30px;
}

.industry-card:hover .h4 {
  color: var(--white-color);
  transition: all 0.3s ease;
}

.industry-card img {
  transition: all 0.3s ease;
}

.industry-card:hover img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* Testimonial css start */
.testimonials-sec {
  background-color: var(--lightBG-color);
}

.testimonials-sec .row {
  flex-wrap: initial;
}

.testimonials-sec .row .col {
  width: auto;
  flex: initial;
}

.testimonials-sec .row .col:first-child {
  flex: 1 0 auto;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius100);
  margin-left: -12px;
  border: 1px solid var(--secondary-color);
}

.reviews-info {
  margin-left: 20px;
}

.reviews-info span {
  line-height: normal;
  font-size: var(--fs16);
}

.reviews-info .count {
  font-size: var(--fs22);
  font-weight: 700;
  color: var(--primary-color);
  line-height: normal;
  margin-bottom: 2px;
}

.testimonial-card .quote,
.testimonial-card .stars~p {
  padding-bottom: 40px;
  font-size: var(--fs20);
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border-color);
}

.testimonial-item .client img {
  max-width: 90px;
}

.testimonial-card .client p {
  padding-top: 4px;
}

.slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius100);
  border: none;
  font-size: 0;
  background-image: url(../images/sldier-right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  transition: .4s ease;
}

.slick-prev {
  right: 76px;
  background-image: url(../images/sldier-left-arrow.svg);
}

.slick-arrow:hover {
  background-color: var(--primary-color);
  background-image: url(../images/sldier-right-white-arrow.svg);
}

.slick-prev:hover {
  background-image: url(../images/sldier-left-white-arrow.svg);
}

/* Blog Css start */
.blog-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius16);
  box-shadow: 0px 6px 34px 0px rgba(225, 225, 225, 0.8);

}

.blog-tag {
  background-color: var(--lightBG-color);
  padding: 7px 10px;
  border-radius: var(--border-radius30);
  font-size: var(--fs14);
  line-height: normal;
}

.blog-info .h4 {
  margin: 12px 0 10px;
  font-weight: 700;
}

.blog-card img {
  border-top-left-radius: var(--border-radius20);
  border-top-right-radius: var(--border-radius20);
  display: block;
}

.blog-info {
  padding: 24px;
}

.blog-info .link-btn {
  color: var(--primary-color);
}

.blog-info .link-btn img {
  filter: invert(33%) sepia(100%) saturate(7174%) hue-rotate(338deg) brightness(94%) contrast(116%);
}

/* Contact section css start */
.contact-sec .title {
  margin-bottom: 30px;
}

.contact-form {
  padding-bottom: 100px;
}

/* Footer sec css start */
.footer-sec {
  background: url(../images/bg-noise.webp) #000;
  color: var(--white-color);
  font-size: var(--fs16);
}

.footer-sec .container {
  max-width: 1500px;
}


.footer-col {
  padding-top: 90px;
  padding-bottom: 70px;
}

.first-col {
  padding-right: 60px;
  border-right: 1px solid var(--border-color20);
}

.second-col,
.third-col {
  padding-left: 80px;
}

.fourth-col {
  padding-left: 50px;
}

.footer-logo {
  margin-bottom: 24px;
}

.social-icons {
  margin: 36px -8px 0;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #FFFFFF33;
  border-radius: var(--border-radius100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  transition: ease-in-out .3s;
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.top-footer .h3 {
  color: var(--white-color);
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-contact a {
  display: block;
}

.contact-info li {
  margin-bottom: 16px;
}

.contact-info li img {
  margin-right: 12px;
}

.copyRights {
  padding: 40px 0;
  border-top: 1px solid var(--border-color20);
  color: var(--white-color70);

}

/*---------Service Page css start---------*/
.inner-page .header {
  background-color: var(--secondary-color);
  position: relative;
}

.inner-banner-sec {
  background-color: var(--lightBG-color);
  color: var(--secondary-color);
  background: url(../images/inner-banner-bg3.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.inner-banner-sec::before {
  content: "";
  position: absolute;
  background-color: rgb(247 247 247 / 30%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.inner-banner-sec .top-title {
  color: var(--secondary-color);
}

.technolyServiceSection {
  position: relative;
  z-index: 1;
}

.technolyServiceSection::before {
  position: absolute;
  z-index: -1;
  background-image: url("../images/wave2.svg");
  content: "";
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  opacity: 0.12;
  bottom: 0;
  background-position: 80% bottom;
}

.technolyServiceSection .imgwrapper img {
  border-radius: 20px;
}


/* Creative Animation for banner-vectore image */
.banner-vectore {
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  animation: vectorEntrance 2s ease-in-out 0.5s forwards;
}

.banner-vectore {
  animation: vectorEntrance 2s ease-in-out 0.5s forwards, floatInfinite 3s ease-in-out infinite 2.5s;
}

@keyframes vectorEntrance {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes floatInfinite {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* Inner banner css end */

.banner-content {
  z-index: 2;
  position: relative;
}

.inner-banner-sec .title {
  margin-bottom: 24px;
  position: relative;
}

.banner-content .h1 {
  line-height: 1.15;
}

.ib-card-row {
  margin: 25px -50px 0;
}

.ib-card {
  color: var(--bodyText-color);
  padding: 0 50px;
  border-right: 1px solid var(--border-color);
}

.ib-card:last-child {
  border-right: none;
}

.ib-card .count-no {
  font-size: var(--fs60);
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  color: var(--secondary-color);
  line-height: 72px;
  margin-bottom: 4px;
}

.ib-card .count-no span {
  font-size: var(--fs36);
}

.inner-baner-img {
  text-align: right;
}



.our-story-sec .title {
  margin-bottom: 20px;
}

.custom-tabs {
  position: relative;
}

.our-story-col {
  margin-top: -154px;
}

.our-story-img {
  position: relative;
  display: block;
}

.our-story-img img {
  border-radius: var(--border-radius24);
}

.our-story-img::before {
  background-image: url(../images/img-shape.svg);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.our-story-tabs .tab-link {
  position: relative;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.our-story-tabs .tab-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  left: 0;
  top: 47px;
}

.our-story-tabs .tab-link::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--border-color);
  left: 50%;
  top: 35px;
  border-radius: 100%;
  transform: translateX(-50%);
  transition: ease .4s;
}

.our-story-tabs .tab-link.active::after {
  background-color: var(--primary-color);
}

.story-col-left {
  padding-right: 80px;
}

.story-content {
  padding-right: 40px;
}

.story-year {
  position: relative;
  display: block;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: var(--fs18);
  line-height: 26px;
  padding-bottom: 44px;
  cursor: pointer;
  z-index: 1;
  transition: ease .4s;
}

.story-tag {
  display: block;
  font-weight: 500;
  color: var(--secondary-color);
  font-size: var(--fs16);
  line-height: normal;
  max-width: 110px;
  cursor: pointer;
  transition: ease .4s;
  opacity: 0;
  visibility: hidden;
}

.our-story-tabs .tab-link.active .story-year {
  color: var(--primary-color);
}

.our-story-tabs .tab-link.active .story-tag {
  opacity: 1;
  visibility: visible;
}

.our-story-tabs .tab-nav {
  position: absolute;
  bottom: -16px;
  z-index: 1;
  left: 0;
}

.ss-sec {
  background-color: var(--lightBG-color);
}

.ss-row {
  margin: -12px;
}

.ss-col {
  padding: 12px;
}

.ss-card {
  /* background: var(--white-color); */
  padding: 30px;
  border: 1px solid var(--lightBG2-color);
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
  background-color: var(--white-color50);
  border-radius: var(--border-radius16);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ss-card p {
  margin-bottom: 0;
}

.ss-card .h3 {
  margin-bottom: 12px;
  font-size: var(--fs22);
}

.ss-icon {
  margin-bottom: 16px;
  max-width: 60px;
}

.ss-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
  background-color: var(--white-color);
}

.ss-card .link-btn {
  color: var(--primary-color);
  margin-top: 30px;
}

.ss-card .link-btn img {
  filter: invert(33%) sepia(100%) saturate(7174%) hue-rotate(338deg) brightness(94%) contrast(116%);
}

/* FAQ's css start */
.faq-list {
  max-width: 1000px;
}

.faq-header .h4 {
  padding: 32px 42px 24px 8px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  background-image: url(../images/qouestion.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 30px;
}

.faq-item.active .faq-header .h4 {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url(../images/answwer.svg);
  background-size: 32px;
}

.faq-body {
  padding: 24px 8px 12px;
}

.faq-body p {
  margin-bottom: 0;
}

.contact-simple-sec {
  background: url(../images/bg-noise.webp) #101010;
  color: var(--white-color);
  font-size: var(--fs16);
  padding: 80px 0;
}

.contact-simple-sec .top-title {
  color: var(--white-color);
  margin-bottom: 16px;
}

.contact-simple-sec .h1 {
  margin-bottom: 20px;
  color: var(--white-color);
  max-width: 680px;
}

.contact-simple-sec .site-btn::before {
  display: none;
}

.contact-simple-sec .site-btn {
  padding: 14px 30px;
  color: var(--white-color);
  background-color: var(--primary-color);
}

.get-now-btn {
  flex: 1 0 auto;
  display: flex;
  justify-content: flex-end;
}

.call-icon {
  width: 24px;
  height: 24px;
  animation: ringPhone 1.6s infinite ease-in-out;
  transform-origin: center;
}

@keyframes ringPhone {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  20% {
    transform: rotate(-15deg) scale(1.1);
  }

  40% {
    transform: rotate(10deg) scale(1.1);
  }

  60% {
    transform: rotate(-10deg) scale(1.1);
  }

  80% {
    transform: rotate(5deg) scale(1.1);
  }
}

/*******************************
      About page css start
*******************************/
.know-about-left {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.know-about-left img {
  width: 100%;
}


.know-about-left::before {
  background-image: url(../images/img-shape.svg);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 1px;
  top: -1px;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: bottom left;
  transform: rotate(180deg);
  background-size: 45%;
}

.know-about-right {
  padding-left: 45px;
}

.know-about-right .title {
  margin-bottom: 20px;
}

.features-box {
  font-weight: 500;
  color: var(--secondary-color);
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
  padding: 8px;
  border-radius: var(--border-radius16);
  margin-top: 30px;
}

.features-list {
  background-color: rgb(255 0 60 / 7%);
  padding: 16px 20px;
  border-radius: var(--border-radius12);
}

.features-box li {
  width: 50%;
  padding: 12px 8px;
  line-height: 1.2;
}

.features-list img {
  max-width: 20px;
}

/*More About css*/
.more-about .top-title {
  font-weight: 400;
  margin-bottom: 40px;
}

.ma-number-box .h4 {
  color: var(--white-color);
  font-size: var(--fs18);
  font-weight: 400;
}

.ma-number-box .h4 {
  color: var(--white-color);
}

.more-about {
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: var(--fs48);
  font-weight: bold;
}

.mv-content .h4 {
  margin-bottom: 12px;
  font-weight: 600;
}

.mv-icon {
  width: 72px;
  height: 72px;
  background-color: var(--lightBG-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 16px;
}

.why-choose-mv .site-btn {
  margin-top: 20px;
}

.our-values-sec {
  background-color: transparent;
}

.leadership-devs {
  background-color: var(--lightBG-color);
  text-align: center;
}

.team-slider-two {
  direction: rtl;
}

.leadership-img {
  max-width: 150px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.abt-testi-sldier {
  background-color: transparent;
}

.awards-devs {
  padding: 80px 0 80px;
}

/* Blog Page css start */
.recent-blog {
  background: transparent;
  box-shadow: none;
  margin-right: 8px;
}

.recent-blog img {
  border-radius: var(--border-radius20);
}

.recent-blog .blog-info {
  padding: 30px 0;
}

.recent-blog .h3 {
  margin: 10px 0 16px;
}



.trending-blogs {
  padding: 30px;
  background-color: var(--lightBG-color);
  border-radius: var(--border-radius24);
  margin-left: 8px;
}

.trending-blogs .title {
  margin-bottom: 24px;
}

.trending-blogs .blog-card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 20px;
}

.trending-blogs .blog-card:last-child {
  margin-bottom: 0;
}

.trending-blogs .blog-img img {
  border-radius: 0;
}

.trending-blogs .blog-info {
  padding: 0 0 0 24px;
}

.trending-blogs .blog-img img {
  border-radius: var(--border-radius12);
  max-width: 160px;
}

.trending-blogs .blog-tag {
  border: 1px solid var(--border-color);
}

.trending-blogs .blog-info .h4 {
  margin: 12px 0 0;
  font-weight: 600;
  font-size: var(--fs18);
}

.all-blog-sec .blog-card {
  margin-bottom: 24px;
}

.all-blog-sec .title {
  margin-bottom: 30px;
}

.blog-sidebar {
  /* position: sticky;
  top: 20px; */
  padding-left: 16px;
}

.blog-serch input {
  border-radius: var(--border-radius30);
  margin-bottom: 20px;
}

.blog-serch input:focus {
  background: transparent;
}

.blog-categories-card {
  background-color: var(--lightBG-color);
  border-radius: var(--border-radius16);
  overflow: hidden;
}

.blog-categories-card .h4 {
  padding: 20px 24px;
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.blog-categories {
  padding: 20px 24px;
}

.blog-categories li {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: .4s ease;
}

.blog-categories li a {
  display: flex;
  justify-content: space-between;
  transition: .4s ease;
  width: 100%;
}

.blog-categories li:hover {
  color: var(--primary-color);
}

.blog-categories li span {
  background-color: var(--lightBG2-color);
  width: 26px;
  height: 26px;
  border-radius: var(--border-radius24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs14);
  color: var(--secondary-color);
  transition: .4s ease;
  font-weight: 500;
}

.blog-categories li:hover span {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.pagination {
  margin-top: 20px;
}

.pagination li {
  margin: 0 4px;
}

.pagination a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius20);
  font-size: var(--fs16);
}

.pagination .active a {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.pagination li a {
  background-color: var(--lightBG-color);
  font-weight: 500;
}

.pagination li .page-link.next img {
  max-width: 14px;
}

/* Blog details Page css start */
.blog-top {
  padding: 80px 0;
  background-color: var(--lightBG-color);
}

.tech-tag {
  background-color: var(--primary-color);
  border-radius: var(--border-radius20);
  color: var(--white-color);
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 12px;
}

.blog-details .blog-tag {
  padding: 8px 16px 8px 12px;
  font-size: var(--fs16);
  line-height: normal;
  margin-top: 20px;
  background-color: var(--white-color);
}

.blog-bottom {
  padding: 80px 0;
}

.blog-img img {
  border-radius: var(--border-radius20);
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-details h1,
.blog-details .h1 {
  font-size: var(--fs42);
  font-weight: 700;
}

.blog-details-content h2,
.blog-details-content .h2 {
  font-size: var(--fs26);
  font-weight: 700;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-details-content h3,
.blog-details-content .h3 {
  font-size: var(--fs24);
  font-weight: 700;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-details-content h4,
.blog-details-content .h4 {
  font-size: var(--fs22);
  font-weight: 700;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-details-content h5,
.blog-details-content .h5 {
  font-size: var(--fs20);
  font-weight: 700;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-details-content h6,
.blog-details-content .h6 {
  font-size: var(--fs18);
  font-weight: 600;
  margin-bottom: 12px;
  font-weight: 600;
}

.blog-details-content ul,
.blog-details-content ol {
  margin: 0 0 24px 8px;
  list-style-position: inside;
}

.blog-details-content ul.wp-block-list li {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 6px;
}

.blog-item {
  padding: 12px;
}

.blog-slider .slick-list {
  margin: 0 -12px;
}

.blog-slider .blog-card {
  box-shadow: 0px 0 12px 0px rgba(225, 225, 225, 0.7);
}


/* Contact page css start */
.contact-us-right {
  background-color: var(--lightBG-color);
  padding: 40px;
  margin-right: 40px;
  border-radius: var(--border-radius16);
}

.contact-us-right .h3 {
  margin-bottom: 16px;
  font-size: var(--fs36);
}

.contact-card:not(:last-child) {
  margin-bottom: 24px;
}


.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--lightBG-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius12);
  margin-right: 16px;
}

.contact-card .h4 {
  margin-bottom: 6px;
}

.contact-card a {
  display: block;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-us-sec .contact-form {
  padding-bottom: 0;
}

.file-upload p {
  font-size: var(--fs14);
}

.world-map {
  position: relative;
  width: 100vw;
  max-width: 1400px;
  height: 80vh;
  background: url('https://i.ibb.co/0jK7g7Q/world-dots-dark.png') center/cover no-repeat;
}

/* Pin style */
.svg-map .pin {
  animation: pinInfinite 2.5s ease-in-out infinite .5s;
}

@keyframes pinInfinite {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(0deg);
  }
}


/* Hire Developer Css start */
.hire-ss-sec {
  background: transparent;

}

.hire-ss-sec .ss-card {
  padding: 24px;
}

.hire-model-card {
  background: #101010;
  color: var(--white-color70);
  border-radius: var(--border-radius20);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hire-model-card:hover {
  transform: translateY(-15px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.hire-model-card .h4 {
  padding: 24px 30px;
  border-bottom: 2px solid var(--white-color);
  font-weight: 700;
  color: var(--white-color);
  text-align: center;
}

.hire-model-card ul {
  margin-bottom: 0;
  padding: 16px 30px;
}

.hire-model-card ul li {
  margin: 14px 0;
}

.hire-model-card ul li img {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

.hire-model-card a.site-btn {
  margin: 4px auto 30px;
  display: table;
}

.hire-contact-sec {
  background-color: var(--lightBG-color);
}

.hire-portfolio-sec {
  background-color: transparent;
}

.hire-benefits-sec {
  background: transparent;
}


/* Hire Resource Process */

.hiring-steps {
  padding-top: 20px;
}

.hiring-step {
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--white-color);
  padding: 40px 40px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.hiring-step:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.hiring-step:hover .step-icon svg {
  color: var(--primary-color);
}

.hiring-step:hover .step-number {
  background: var(--primary-color);
  color: var(--white-color);
}

.step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white-color);
  color: var(--bodyText-color);
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs22);
  font-weight: bold;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  z-index: 4;
}

.step-icon {
  margin: 16px auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Solution Page css start */
.solution-ss-sec {
  background-color: transparent;
}

.develop-process-sec {
  background: #101010;
}

.develop-process-sec .top-title,
.develop-process-sec .h2 {
  color: var(--white-color);
}

.solution-future-sec .industry-card {
  height: 100%;
}


.develop-process-sec .hiring-step {
  background-color: transparent;
  border-color: var(--border-color20);
}

.develop-process-sec .hiring-step .step-number {
  background-color: var(--border-color20);
  color: var(--white-color);
  border: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 500;
}

.develop-process-sec .hiring-step .h4 {
  color: var(--white-color);
}

.develop-process-sec .hiring-step:hover {
  background: var(--border-color20);
}

.develop-process-sec .hiring-step:hover .step-number {
  color: var(--primary-color);
  background-color: var(--white-color);
}



.build-future-devs .row {
  background-color: #101010;
  color: var(--white-color);
  border-radius: var(--border-radius20);
  overflow: hidden;
}

.build-future-content .title {
  margin-bottom: 20px;
}

.build-future-content .top-title,
.build-future-content .h2 {
  color: var(--white-color);
}

.build-future-devs img {
  display: block;
}

.build-future-content {
  margin-bottom: 0;
  height: 100%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.otherExpSectionSolution .img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgb(255 17 64 / 40%);
}

.otherExpSectionSolution .img-wrapper::after {
  background: black;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  opacity: 0.6;
}

.otherExpSectionSolution .img-wrapper img {
  border-radius: 20px;
}

.otherExpSectionSolution .img-wrapper .title {
  position: absolute;
  bottom: 0;
  color: white;
  opacity: 1;
  z-index: 3;
  left: 0;
  padding: 0 20px;
}



/* Portfolio Page css start */
.portfolio-tabs .tab-nav {
  margin: -8px -8px 50px;
}

.portfolio-tabs .tab-link {
  padding: 8px;
  /* flex: 1 0 auto; */
  width: auto;
  display: inline-flex;
}

.portfolio-tabs .tab-link span {
  padding: 12px 24px;
  background-color: var(--lightBG-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius16);
  color: var(--secondary-color);
  transition: ease-in-out .3s;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
}

.portfolio-tabs .tab-link:hover span {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.portfolio-tabs .tab-link.active span {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.portfolio-item {
  background-color: var(--white-color);
  border-radius: var(--border-radius16);
  box-shadow: 0px 6px 34px 0px rgba(225, 225, 225, 0.8);
  overflow: hidden;
}

.portfolio img {
  display: block;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-content .h4 {
  font-weight: 600;
}

.portfolio-lable {
  background-color: var(--primary-color);
  padding: 7px 12px;
  border-radius: var(--border-radius30);
  font-size: var(--fs16);
  line-height: normal;
  color: var(--white-color);
}

.hiring-steps-slider .hiring-stepsc-col {
  margin: 0 20px;
}

.hiring-steps-slider .slick-list {
  overflow: visible !important;
}

.hiring-process-sec.develop-process-sec>.container {
  overflow-x: hidden;
}

.hiring-steps-slider .slick-arrow {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.hiring-steps-slider .slick-arrow.slick-prev {
  left: 0;
}

/* Get Free Estimation Modal css start */
body.cf7-modal-open {
  overflow: hidden !important;
  height: 100vh !important;
}

.cf7-modal-overlay {
    height: 100vh!important;
    align-items: flex-start!important;
    padding: 30px 20px;
    overflow-y: auto;
}

.cf7-modal-content .h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

#cf7-popup-modal .cf7-modal-content {
  padding: 32px 40px 16px;
  border-radius: var(--border-radius24);
  width: 90%;
  max-width: 500px;
  position: relative;
  height: auto;
}

#cf7-popup-modal .cf7-close {
  top: 20px;
  right: 20px;
  background-color: var(--white-color70);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius30);
  width: 40px;
  height: 40px;
  font-size: 36px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  padding-left: 1px;
}

/* Get Free Estimation Modal css end */

/***********************************
        Responsive css start
***********************************/

@media(max-width : 1499px) {

  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu,
  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
    padding: 30px;
    width: 70vw;
  }

  .banner-sec {
    height: max-content;
    padding-top: 180px;
    padding-bottom: 60px;
  }

}

@media (max-width: 1279px) {
  .header .btn.site-btn.white-btn {
    display: none;
  }

  .container {
    max-width: 100%;
    padding: 0 40px;
  }

  .nav-list li {
    padding: 0 12px;
  }

  .why-choose-us .badge-experience {
    bottom: -25px;
    right: -25px;
  }

  .footer-col {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .first-col {
    padding-right: 20px;
  }

  .second-col,
  .third-col {
    padding-left: 40px;
  }

  .fourth-col {
    padding-left: 20px;
  }

  .our-story-tabs .tab-nav {
    position: initial;
    justify-content: space-around;
    margin-top: 40px;
  }

  .our-story-img::before {
    display: none;
  }

  .story-col-left {
    padding-right: 12px;
  }

  .our-story-img {
    position: relative;
    display: block;
    padding-left: 40px;
  }

  .leadership-card {
    padding: 8px !important;
    font-size: var(--fs16);
    line-height: 1.2;
  }

  .leadership-content .h3 {
    font-size: var(--fs20);
  }

  .leadership-img {
    max-width: 130px;
  }

  .features-list {
    padding: 16px;
  }

  .features-box li {
    padding: 8px;
    line-height: 1.2;
  }

  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu {
    left: 0 !important;
  }

}

@media (max-width: 1200px) {

  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu,
  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
    width: auto;
    transform: translate(0) !important;
    border-radius: 0;
    padding: 30px 10px;
  }

  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    /* padding-left: 15px; */
  }

  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    /* margin-bottom: 35px; */
  }

  .header .custom-html-widget {
    margin-top: 30px;
  }

  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link:hover,
  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link:focus {
    border-radius: 0;
  }

  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1[data-effect="fade_up"] li.mega-ourWorkMenu.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu {
    width: 100%;
  }

  html.mega-menu-menu-1-off-canvas-open body #scrollsmoother-container {
    overflow: hidden !important;
    transform: none !important;
  }

  h1,
  .h1 {
    font-size: var(--fs42);
    font-weight: 700;
    line-height: 1.25;
  }

  h2,
  .h2 {
    font-size: var(--fs36);
  }

  .why-choose-us .img-team {
    display: none;
  }

  h3,
  .h3 {
    font-size: var(--fs22);
  }

  .number-row {
    margin: 0 -12px;
  }

  .number-col {
    padding: 0 12px;
  }

  .number-box .h4 {
    padding: 20px 16px 58px;
  }

  .number-box .h4 {
    padding: 20px 16px 24px;
  }

  .number-box .count-no {
    font-size: var(--fs42);
  }

  .services-devs .tab-nav {
    padding-right: 20px;
  }

  .industry-card {
    padding: 24px 20px;
  }

  .industry-card .icon {
    width: 60px;
    height: 60px;
  }

  .blog-info {
    padding: 20px 16px;
  }

  .top-footer {
    padding: 60px 0 40px;
  }

  .footer-col {
    padding: 24px 12px;
  }

  .first-col {
    border: none;
    padding-right: 80px;
  }

  .second-col {
    order: 3;
  }

  .third-col {
    order: 4;
  }

  .fourth-col {
    order: 2;
    padding-right: 80px;
  }

  .copyRights {
    padding: 30px 20px;
  }

  .contact-character {
    padding-left: 40px;
  }

  .contact-form {
    padding-bottom: 60px;
  }

  .blog-sidebar {
    padding-left: 0;
  }

  .blog-sidebar .contact-simple-sec {
    padding: 32px 20px;
  }

  .trending-blogs .blog-img img {
    max-width: 120px;
  }

  .trending-blogs .blog-info {
    padding-left: 16px;
  }

  .trending-blogs .blog-tag {
    padding: 0;
    border: none;
  }

  .hire-model-card ul {
    padding: 12px 24px;
  }

  .hire-benefits-sec .ss-card {
    padding: 24px;
  }

  .hiring-step {
    padding: 40px 24px 30px;
  }

  .portfolio-tabs .tab-link {
    padding: 6px;
  }

  .portfolio-tabs .tab-link span {
    padding: 12px 16px;
  }

  .portfolio-tabs .tab-nav {
    margin: -6px -6px 40px;
  }

  .banner-sec {
    height: max-content;
    padding-top: 150px;
    padding-bottom: 60px;
  }

}

@media(max-width : 1199px) {
  .header #mega-menu-wrap-menu-1 .mega-menu-toggle~button.mega-close:before {
    background-color: var(--primary-color);
  }

  .mega-menu-toggle.mega-menu-open .mega-toggle-animated-box {
    display: none !important;
  }

  .header .customRowFlex>.mega-sub-menu {
    display: block !important;
  }
}

@media(max-width : 1024px) {
  .banner-sec {
    height: max-content;
    padding-top: 150px;
    padding-bottom: 60px;
  }
}

@media (max-width: 991px) {

  .header {
    padding: 20px 0 !important;
    position: relative;
    background-color: #222222;
  }

  .banner-sec {
    padding-top: 80px;
    background-size: cover !important;
  }



  /* === Spacing Utility Classes === */
  .my55 {
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .my110 {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .mt55 {
    margin-top: 35px;
  }

  .mt110 {
    margin-top: 70px;
  }

  .mb55 {
    margin-bottom: 35px;
  }

  .mb110 {
    margin-bottom: 70px;
  }

  .py55 {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .py110 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pt55 {
    padding-top: 35px;
  }

  .pt110 {
    padding-top: 70px;
  }

  .pb55 {
    padding-bottom: 35px;
  }

  .pb110 {
    padding-bottom: 70px;
  }

  .about-sec .title {
    margin-bottom: 20px;
  }

  .number-row {
    margin: -12px;
  }

  .number-col {
    padding: 12px;
  }

  .services-devs .tab-nav {
    padding-bottom: 40px;
  }

  .why-choose-us .img-team {
    display: block;
    left: 0;
  }

  .avatars img {
    width: 48px;
    height: 48px;
  }

  .blog-card {
    margin-bottom: 24px;
  }

  .blog-card>img {
    width: 100%;
  }

  .blog-info {
    padding: 30px;
  }

  .contact-character {
    padding-left: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .first-col,
  .fourth-col {
    padding-right: 20px;
  }

  .scroll-down-btn {
    transform: scale(.8);
    right: 10px;
    bottom: 10px;
  }

  .site-btn {
    height: 52px;
    padding: 12px 60px 12px 30px;
  }

  .site-btn.input-btn-wrap {
    padding: 0;
  }

  .input-btn-wrap input {
    height: 52px;
    padding: 10px 62px 12px 30px;
  }

  .inner-baner-img {
    text-align: center;
    width: 110px;
    position: absolute;
    right: 40px;
    bottom: 30px;
  }

  .ib-card .count-no {
    font-size: var(--fs48);
    line-height: normal;
    margin-bottom: 8px;
  }

  .story-content {
    padding-right: 0;
  }

  .our-story-col {
    margin-top: 0;
  }

  .our-story-img {
    padding-left: 0;
  }

  .our-story-img img {
    width: 100%;
    margin-top: 4px;
  }

  .our-story-col {
    padding-left: 12px !important;
  }

  .our-story-tabs .tab-link {
    padding: 0;
  }

  .contact-simple-sec {
    padding: 60px 0;
  }

  .contact-simple-sec .h1 {
    line-height: normal;
  }

  .cs-row {
    flex-direction: column;
    text-align: center;
  }

  .get-now-content {
    margin-bottom: 35px;
  }

  .get-now-content .top-title {
    justify-content: center !important;
    margin-bottom: 12px;
  }

  .leadership-content .h3 {
    font-size: var(--fs18);
  }

  .leadership-img {
    max-width: 115px;
  }

  .know-about-right {
    padding-left: 0;
    padding-top: 40px;
  }

  .more-about {
    padding: 60px 0 70px;
  }

  .more-about {
    font-size: var(--fs36);
  }

  .ma-number-row {
    justify-content: center;
  }

  .ma-number-row {
    justify-content: center;
    margin: -24px -12px;
  }

  .ma-number-col {
    max-width: 33.33% !important;
    flex: initial;
    padding: 24px;
  }

  .portfolio-slider .slick-prev {
    left: 16px;
  }

  .portfolio-slider .slick-next {
    right: 16px;
  }

  .why-choose-us .image-container img {
    width: 100%;
  }

  .trending-blogs {
    margin-left: 0;
  }

  .all-blog-sec {
    position: relative;
  }

  .all-blog-right {
    order: 1;
  }

  .all-blog-left {
    order: 2;
  }

  .recent-blog {
    margin-bottom: 0;
    margin-right: 0;
  }

  .blog-categories-card {
    background-color: transparent;
    border-radius: 0;
    overflow: initial;
  }

  .blog-categories-card .h4 {
    display: none;
  }

  .blog-categories {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .blog-categories li {
    padding: 8px 8px 8px 16px;
    background-color: var(--lightBG-color);
    border-radius: var(--border-radius24);
    margin: 4px;
    font-size: var(--fs16);
    display: flex;
    align-items: center;
  }

  .blog-categories {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }


  .blog-categories li span {
    margin-left: 12px;
  }

  .blog-sidebar {
    display: flex;
    flex-direction: column-reverse;
  }

  .blog-sidebar .blog-serch {
    max-width: 360px;
    margin-left: auto;
    width: 100%;
    margin-bottom: -68px;
    margin-top: 40px;
  }

  .blog-sidebar {
    display: flex;
    flex-direction: column;
  }

  .blog-details h1,
  .blog-details .h1 {
    font-size: var(--fs36);
  }

  .blog-sidebar .blog-serch {
    margin-bottom: 0;
    max-width: 100%;
  }

  .contact-us-right {
    margin-bottom: 40px;
    margin-right: 0;
  }

  .col-lg-4:not(:last-child) .hire-model-card {
    margin-bottom: 24px;
  }

  .hiring-steps {
    margin-bottom: -30px;
  }

  .hiring-stepsc-col {
    margin-bottom: 50px;
  }

}

@media (max-width: 767px) {
  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-ourWorkMenu.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    margin-bottom: 10px;
  }

  .header #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-ourWorkMenu.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link {
    font-size: 14px;
  }

  .header .logo img {
    width: 200px;
  }

  h1,
  .h1 {
    font-size: var(--fs36);
  }

  h2,
  .h2 {
    font-size: var(--fs30);
  }


  .banner-content {
    animation-duration: 1s;
  }

  .banner-vectore {
    animation-duration: 1.5s;
  }

  .mb50 {
    margin-bottom: 30px;
  }

  .number-box .count-no {
    font-size: var(--fs36);
    padding: 24px 20px 50px;
  }

  .number-box .count-no::before {
    height: 40px;
  }

  .services-devs .tab-nav {
    padding-right: 0;
    padding-bottom: 20px;
  }

  .portfolio-slide .mockup-image iframe {
    height: calc(100vw - 317px);
  }

  .testimonials-sec .row {
    flex-wrap: wrap;
  }

  .testimonials-sec .col {
    margin-bottom: 20px;
  }

  .ib-card-row {
    margin: 15px -30px 0;
  }

  .ib-card {
    padding: 0 30px;
  }

  .inner-baner-img {
    width: 80px;
    right: 20px;
    bottom: -60px;
  }

  .our-story-tabs .tab-nav {
    flex-wrap: wrap;
    margin-top: 20px;

  }

  .our-story-tabs .tab-link {
    padding: 0;
    width: 33.33%;
  }

  .story-year {
    padding-bottom: 34px;
  }

  .story-tag {
    padding-bottom: 16px;
    margin: 0 auto;
  }

  .our-story-tabs .tab-link::before {
    top: 42px;
  }

  .our-story-tabs .tab-link::after {
    top: 32px;
    width: 20px;
    height: 20px;
  }

  .our-story-tabs {
    display: flex;
    flex-wrap: wrap;
  }

  .our-story-tabs>.row {
    order: 1;
  }

  .our-story-tabs .tab-content {
    order: 3;
  }

  .our-story-tabs .tab-nav {
    order: 2;
  }

  .contact-simple-sec {
    padding: 50px 0;
  }

  .leadership-img {
    max-width: 105px;
  }

  .ma-number-col {
    padding: 20px 12px;
  }

  .ma-number-box .h4 {
    font-size: var(--fs16);
  }

  .releted-blogs-sec {
    padding-bottom: 40px;
  }

  .releted-blog-title {
    margin-bottom: 24px;
  }

  .blog-details h1,
  .blog-details .h1 {
    font-size: var(--fs28);
  }

  blog-details-content h2,
  .blog-details-content .h2 {
    font-size: var(--fs24);
    font-weight: 700;
  }

  .blog-details-content h3,
  .blog-details-content .h3 {
    font-size: var(--fs22);
    font-weight: 700;
  }

  .blog-details-content h4,
  .blog-details-content .h4 {
    font-size: var(--fs20);
    font-weight: 700;
  }

  .blog-details-content h5,
  .blog-details-content .h5 {
    font-size: var(--fs18);
    font-weight: 700;
  }

  .blog-details-content h6,
  .blog-details-content .h6 {
    font-size: var(--fs16);
    font-weight: 600;
  }

  #cf7-popup-modal .cf7-modal-content {
    padding: 24px 24px 0;
  }

  .cf7-modal-content .h2 {
    font-size: var(--fs28);
    margin-bottom: 24px;
  }


}

@media (max-width: 575px) {
  body {
    font-size: var(--fs16);
    line-height: 1.3;
  }

  .my55 {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .my110 {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .mt55 {
    margin-top: 30px;
  }

  .mt110 {
    margin-top: 60px;
  }

  .mb55 {
    margin-bottom: 30px;
  }

  .mb110 {
    margin-bottom: 60px;
  }

  .py55 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .py110 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pt55 {
    padding-top: 30px;
  }

  .pt110 {
    padding-top: 60px;
  }

  .pb55 {
    padding-bottom: 30px;
  }

  .pb110 {
    padding-bottom: 60px;
  }


  .container {
    padding: 0 20px;
  }

  .header .logo img {
    width: 150px;
  }

  h1,
  .h1 {
    font-size: var(--fs26);
    font-weight: 700;
    line-height: 1.25;
  }

  h2,
  .h2 {
    font-size: var(--fs24);
  }

  .why-choose-us .img-team {
    display: none;
  }

  h3,
  .h3 {
    font-size: var(--fs20);
  }

  h3,
  .h3 {
    font-size: var(--fs18);
  }

  .banner-content .top-title {
    margin-bottom: 12px;
  }

  .banner-sec .site-btn {
    margin-top: 35px;
  }

  .scroll-down-btn {
    transform: scale(.7);
    right: 0;
    bottom: 0;
  }

  .top-title {
    margin-bottom: 2px;
    font-size: var(--fs16);
    letter-spacing: 1px;
  }

  .tab-link {
    padding: 16px 20px 16px 0;
    margin-bottom: 4px;
  }

  .services-no {
    width: 40px;
    max-width: 40px;
    height: 40px;
    font-size: var(--fs18);
  }

  .portfolio-sec .title {
    padding: 0 20px;
  }

  .site-btn {
    /* padding: 15px 30px; */
    font-size: var(--fs16);
  }

  .listing {
    margin-bottom: 30px;
  }

  .why-choose-us .image-container {
    margin-top: 40px;
  }

  .why-choose-us .badge-experience {
    bottom: -12px;
    right: -12px;
    width: 110px;
    height: 110px;
    font-size: var(--fs14);
  }

  .badge-experience .num {
    font-size: var(--fs24);
  }

  .portfolio-slide .mockup-image iframe {
    height: calc(100vw - 153px);
  }

  .portfolio-slider .slick-prev {
    left: 16px;
  }

  .portfolio-slider .slick-next {
    right: 16px;
  }

  .testimonial-slider {
    padding-bottom: 80px;
  }

  .testimonials-sec .row,
  .testimonials-sec .top-title {
    justify-content: center !important;
  }

  .testimonials-sec .title {
    text-align: center;
    margin-bottom: 20px;
  }

  .slick-prev {
    right: initial;
  }

  .slick-arrow {
    width: 52px;
    height: 52px;
    background-size: 16px;

  }

  .client img {
    max-width: 52px;
    height: 52px;
  }

  .testimonials-sec .row .col {
    margin-bottom: 0;
  }

  .testimonial-card .quote {
    padding-bottom: 30px;
    font-size: var(--fs18);
    margin-bottom: 24px;
  }

  .blog-info {
    padding: 20px;
  }

  .blog-sec a.site-btn {
    margin: 0 auto;
  }

  .footer-logo {
    max-width: 200px;
  }

  .footer-col {
    padding: 15px 12px;
  }

  .top-footer {
    padding: 40px 0 20px;
  }

  .copyRights {
    padding: 24px 20px;
    font-size: var(--fs14);
  }

  .inner-banner-sec .title {
    margin-bottom: 20px;
  }

  .ib-card .count-no {
    font-size: var(--fs36);
  }

  .ib-card-row {
    margin: 10px -20px 0;
    align-items: self-start !important;
  }

  .ib-card {
    padding: 0 20px;
    width: 50%;
  }

  .ib-card br {
    display: none;
  }

  .leadership-img {
    max-width: 100px;
  }

  .features-box li {
    width: 100%;
  }

  .more-about {
    font-size: var(--fs30);
    padding: 50px 0 60px;
  }

  .ma-number-col {
    max-width: 50% !important;
  }

  .awards-devs {
    padding: 20px 0 50px;
  }

  .trending-blogs {
    padding: 20px;
  }

  .blog-sec .title {
    margin-bottom: 20px;
  }

  .trending-blogs .blog-card {
    flex-direction: column;
  }

  .trending-blogs .blog-img img {
    max-width: 100%;
  }

  .trending-blogs .blog-info {
    padding: 16px 0 4px;
  }

  .blog-categories li {
    padding: 8px 12px;
    min-width: 60px;
    justify-content: center;
    font-size: var(--fs14);
    font-weight: 500;
  }

  .blog-categories li span {
    display: none;
  }

  .blog-sidebar .blog-serch {
    margin-top: 30px;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .all-blog-sec .title {
    text-align: center;
  }

  .releted-blog-title {
    margin-bottom: 0;
  }

  .blog-top {
    padding: 60px 0;
  }

  .releted-blogs-sec {
    padding-bottom: 30px;
  }

  .contact-us-right .h3 {
    margin-bottom: 12px;
    font-size: var(--fs24);
  }

  .contact-us-right .title {
    font-size: var(--fs16);
    margin-bottom: 24px;
  }

  .contact-us-right {
    margin-bottom: 30px;
    padding: 24px 20px 30px;
  }

  .contact-card .h4 {
    font-size: var(--fs18);
  }

  .map-sec .title {
    margin-bottom: 20px;
  }

  .portfolio-tabs .tab-link {
    padding: 4px;
    margin-bottom: 0;
    width: 100%;
  }

  .portfolio-tabs .tab-link span {
    width: 100%;
  }

  .portfolio-tabs .tab-nav {
    margin: -4px -4px 30px;
  }

}

@media(min-width : 1200px) {
  .header .customRowFlex>.mega-sub-menu {
    column-gap: 40px;
  }
}