@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* font-family: "Montserrat", sans-serif; */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --scroll-behavior: smooth;
  --default-font: "Montserrat", sans-serif;
  --max-card-height: 600;
  --min-card-height: 350;
}

html {
  scroll-behavior: var(--scroll-behavior);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  height: auto;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  color: #00000099;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.4em;
}

img {
  max-width: 100%;
}

b,
strong {
  font-weight: 600;
}

p {
  margin: 0 0 25px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
.h1-heading,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  font-weight: 600;
  color: #000000;
  line-height: 1.2em;
  padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

.h1-heading,
h1 {
  font-size: 55px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1em;
}

h2 {
  font-size: 40px;
  margin: 0 0 15px 0;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

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

a {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  color: #00000099;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  color: #000;
}

.cmn-hd {
  margin-bottom: 50px;
}

.cmn-hd:last-child {
  margin-bottom: 0px;
}

.cmn-btn {
  display: inline-flex;
  min-width: 166px;
  align-items: center;
  color: #fff;
  background-color: #122237; /* Matches image_a0de5b.png */
  text-align: center;
  text-transform: uppercase;
  padding: 17px 25px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cmn-btn span {
  position: relative;
}

.cmn-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.2s ease-in-out;
  background-color: #ffffffd8;
}

.cmn-btn:hover {
  color: #ffffff;
}

.cmn-btn span i {
  font-size: 11px;
  transition: all 0.3s ease-in-out;
  transform: rotate(-30deg);
}

.cmn-btn:hover i {
  opacity: 0;
  transform: scaleX(0) rotate(-30deg);
}

.cmn-btn:hover span::after {
  left: auto;
  width: 0%;
  right: 0;
}

.cmn-btn:hover span::before {
  content: "\f105";
  font-family: "fontawesome";
  position: absolute;
  right: 4px;
  top: 5px;
  transform: scaleY(0);
  font-size: 11px;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
}

.cmn-btn:hover span::before {
  top: 0;
  transform: scaleY(1);
}

.cmn-btn-border {
  background-color: transparent;
  color: #122237;
  box-shadow: 0 0 0 1.5px #122237 inset;
}

.cmn-btn-border span::after {
  background-color: #122237;
}

.cmn-btn-border:hover span::before,
.cmn-btn-border i,
.cmn-btn-border:hover {
  color: #122237;
}

label {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

input[type="password"],
input[type="email"],
input[type="tel"],
input[type="text"] {
  width: 100%;
  background: #15283a;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #eeeeee36;
  transition: all 0.3s;
  color: #ffffff;
  outline: none;
}

::placeholder {
  opacity: 1;
  color: #ffffff;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 50px;
  background-color: #15283a;
  background-image: url(../images/down-arrow.png);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: 20px auto;
  border-radius: 5px;
  border: 1px solid #eeeeee36;
  outline: none;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}

/* Hide arrow in IE/Edge */
select::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  background: #15283a;
  font-size: 15px;
  font-weight: 400;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #eeeeee36;
  transition: all 0.3s;
  color: #ffffff;
  outline: none;
  resize: none;
  height: 100px;
}

.cmn-gap {
  padding: 100px 0;
  position: relative;
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.container-fluid {
  max-width: 1515px;
  margin: 0 auto;
}

/* header */
.header-top {
  padding: 16px 0px;
  border-bottom: 1px solid #0000001a;
  margin-bottom: 12px;
}

.hd-top-left-cont ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hd-top-left-cont ul li i {
  margin-right: 3px;
  color: #484848;
}

.hd-top-left-cont ul li a,
.hd-top-left-cont ul li {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.hd-top-left-cont ul li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background-color: #00000065;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}

.hd-top-left-cont ul li:last-child::before {
  display: none;
}

.hd-top-left-cont ul li a:hover {
  color: #76b413;
}

.hd-top-left-cont.hd-top-rgt-cont ul {
  justify-content: flex-end;
}

.navbar__right-btn {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* banner */

.banner {
  margin-top: 160px;
  overflow: hidden;
}

.banner-wrap {
  padding: 0px 12px;
  max-width: 1515px;
  margin: 0 auto;
}

.banner-content {
  background-color: #122237;
  padding: 65px 50px 30px;
  height: 100%;
  border-radius: 12px;
}

.banner-content p {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.sub-hd {
  position: relative;
  display: inline-flex;
  text-transform: uppercase;
  padding-left: 30px;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
}

.banner-content .sub-hd {
  color: #fff;
}

.sub-hd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background-image: url(../images/two-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.sub-hd-blk::before {
  background-image: url(../images/sub-img-two.svg);
}

.banner-content-btn {
  margin-top: 40px;
}

.banner-content-btn .cmn-btn {
  width: 100%;
  background-color: #cff480;
  color: #122237;
}

.banner-content-btn .cmn-btn span::after {
  background-color: #122237;
}

.banner-content-btn .cmn-btn span::before {
  color: #122237;
}

.banner-img {
  border-radius: 12px;
  overflow: hidden;
}

.product-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.mosaic-card {
  background: linear-gradient(
    157.1deg,
    rgb(63 83 111) 1.82%,
    rgb(2 5 10) 96.68%
  );
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.mosaic-card:nth-child(2) {
  background: linear-gradient(
    157.1deg,
    rgb(42 79 72) 1.82%,
    rgb(8, 23, 40) 96.68%
  );
}

.mosaic-card:nth-child(3) {
  background: linear-gradient(157.1deg, #3e421a 1.82%, #141d22 96.68%);
}

.mosaic-card:nth-child(4) {
  background: linear-gradient(157.1deg, #5d7629 1.82%, #141d22 96.68%);
}

.mosaic-card i {
  color: #fff;
  font-size: 30px;
  margin-bottom: 12px;
}

.banner-count-col h3,
.mosaic-card h3 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.banner-count-col p,
.mosaic-card p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.banner-count {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}

.banner-count-col {
  border-left: 2px solid #ffffff53;
  padding-left: 12px;
}

.banner-count-col h3 {
  font-size: 18px;
}

.banner-count-col p {
  font-size: 12px;
}

/* banner slider */
/* Container sizing (adjust as needed) */
.bannerSwiper {
  width: 100%;
  height: 420px; /* Example height */
  overflow: hidden;
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(100.6deg, #074824 15.77%, #6fa056 86.29%);
}

.banner-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Smooth transition for the image animation */
  transition: transform 1.5s ease-out;
}

/* --- Custom Pagination Dots --- */
.bannerSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #a6a6a6; /* Inactive dot color */
  opacity: 0.5;
  transition: all 0.3s ease; /* Smooth resizing */
  border-radius: 50%;
}

/* --- Active Dot (Big) --- */
.bannerSwiper .swiper-pagination-bullet-active {
  width: 12px; /* Make active dot bigger */
  height: 12px; /* Make active dot bigger */
  background-color: #000000; /* Active dot color */
  opacity: 1;
}

/* Aligning the bigger dot vertically with the others */
.bannerSwiper .swiper-pagination {
  display: inline-flex;
  justify-content: center;
  width: auto;
  align-items: center;
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  height: 30px;
  padding: 0 20px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px; /* Distance from bottom */
}

.marquee-section {
  overflow: hidden;
  background-image: linear-gradient(
    270deg,
    rgba(157, 211, 56, 0.1) 0%,
    rgb(200 254 99 / 35%) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 12px;
  margin-top: 30px;
  padding: 40px 0;
}

.marquee-container {
  display: flex;
  width: max-content;
}

.marquee-track {
  display: flex;
  gap: 40px;
  padding-right: 40px;
}

.marquee-card {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 280px;
  text-align: center;
}

.marquee-card-img {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee-card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.marquee-card-cont h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0;
  white-space: nowrap;
}

.what-we-do .cmn-hd {
  max-width: 800px;
}

.what-we-do-wrap {
  padding-left: 100px;
}

.what-we-do-card-img {
  position: relative;
  padding-top: 80%;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: -2;
}

.what-we-do-card-img .image-overlay {
  transition: all 0.9s ease-in-out;
}

.what-we-do .row {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 60px;
}

.what-we-do-card-cont {
  margin-top: 25px;
}

.what-we-do-card-cont h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.what-we-do-card-cont p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.what-we-do-card-link:hover .image-overlay {
  transform: scale(1.1);
}

.what-we-do-card-link {
  position: relative;
}

.what-we-do-card-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 61px;
  height: 27px;
  background-image: url(../images/card-line-after.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.what-we-do-col:nth-child(3n) .what-we-do-card-link::after {
  display: none;
}

.inner-contact-wrap {
  background-color: #122237;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

.inner-contact-flex {
  max-width: 1100px;
  margin: 0 auto;
}

.inner-contact-lft {
  text-align: center;
  padding-right: 40px;
}

.inner-contact-lft .sub-hd {
  color: #fff;
}

.inner-contact-lft h2 {
  color: #fff;
}

.inner-contact-lft h2 span {
  color: #cff480;
}

.single-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 40px;
  position: relative;
}

.contact-icon {
  position: relative;
}

.contact-icon img {
  max-width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-icon::after {
  content: "";
  position: absolute;
  background-color: #ffffff33;
  left: 37px;
  width: 1px;
  height: 35px;
}

.contact-content span {
  color: #888888;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.pln-txt,
.contact-content a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: block;
  transition: all 0.5s;
}

.contact-content a:hover {
  color: #cff480;
}

.contact-content {
  text-align: left;
}

.single-contact:last-child {
  margin-bottom: 0;
}

.contact-icon-arrow {
  margin: 40px auto;
  pointer-events: none;
  user-select: none;
}

.inner-contact-rgt {
  background-color: #06192b;
  border-radius: 17px;
  padding: 30px;
}

.inner-contact-rgt .banner-content-btn {
  margin-top: 0;
}

.inner-contact-flex .row {
  align-items: center;
}

.cta-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.cta-wrap p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.page-footer {
  position: relative;
  background-color: #122237;
  z-index: 1;
}

.footer-logo {
  max-width: 100px;
  display: inline-flex;
}

.footer-top {
  padding: 55px 0 20px;
  border-bottom: 1px solid #ffffff1a;
}

.footer-top-rgt .contact-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 40px;
}

.footer-top-rgt .single-contact {
  margin: 0;
}

.footer-top-rgt .pln-txt,
.footer-top-rgt .contact-content a {
  font-size: 16px;
}

.footer-top .row {
  align-items: center;
}

.page-footer p {
  color: #91a1a7;
  font-size: 14px;
}

.footer-center {
  padding: 100px 0 50px;
}

.hd-social-col {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-bottom: 20px;
}

.social-col ul {
  display: flex;
  gap: 50px;
}

.social-col ul li a {
  font-size: 16px;
  color: #91a1a7;
}

.social-col ul li a:hover {
  color: #fff;
}

.ftr-hed {
  font-size: 21px;
  padding: 0 0 12px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  color: #fff;
}

.ftr-hed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(
    90.01deg,
    #cff480 0.01%,
    rgba(244, 116, 24, 0) 102.8%
  );
}

.ftr-col-link {
  padding-left: 20px;
}

.ftr-col-link ul li a {
  font-size: 14px;
  line-height: 1;
  color: #91a1a7;
}

.ftr-col-link ul li {
  margin-bottom: 13px;
}

.ftr-col-link ul li:last-child {
  margin-bottom: 0px;
}

.ftr-col-link ul li a:hover {
  color: #fff;
}

.ftr-two-col ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ftr-two-col ul li {
  margin-bottom: 0px;
}

.footer-btm {
  border-top: 1px solid #ffffff1a;
  padding: 40px 0;
}

.footer-btm p a {
  text-decoration: underline !important;
  color: #fff;
  font-size: 14px;
}

.footer-btm .ftr-col-link ul {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.footer-btm .ftr-col-link ul li {
  margin-bottom: 0px;
}

/* our-products */
.our-products {
  background-color: #d8e7ef;
  border-radius: 12px;
}

.myServiceSlider {
  padding: 0 20px;
  margin-top: 60px;
}

.service-card {
  padding: 25px;
  border-radius: 12px;
}

.svr-number {
  display: inline-block;
  color: #6fa056;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.service-card img {
  width: 100%;
  height: 197px;
  margin-top: 20px;
  object-fit: cover;
  border-radius: 12px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  position: relative;
}

.btn-more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease-in-out;
  background-color: #00000099;
}

.btn-more:hover::before {
  left: auto;
  width: 0%;
  right: 0;
}

.btn-more::after {
  content: "\f061";
  font-family: "fontawesome";
  position: absolute;
  font-weight: normal;
  bottom: 0;
  left: 100%;
  margin-left: 8px;
}

.swiper-slide:nth-child(4n + 1) .service-card {
  background: #e5e8bf;
}

.swiper-slide:nth-child(4n + 2) .service-card {
  background: #d2ead5;
}

.swiper-slide:nth-child(4n + 3) .service-card {
  background: #aac8f6;
}

.swiper-slide:nth-child(4n + 4) .service-card {
  background: #abd0e3;
}

.what-we-do-wrap {
  position: relative;
}

.service-next {
  width: 40px;
  height: 40px;
  background: #333;
  position: absolute;
  top: 87px;
  left: unset;
  border-radius: 100%;
  right: 85px;
  transform: translateY(0%);
  z-index: 1;
}

.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #333;
  position: absolute;
  top: 87px;
  border-radius: 100%;
  left: unset;
  right: 140px;
  transform: translateY(0%);
  z-index: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 17px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #fff;
}

.we-serve .cmn-hd {
  max-width: 800px;
  margin: 0 auto;
}

/* aaa */
.industry-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 7px;
  margin-top: 40px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 15px;
  border: 1.5px solid #a7b8ff;
  border-radius: 60px;
  opacity: 1;
  text-decoration: none;
  color: #1c1c1c;
  background: #f5fdff;
  transition: all 0.3s ease-in-out;
}

.industry-item img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  flex-shrink: 0;
}

.industry-item span {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.industry-item:hover {
  background: rgb(18, 34, 55);
  color: #fff;
  border-color: rgb(18, 34, 55);
  transform: translateY(-3px);
}

.industry-item:hover img {
  filter: brightness(0) invert(1);
}

.global-reach-sec {
  padding: 0px 12px;
}

.global-reach-wrap {
  background-color: #122237;
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.global-reach-wrap .cmn-hd {
  max-width: 900px;
  margin: 0 auto;
}

.global-reach-wrap .sub-hd {
  color: #fff;
}

.global-reach-wrap h2 {
  color: #fff;
}

.global-reach-wrap p {
  color: rgba(255, 255, 255, 0.8);
}

.global-reach-cont {
  margin-top: 50px;
}

/* counter */
.skills {
  display: flex;
  align-items: flex-end;
  height: 600px;
}

.skill-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 100px;
}

.skill-card:nth-child(1) {
  background: #96b3dc;
}

.skill-card:nth-child(2) {
  background: #7ca184;
}

.skill-card:nth-child(3) {
  background: #91b79b;
}

.skill-card:nth-child(4) {
  background: #818ab0;
}

.skill-card:nth-child(5) {
  background: #8e95b8;
}

.skill-content {
  position: absolute;
  inset: 0;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.counter {
  font-size: 30px;
  font-weight: 700;
}

.skill-content span {
  width: 85%;
  height: 1px;
  background: rgb(255 255 255 / 50%);
  display: block;
  position: absolute;
  top: 74px;
  left: 12px;
}

.skill-content h3 {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

.global-reach-rgt-col {
  display: flex;
  justify-content: center;
  gap: 15px;
  background: #ffffff14;
  border: 1px solid #ffffff54;
  padding: 20px;
  border-radius: 12px;
}

.global-reach-rgt-col-img {
  max-width: 40px;
  height: 40px;
  padding: 7px;
  background: #cff480;
  flex-shrink: 0;
  border-radius: 4px;
}

.global-reach-rgt-col-cont h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.global-reach-rgt-col-cont p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.global-reach-rgt-col:not(:first-child) {
  margin-top: 16px;
}

/* step wrap */

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 45px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #c4c4c4;
}

.timeline-item {
  position: relative;
  text-align: center;
  z-index: 2;
}

.step {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #51544d;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #b1d269;
  box-shadow: 0 0px 18px #b1d269;
}

/* Cards */

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: rgb(16 34 0 / 7%) 0px 8px 15px;
  border-top: 3px solid rgb(177, 210, 105);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.process-card:hover {
  transform: translateY(-10px);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(179 223 114 / 33%);
  color: rgb(53 140 53);
  font-size: 21px;
  margin: 0 auto 20px;
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 700;
}

.line {
  width: 75px;
  height: 3px;
  border-radius: 30px;
  margin: 0 auto;
  margin-bottom: 17px;
  background: #8ab232;
}

.what-we-do-col {
  padding-top: 40px;
  border-top: 1px solid #15283a59;
}

.what-we-do-col h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.we-build-sec .what-we-do-col {
  padding-top: 0px;
  border-top: none;
}

.industry-item span {
  font-size: 14px;
}

.industry-item img {
  width: 19px;
  height: 19px;
}

.industry-container {
  gap: 9px;
}

.skill-card {
  height: calc(var(--min-card-height) * 1px);
}

.what-we-do {
  overflow: hidden;
}

/* animation heading */
.word {
  display: inline-block;
  overflow: hidden;
}

.word .word-inner {
  display: inline-block;
  will-change: transform;
}

[data-sub-heading] {
  display: inline-block;
}

.about-story-img {
  border-radius: 12px;
  overflow: hidden;
}

.about-story-img-wrap {
  position: relative;
  padding-right: 50px;
}

.about-story-img-sm {
  max-width: 400px;
  position: absolute;
  bottom: -165px;
  right: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 10px solid #ffffff;
  box-shadow: 0 0 5px #3333334f;
}

.cmn-hd-sm {
  max-width: 900px;
}

.cmn-hd-sm h2 {
  margin-bottom: 30px;
}

.cmn-hd-sm p {
  margin-bottom: 15px;
}

.cmn-hd-sm p b {
  color: #fff;
}

.drives-us-grd {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 60px;
}

.drives-us-col {
  grid-column: span 2;
  position: relative;
  border-top: 1px solid #ffffff0e;
  padding: 40px 30px;
}

/* Center last two cards */
.drives-us-col:nth-child(4) {
  grid-column: 2 / span 2;
}

.drives-us-col:nth-child(5) {
  grid-column: 4 / span 2;
}

.drives-us-col img {
  max-width: 70px;
  margin-bottom: 30px;
}

.drives-us-col h3 {
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.drives-us-col::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  opacity: 0.1;
  right: 0px;
  top: 0px;
  background: linear-gradient(
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.drives-us-col:nth-child(3n):after,
.drives-us-col:last-child:after {
  display: none;
}

.the-work-sec {
  margin-top: 15px;
}

.the-work-wrap {
  background-color: #d8e7ef;
  border-radius: 12px;
  padding-left: 20px;
  padding-right: 20px;
}

.the-work-wrap .cmn-hd {
  max-width: 800px;
  margin-left: 80px;
}

.svr-grd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.svr-card {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.svr-card:nth-child(4n) {
  border-right: 0;
}

.svr-card::before {
  content: "";
  position: absolute;
  height: 100%;
  left: 20px;
  right: 20px;
  background: #122237;
  transform: translateY(100%);
  transition: 0.5s;
  z-index: 1;
}

.svr-card:hover::before,
.svr-card.active::before {
  transform: translateY(0);
}

.svr-card:hover::after,
.svr-card.active::after {
  opacity: 0.18;
}

.service-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 55px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-bottom img {
  max-width: 60px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.service-card-bottom h3 {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.service-card-bottom p {
  transition: all 0.3s ease-in-out;
}

.svr-card.active img {
  filter: brightness(0) saturate(100%) invert(89%) sepia(32%) saturate(570%)
    hue-rotate(23deg) brightness(100%) contrast(96%);
}

.svr-card.active .service-card-bottom h3,
.svr-card.active p {
  color: #fff;
}

/* cr */
.career-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #d8e7ef;
  border-radius: 12px;
  padding: 70px 30px;
}

.department-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000000ad;
}

.engineering {
  margin-top: 60px;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  transition: 0.35s;
}

.job-title {
  width: 30%;
}

.job-title h3 {
  font-size: 25px;
  color: #000;
  margin: 0 0 12px;
}

.job-info {
  width: 18%;
}

.job-info span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #00000099;
  margin-bottom: 8px;
}

.job-info h4 {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.job-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #e6e6e6;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  color: #000;
  transition: 0.35s;
}

.job-action {
  display: flex;
  align-items: center;
  gap: 24px;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.job-card:hover .job-btn {
  background: #cff480;
  color: #000;
  border-color: #cff480;
}

.job-info.job-info-full {
  width: 60%;
}

.cmn-tab-all {
  margin-top: 30px;
}

.cmn-tab-all .industry-container {
  justify-content: flex-end;
}

.cmn-tab-all .industry-item span {
  font-size: 18px;
}

.cmn-tab-all .industry-item {
  padding: 14px 21px;
  border: none;
  border-radius: 5px;
  color: #1c1c1c;
  background: #ffffff;
}

.industry-item.is-active,
.industry-item.is-active-filter {
  color: #fff;
  background: #1c1c1c;
}

.job-meta-list {
  display: flex;
  gap: 10px;
}

.job-meta-list li {
  font-size: 10px;
  background: #1c1c1c;
  color: #fff;
  padding: 1px 11px;
  border-radius: 16px;
}

.our-products .card-box {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
}

.our-products .card-box h3 {
  font-size: 33px;
}

.our-products .card-box p {
  font-size: 18px;
  margin-bottom: 40px;
}

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

.in-svr-card {
  display: flex;
  gap: 20px;
}

.in-svr-card-icon {
  font-size: 30px;
  color: #86b91b;
  margin-top: 7px;
}

.in-svr-card-content h3 {
  margin-bottom: 13px;
}

.region-card-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.region-card-list li {
  background: #789559;
  color: #fff;
  font-size: 10px;
  padding: 6px 11px 5px;
  border-radius: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.drives-us-col-icon {
  margin-bottom: 30px;
}

.drives-us-col-icon i {
  color: #c9dbee;
  font-size: 45px;
}

.job-detail-content h3 {
  font-size: 20px;
  margin: 0 0 6px;
}

.job-detail-content h3 + h3 {
    margin: 0 0 20px;
}

.job-detail-content p {
    color: #353535;
    margin: 0 0 10px;
}

.job-detail-content p strong {
      color: #000;
}

.job-detail-content ol {
    margin: 0 0 20px;
    padding: 0 0 0 17px;
    list-style: none;
}

.job-detail-content ol li {
    font-weight: 500;
    font-size: 14px;
    color: #646464;
    position: relative;
}
.job-detail-content ol li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
    background: #3535358a;
}

.service-tie-in-row p {
  color: #fff;
}

.job-apply-sidebar {
  transition: all 0.3s ease-in-out;
    position: sticky;
    top: 15px;
}

/* Responsive */

@media (min-width: 1400px) {
  .container {
    max-width: 1464px;
  }
}

@media (max-width: 1440px) {
  .cmn-btn {
    min-width: 156px;
    padding: 13px 12px;
    font-size: 13px;
  }

  .navbar__right-btn {
    gap: 8px;
  }

  .navbar.container {
    max-width: 100%;
  }

  .menu .menu__inner .menu__item .menu__link {
    font-size: 14px;
  }
}

@media (max-width: 1380px) {
  .h1-heading,
  h1 {
    font-size: 44px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .banner-count-col p {
    font-size: 10px;
  }

  .mosaic-card i {
    font-size: 20px;
  }

  .banner-count-col h3,
  .mosaic-card h3 {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .bannerSwiper {
    height: 389px;
  }

  .h1-heading,
  h1 {
    font-size: 40px;
  }

  .marquee-card-img {
    width: 30px;
    height: 30px;
  }

  .marquee-card-cont h3 {
    font-size: 16px;
  }

  .marquee-card {
    width: 240px;
  }

  .what-we-do-wrap {
    padding-left: 0px;
  }

  .our-products .what-we-do-wrap {
    padding-left: 20px;
  }

  .timeline {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-card {
    border-radius: 12px;
    padding: 50px 34px;
  }

  .icon-wrap {
    margin: 0 auto 40px;
  }

  .cta-wrap p {
    font-size: 16px;
  }

  .ftr-two-col ul {
    gap: 5px;
  }

  .ftr-col-link ul li a {
    font-size: 12px;
  }

  .page-footer p {
    font-size: 12px;
  }

  .ftr-hed {
    font-size: 18px;
  }

  .ftr-hed::after {
    width: 66px;
  }

  .footer-center .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .social-col ul {
    gap: 30px;
  }

  .footer-top-rgt .pln-txt,
  .footer-top-rgt .contact-content a {
    font-size: 14px;
  }
  .contact-content span {
    font-size: 11px;
    margin-bottom: 9px;
  }

  .footer-center {
    padding: 50px 0 40px;
  }

  .footer-btm p a {
    font-size: 11px;
  }

  .footer-btm {
    padding: 20px 0;
  }
}

@media (max-width: 1199px) {
  body {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }

  .cmn-gap {
    padding: 60px 0;
  }

  .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .h1-heading,
  h1 {
    font-size: 38px;
  }

  .banner-content {
    padding: 30px;
  }

  .bannerSwiper {
    height: 314px;
  }

  .marquee-section {
    margin-top: 20px;
    padding: 20px 0;
  }

  .what-we-do .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 40px;
  }
  .what-we-do-card-link::after {
    display: none;
  }

  .what-we-do-col h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .what-we-do-card-cont {
    margin-top: 15px;
  }

  .myServiceSlider {
    margin-top: 40px;
  }

  .skill-content h3 {
    font-size: 14px;
  }

  .page-footer .container {
    max-width: 100%;
  }

  .service-content {
    padding: 35px 35px;
  }

  .service-card-bottom img {
    max-width: 40px;
  }

  .service-card-bottom h3 {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }

  .our-products {
    padding-left: 12px;
    padding-right: 12px;
  }

  .myServiceSlider {
    padding: 0;
  }

  .service-next {
    right: 0;
  }

  .swiper-button-prev {
    right: 55px;
  }
}

@media (max-width: 991px) {
  body {
    font-size: 14px;
    line-height: 1.4em;
  }

  .banner {
    margin-top: 140px;
  }

  .header {
    padding-top: 0px;
  }

  .bannerSwiper {
    height: unset;
  }

  .bannerSwiper .swiper-pagination {
    bottom: -3px;
  }

  .swiper-button-prev,
  .service-next {
    top: 17px;
  }

  .icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 16px;
    margin: 0 auto 20px;
  }

  .process-card {
    padding: 34px 27px;
  }

  .inner-contact-rgt {
    background-color: transparent;
    padding-bottom: 0;
  }

  .inner-contact-lft {
    padding: 0 12px;
  }

  .ftr-col-link ul li {
    margin-bottom: 0px;
  }

  .ftr-col-link ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .about-story-img-wrap {
    padding-right: 160px;
  }

  .about-story-img-sm {
    bottom: 0;
  }

  .about-story-img-sm {
    max-width: 230px;
    border: 5px solid #ffffff;
  }

  .drives-us-grd {
    grid-template-columns: repeat(2, 1fr);
  }

  .drives-us-col {
    grid-column: unset !important;
  }

  .drives-us-col:nth-child(3n):after,
  .drives-us-col:last-child:after {
    display: block;
  }

  .drives-us-col:nth-child(2n)::after {
    display: none;
  }

  .svr-grd {
    grid-template-columns: repeat(3, 1fr);
  }

  .the-work-wrap .cmn-hd {
    margin-left: 0;
    padding: 0 12px;
  }

  .text-center-mobile {
    text-align: center;
  }

  .industry-container {
    gap: 6px;
  }

  .job-title {
    width: 100%;
  }

  .cmn-tab-all .industry-item span {
    font-size: 12px;
  }

  .cmn-tab-all .industry-item {
    padding: 9px 14px;
  }

  .job-card {
    flex-direction: column;
    position: relative;
  }

  .job-info {
    margin-top: 17px;
    width: 100%;
  }

  .job-btn {
    width: 40px;
    height: 40px;
    font-size: 15px;
    position: absolute;
    top: 25px;
    right: 25px;
  }

  .job-listing-grid {
    gap: 0;
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  h2 {
    font-size: 34px;
  }

  .none-mb {
    display: none;
  }

  .header .row {
    --bs-gutter-x: 0;
  }

  .header-top {
    padding: 10px 0px;
    border-bottom: none;
    background: #122237;
  }

  .hd-top-left-cont ul li i {
    color: #fff;
  }

  .hd-top-left-cont ul li a,
  .hd-top-left-cont ul li {
    color: #d3d3d3;
    font-size: 12px;
  }

  .hd-top-left-cont ul {
    justify-content: space-around;
    gap: 0px;
  }

  .hd-top-left-cont ul li::before {
    display: none;
  }

  .header-top {
    position: relative;
    z-index: 1;
  }

  .header-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #cff480;
    z-index: -1;
  }

  .hd-top-left-cont ul li:first-child a,
  .hd-top-left-cont ul li:first-child i {
    color: #000;
  }

  .banner {
    margin-top: 123px;
  }

  .sub-hd {
    margin-bottom: 10px;
  }

  .global-reach-wrap .cmn-hd {
    padding: 0px 12px;
  }

  .skills {
    height: auto;
  }

  .counter {
    font-size: 16px;
  }

  :root {
    --max-card-height: 400;
    --min-card-height: 150;
  }

  .skill-content h3 {
    font-size: 10px;
  }

  .skill-content {
    padding: 20px 10px;
  }

  .skill-content span {
    width: 77%;
    top: 51px;
    left: 10px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-we-do-col {
    padding-top: 20px;
  }

  .what-we-do-col h3 {
    font-size: 16px;
  }

  .inner-contact-rgt {
    padding: 0 12px 0;
    margin-top: 30px;
  }

  .ftr-col-link {
    padding-left: 0;
  }

  .footer-top-rgt .contact-area {
    justify-content: flex-start;
    gap: 28px;
  }

  .footer-top-rgt .pln-txt,
  .footer-top-rgt .contact-content a {
    font-size: 12px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-btm .ftr-col-link ul {
    gap: 15px;
    justify-content: center;
  }

  .footer-btm p {
    text-align: center;
  }

  .svr-grd {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 28px;
    line-height: 1;
  }

  .cmn-hd {
    margin-bottom: 30px;
  }

  .navbar__right-btn {
    display: none;
  }
  .brand {
    max-width: 80px;
  }
  .burger {
    position: relative;
  }

  .burger::before {
    content: "";
    position: absolute;
    top: -7px;
    left: -7px;
    width: 34px;
    border-radius: 3px;
    height: 33px;
    background-color: #122237;
    z-index: -1;
  }

  .burger .burger-line {
    background-color: #fff;
    width: 80%;
  }

  .burger .burger-line:nth-child(2) {
    width: 60%;
  }

  .bannerSwiper {
    padding: 7px;
  }

  .product-mosaic {
    margin-top: 13px;
    grid-template-columns: 1fr 1fr;
  }

  .banner {
    margin-top: 115px;
  }

  .sub-hd {
    font-size: 12px;
  }

  .banner-content {
    padding: 20px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .banner-content-btn {
    margin-top: 20px;
  }

  .banner-count-col p {
    font-size: 10px;
  }

  .banner-count-col {
    padding-left: 8px;
  }

  .banner-count {
    gap: 6px;
    margin-top: 20px;
  }

  .marquee-card-img {
    width: 20px;
    height: 20px;
  }

  .marquee-card-cont h3 {
    font-size: 13px;
  }

  .marquee-card {
    width: auto;
  }

  .what-we-do-card-img {
    padding-top: 70%;
  }

  .what-we-do .row {
    --bs-gutter-x: 0px;
  }

  .service-card {
    padding: 20px 14px;
  }

  .swiper-button-prev,
  .service-next {
    display: none;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .svr-number {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .industry-item span {
    font-size: 10px;
  }

  .industry-item img {
    width: 13px;
    height: 13px;
  }

  .industry-item {
    gap: 4px;
    padding: 8px 8px;
    border-radius: 3px;
    width: 48%;
    justify-content: center;
    border: none;
    background: #d2ead5;
  }

  .industry-container {
    margin-top: 30px;
  }

  .global-reach-rgt-col-cont h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .global-reach-rgt-col-cont p {
    font-size: 11px;
  }

  .global-reach-rgt-col-img {
    max-width: 30px;
    height: 30px;
    padding: 4px;
  }

  .global-reach-rgt-col {
    gap: 10px;
    padding: 12px;
    border-radius: 4px;
  }

  .global-reach-rgt-col:not(:first-child) {
    margin-top: 10px;
  }

  .process-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .process-card h3 {
    font-size: 17px;
    margin-bottom: 9px;
  }

  .process-card {
    padding: 54px 40px;
  }

  label {
    font-size: 13px;
  }

  input[type="password"],
  input[type="email"],
  input[type="tel"],
  input[type="text"] {
    font-size: 14px;
    padding: 10px 14px;
    height: 43px;
    border-radius: 3px;
  }

  select {
    font-size: 14px;
    padding: 10px 14px;
    height: 43px;
  }

  .contact-icon-arrow {
    margin: 14px auto;
  }

  .pln-txt,
  .contact-content a {
    font-size: 16px;
  }

  .contact-content span {
    font-size: 12px;
    margin-bottom: 11px;
  }

  .cta-sec .navbar__right-btn {
    display: flex;
    justify-content: center;
  }

  .cta-wrap p {
    margin-bottom: 30px;
  }

  .footer-center {
    padding: 30px 0 30px;
  }

  .footer-btm .row {
    --bs-gutter-y: 0;
  }

  .hd-social-col {
    font-size: 13px;
  }

  .footer-top {
    padding: 40px 0;
  }

  .drives-us-grd {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 40px;
  }

  .drives-us-col::after {
    display: none !important;
  }

  .drives-us-col {
    padding: 40px 0px;
  }

  .drives-us-col img {
    max-width: 50px;
    margin-bottom: 20px;
  }

  .drives-us-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .svr-grd {
    grid-template-columns: repeat(1, 1fr);
  }

  .svr-card {
    border: none;
    border-top: 1px solid #3333331f;
  }

  .svr-card::before {
    display: none;
  }

  .svr-card.active .service-card-bottom h3,
  .svr-card.active p {
    color: #000000;
  }

  .what-we-do .container-sm {
    padding: 0;
  }

  .job-listing-cta {
    font-size: 12px;
    font-weight: 600;
  }

  .job-title h3 {
    font-size: 18px;
  }

  .job-card {
    padding: 18px;
  }

  .job-meta-list {
    gap: 5px;
  }

  .job-info span {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .job-info {
    margin-top: 9px;
  }

  .job-info h4 {
    font-size: 12px;
  }

  .job-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
    top: 10px;
    right: 10px;
  }

  .cmn-gap {
    padding: 40px 0;
  }

  .our-products .what-we-do-wrap {
    padding-left: 0;
  }

  .hd-top-left-cont ul {
    justify-content: space-between;
  }

  .hd-top-left-cont ul li i {
    margin-right: 0;
  }

  .our-products {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .job-listing-grid {
    gap: 0;
  }

  .cta-wrap p {
    font-size: 14px;
  }

  .svr-card.active img {
    filter: brightness(0) saturate(100%) invert(10%) sepia(23%) saturate(49%)
      hue-rotate(314deg) brightness(104%) contrast(78%);
  }

  .service-content {
    padding: 20px 12px;
  }

  .job-listing-cta {
    font-size: 12px;
  }

  .product-card-cont,
  .case-study-card-cont {
    padding: 20px 14px;
  }

  .case-study-card-cont h3 {
    font-size: 17px;
    font-weight: 600;
  }

  .case-study-card-cont p {
    font-size: 12px;
  }

  .case-study-tag {
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
  }

  .in-svr-card-content h3 {
    font-size: 18px;
  }

  .service-top {
    gap: 27px;
    margin-bottom: 40px;
    align-items: flex-start;
    flex-direction: column;
  }

  .in-svr-card-icon {
    font-size: 25px;
    color: #122237;
    margin-top: 2px;
  }

  .abt-sec {
    padding-left: 12px;
    padding-right: 12px;
  }

  .drives-us-col {
    border-top: 1px solid #ffffff9c;
  }

  .drives-us-col:nth-child(1) {
    border-top: none;
    padding-top: 0;
  }

  .header-top::before {
    display: none;
  }

  .header-top {
    padding: 5px 0px;
  }

  .hd-top-left-cont ul li a,
  .hd-top-left-cont ul li {
    font-size: 10px;
  }

  .hd-top-left-cont ul li:first-child a,
  .hd-top-left-cont ul li:first-child i {
    color: #ffffff;
  }

  .blog-detail-author-box {
    gap: 12px;
    border-radius: 7px;
    padding: 17px 14px;
    margin: 20px 0;
}

.blog-featured-cont {
    padding: 16px;
}

.blog-featured-cont h2 {
    font-size: 18px;
}

.blog-post-meta {
    margin-bottom: 20px;
}

.blog-post-grid {
    grid-template-columns: repeat(1, 1fr);
}

}

@media (max-width: 480px) {
  .h1-heading,
  h1 {
    font-size: 34px;
  }

  :root {
    --max-card-height: 300;
    --min-card-height: 100;
  }

  .skill-content {
    padding: 10px 6px;
  }

  .skill-content span {
    top: 37px;
    left: 7px;
  }

  .industry-item {
    gap: 4px;
    width: auto;
  }

    .cmn-tab-all .industry-item,
  .cmn-tab-all .industry-item span {
    font-size: 10px;
  }

  .cmn-tab-all .industry-item {
    padding: 6px 10px;
  }
}
