@charset "UTF-8";
/*========== Variables ==========*/
/*======BG Colors ======*/
@media only screen and (min-width: 768px) {
  @font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: rgba(65, 65, 65, 0.9);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 80px;
  line-height: 1.5;
  color: #ffb81d;
  font-weight: bold;
  margin-bottom: 15px;
}

h2 {
  font-size: 46px;
  line-height: 58px;
  font-weight: bold;
  color: #110302;
  margin: 0 0 15px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  color: #110302;
  margin: 0 0 15px;
}

h4 {
  font-size: 20px;
  color: #110302;
  font-weight: bold;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
  color: #5e6373;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 15px;
}

a {
  color: rgba(65, 65, 65, 0.9);
  text-decoration: none;
}

ul {
  list-style: none;
}
ul li {
  color: rgba(65, 65, 65, 0.9);
  font-size: 16px;
  line-height: 26px;
}

.container {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
}

.light-theme {
  background: #f6f8fb;
}

.dark-theme {
  background: #05247e;
}
.dark-theme .heading h2 {
  color: #ffffff;
}
.dark-theme .heading h2::after {
  background: #ffffff;
}
.dark-theme .heading p {
  color: #ffffff;
}
.dark-theme .heading a {
  color: #ffffff;
}

.width-100 {
  width: 100%;
}

.dis-flex {
  display: flex;
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.item-end {
  align-items: flex-end;
}

.align-right {
  text-align: right;
}

.justify-sb {
  justify-content: space-between;
}

.block {
  display: block;
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}

.flex-1 {
  flex-basis: 100%;
}

.flex-2 {
  flex-basis: 50%;
}

.flex-3 {
  flex-basis: 33.33%;
}

.flex-4 {
  flex-basis: 25%;
}

.flex-5 {
  flex-basis: 20%;
}

.padding-t-120 {
  padding-top: 120px;
}

.padding-b-120 {
  padding-bottom: 120px;
}

.padding-t-70 {
  padding-top: 70px;
}

.padding-b-70 {
  padding-bottom: 70px;
}

.padding-t-60 {
  padding-top: 60px;
}

.padding-b-60 {
  padding-bottom: 60px;
}

.padding-t-50 {
  padding-top: 50px;
}

.padding-b-50 {
  padding-bottom: 50px;
}

.margin-t-100 {
  margin-top: 100px;
}

.margin-t-80 {
  margin-top: 80px;
}

.margin-t-70 {
  margin-top: 70px;
}

.margin-t-60 {
  margin-top: 60px;
}

.margin-t-50 {
  margin-top: 50px;
}

.margin-t-20 {
  margin-top: 20px;
}

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

.text-right {
  text-align: right;
}

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

.learn-more {
  color: #016be3;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}
.learn-more::after {
  content: "";
  background: url(../images/service/know-more-arrow-icon.png) top center no-repeat;
  position: relative;
  width: 15px;
  height: 11px;
  background-size: 100%;
  top: 0;
  left: 6px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.learn-more:before {
  content: "";
  clear: both;
  display: block;
  background: #016be3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 16px);
  height: 1px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.learn-more:hover:before {
  opacity: 1;
}
.learn-more:hover::after {
  left: 10px;
}

::placeholder {
  color: #737373;
  font-weight: 400;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.cmn-btn {
  color: #016be3;
  border: 1.5px solid #016be3;
  border-radius: 3px;
  background: transparent;
  font-size: 18px;
  line-height: 36px;
  display: block;
  width: 100%;
  padding: 8px 0 12px;
  margin: 30px 0 0;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.cmn-btn:hover {
  background-color: #016be3;
  color: #fff;
}

.white-btn {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 14px 20px;
  display: inline-block;
  font-size: 16px;
  line-height: 21px;
  transition: 0.5s all ease-in-out;
}
.white-btn:hover {
  background-color: #fff;
  color: #016be3;
  border: 1px solid #fff;
}
.white-btn.blue {
  color: #016be3;
  border: 1.5px solid #016be3;
  font-weight: 500;
}
.white-btn.blue:hover {
  background-color: #016be3;
  color: #fff;
}
.white-btn.white {
  background-color: #fff;
  color: #000;
}
.white-btn.white:hover {
  background-color: #016be3;
  color: #000;
  border: 1.5px solid #016be3;
}

.heading h2 {
  position: relative;
  margin-bottom: 40px;
}
.heading h2:after {
  content: "";
  background: #016be3;
  width: 80px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -20px;
}
.heading p {
  width: 90%;
  margin: auto;
  font-size: 18px;
  color: #414141;
  line-height: 29px;
}
.heading ul li {
  font-size: 18px;
  color: #414141;
  line-height: 29px;
}

.get-started {
  background: #05247e;
}
.get-started h2 {
  color: #fff;
}
.get-started p {
  margin-top: 15px;
  color: #fff;
}
.get-started p:first-child {
  margin-top: 0;
}
.get-started p a {
  color: #ffffff;
}

.breadcrumbs {
  position: relative;
  top: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  text-align: left;
  z-index: 2;
  font-weight: 500;
}
.breadcrumbs a {
  display: inline-block;
  position: relative;
  color: rgba(197, 197, 215, 0.61);
  padding-right: 14px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.breadcrumbs a:after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3px;
  width: 6px;
  height: 10px;
  background: url(../../assets/images/breadcrumbs-arrow.png) 0 1px no-repeat;
  background-size: 100%;
}
.breadcrumbs a:hover {
  color: #fff;
}

.service-breadcrumbs {
  color: #016be3;
  margin-bottom: 30px;
}
.service-breadcrumbs a {
  color: #253053;
  transition: all 0.3s ease-in-out;
}
.service-breadcrumbs a:hover {
  color: #016be3;
}

.for-home-client-logo {
  margin-top: 20px;
}
.for-home-client-logo i {
  width: 98px;
  height: 59px;
  background: url(../images/home/home-awards-icon.svg) 0 0 no-repeat;
  display: inline-block;
  background-size: cover;
}
.for-home-client-logo i:nth-child(1) {
  background-position: 0px 0px;
}
.for-home-client-logo i:nth-child(2) {
  background-position: -101px 0px;
}
.for-home-client-logo i:nth-child(3) {
  background-position: -203px 0;
}
.for-home-client-logo i:nth-child(4) {
  background-position: -304px 0;
}
.for-home-client-logo i:nth-child(5) {
  background-position: -406px 0;
}

.body-pop {
  position: relative;
  overflow: hidden;
}
.body-pop::after {
  content: "";
  clear: both;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background: #656565;
  opacity: 0.8;
}

.free-trail-pop-up {
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 9999;
}
.free-trail-pop-up.open-pop {
  display: grid;
}
.free-trail-pop-up .pop-up-inner {
  background-color: #ffffff;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.free-trail-pop-up .pop-close {
  text-align: right;
  display: block;
  margin: 25px 25px 25px auto;
  color: #212121;
  background: url(../images/pop-close.png) 0 0 no-repeat;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.free-trail-pop-up .pop-up-box {
  padding: 30px 100px 100px;
}
.free-trail-pop-up h2 {
  color: #212121;
}
.free-trail-pop-up p {
  margin-top: 10px;
  color: #656565;
}
.free-trail-pop-up p:first-of-type {
  margin-top: 20px;
}
.free-trail-pop-up .popup-green-btn {
  margin-top: 50px;
  padding: 23px 31px;
  color: #ffffff;
  background: #60b741;
  text-decoration: none;
  font-size: 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.free-trail-pop-up .popup-green-btn:hover {
  background-color: #ffb81d;
}

.is-arrow {
  display: block;
  text-decoration: underline;
  color: #05164d;
  text-align: left;
  margin: 40px 0 0;
  font-weight: 400;
  font-size: 18px;
}
.is-arrow:after {
  content: "";
  background: url(../images/home-images/arrow.svg) no-repeat center;
  width: 11px;
  display: inline-block;
  height: 11px;
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
}
.is-arrow:hover {
  text-decoration: none;
}
.is-arrow:hover:after {
  margin-left: 15px;
}

.top-section {
  padding: 0 0 80px;
  text-align: center;
}
.top-section h6 {
  color: #0400F5;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.top-section p {
  font-size: 18px;
}
.top-section.text-left {
  padding: 0;
  text-align: left;
}

.gradient-bg {
  background: linear-gradient(270deg, #0b147c 21.77%, #4b1bac 100%);
}
.gradient-bg .top-section h2 {
  color: #ffffff;
}
.gradient-bg .top-section p {
  color: #bdb7b7;
}

.btn-container {
  margin-top: 30px;
}
.btn-container .cta-button {
  display: inline-flex;
  padding: 10px 20px;
  line-height: 24px;
  cursor: pointer;
  position: relative;
  background: #DFFB0B;
  color: #0400F5;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 50px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.0509803922);
}
.btn-container .cta-button:after {
  content: "";
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: 100%;
  display: inline-block;
  margin-left: 10px;
}
.btn-container .cta-button:hover {
  background: #0400F5;
  color: #ffffff;
}
.btn-container .cta-button:hover:after {
  background: url(../images/home-images/white-cta.svg) no-repeat;
  background-size: 100%;
}
.btn-container .cta-button.white {
  background: #DFFB0B;
  color: #0400F5;
}
.btn-container .cta-button.white:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.btn-container .cta-button.white:hover {
  background: #ffffff;
  color: #0400F5;
}
.btn-container .cta-button.white:hover:after {
  background: url(../images/home-images/bluegr-hovercta.svg) no-repeat;
  background-size: 100%;
}

.explore-btn {
  position: relative;
  color: #0400F5;
  font-weight: 500;
  text-decoration: underline;
}
.explore-btn:after {
  content: "";
  background: url(../images/explore-btn.svg) no-repeat center;
  width: 11px;
  position: absolute;
  height: 11px;
  margin-left: 8px;
  top: 6px;
  transition: all 0.3s ease-in-out;
}
.explore-btn:hover:after {
  margin-left: 15px;
}

.ppc-badge {
  margin: 20px 0 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1780px) {
  .container {
    max-width: 1520px;
  }
}
@media only screen and (max-width: 1600px) {
  .container {
    max-width: 1380px;
  }
  .padding-t-120 {
    padding-top: 100px;
  }
  .padding-b-120 {
    padding-bottom: 100px;
  }
  .margin-t-100 {
    margin-top: 80px;
  }
  .margin-t-80 {
    margin-top: 60px;
  }
  .free-trail-pop-up .popup-green-btn {
    margin-top: 40px;
    padding: 14px 20px;
  }
  .free-trail-pop-up .pop-up-box {
    padding: 10px 60px 70px;
  }
  .free-trail-pop-up .pop-close {
    margin: 20px 20px 20px auto;
  }
  .free-trail-pop-up .pop-up-inner {
    max-width: 900px;
  }
}
@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1260px;
  }
  h1 {
    font-size: 65px;
    line-height: 91px;
  }
}
@media only screen and (max-width: 1320px) {
  .container {
    max-width: 1120px;
  }
  .padding-t-100 {
    padding-top: 60px;
  }
  .padding-b-100 {
    padding-bottom: 60px;
  }
  .padding-t-120 {
    padding-top: 80px;
  }
  .padding-b-120 {
    padding-bottom: 80px;
  }
  .padding-t-70 {
    padding-top: 60px;
  }
  .padding-b-70 {
    padding-bottom: 60px;
  }
  .margin-t-80 {
    margin-top: 60px;
  }
  .top-section {
    padding: 0 0 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .row {
    margin-left: 0px;
    margin-right: 0px;
  }
  .tools-developer .flex-4 {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 45px;
    line-height: 55px;
  }
  h2 {
    font-size: 35px;
    line-height: 40px;
    margin: 0 0 15px;
  }
  br {
    display: none;
  }
  h3 {
    font-size: 22px;
  }
  .flex-2 {
    flex-basis: 100%;
  }
  .flex-2:first-child {
    padding-right: 0;
  }
  .flex-3 {
    flex-basis: 50%;
  }
  .flex-4 {
    flex-basis: 50%;
  }
  .flex-5 {
    flex-basis: 33.33%;
  }
  .padding-t-150 {
    padding-top: 60px;
  }
  .padding-b-150 {
    padding-bottom: 60px;
  }
  .margin-b-150 {
    margin-bottom: 60px;
  }
  .margin-t-100,
  .margin-t-80,
  .margin-t-70,
  .margin-t-60 {
    margin-top: 40px;
  }
  .flex-4 {
    flex-basis: 50%;
  }
  .is-arrow {
    margin: 25px 0 0;
  }
  .free-trail-pop-up .pop-up-inner {
    max-width: 700px;
  }
  .free-trail-pop-up .pop-up-box {
    padding: 0 50px 50px;
  }
  .free-trail-pop-up .green-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-family: sans-serif;
    line-height: 24px;
  }
  ::placeholder,
  input,
  textarea {
    font-family: sans-serif;
  }
  .padding-t-100 {
    padding-top: 40px;
  }
  .padding-b-100 {
    padding-bottom: 40px;
  }
  .padding-b-150 {
    padding-bottom: 60px;
  }
  .margin-b-150 {
    margin-bottom: 40px;
  }
  .padding-t-120 {
    padding-top: 50px;
  }
  .padding-b-120 {
    padding-bottom: 50px;
  }
  .padding-t-150 {
    padding-top: 60px;
  }
  .padding-t-70 {
    padding-top: 40px;
  }
  .padding-b-70 {
    padding-bottom: 60px;
  }
  h1 {
    font-size: 35px;
    line-height: 45px;
  }
  h2 {
    font-size: 30px;
    line-height: 35px;
  }
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
  p {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 15px;
  }
  ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .flex-3 {
    flex-basis: 100%;
  }
  .flex-4 {
    flex-basis: 100%;
  }
  .flex-5 {
    flex-basis: 100%;
  }
  .heading h2 br {
    display: none;
  }
  .heading h2:after {
    bottom: -15px;
  }
  .heading p {
    width: 100%;
    font-size: 16px;
    line-height: 27px;
  }
  .heading ul li {
    font-size: 16px;
    line-height: 27px;
  }
  .cmn-btn {
    font-size: 16px;
    line-height: 28px;
  }
  .white-btn {
    padding: 10px 20px;
  }
  .glider {
    overflow: hidden;
  }
  .service-breadcrumbs {
    margin-bottom: 10px;
  }
  .breadcrumbs {
    top: 0;
  }
  .free-trail-pop-up .pop-close {
    width: 14px;
    height: 14px;
    background-size: 100%;
    margin: 15px 20px 15px auto;
  }
  .free-trail-pop-up .pop-up-box {
    padding: 0 15px 30px;
  }
  .free-trail-pop-up p {
    font-size: 14px;
    line-height: 22px;
  }
  .free-trail-pop-up p:first-of-type {
    margin-top: 10px;
  }
  .free-trail-pop-up .green-btn {
    margin-top: 30px;
    padding: 12px 15px;
    font-size: 14px;
  }
  .is-arrow {
    margin: 20px 0 0;
    font-size: 16px;
  }
  .top-section {
    padding: 0 0 40px;
  }
  .top-section p {
    font-size: 16px;
  }
  .btn-container {
    margin-top: 20px;
  }
  .btn-container .cta-button {
    padding: 12px 16px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
  }
}
.popup-section {
  width: 100%;
}
.popup-section .popup-wrapper {
  z-index: 999;
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup-section .popup-wrapper .popWrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-section .popup-wrapper .popWrap .popup-content {
  width: 612px;
  background: #016be3;
  border-radius: 25px;
  padding: 36px 70px;
  text-align: center;
  position: relative;
}
.popup-section .popup-wrapper .popWrap .popup-content h2 {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  margin: 0 0 8px;
  line-height: 40px;
}
.popup-section .popup-wrapper .popWrap .popup-content h3 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 15px;
  color: #fff;
}
.popup-section .popup-wrapper .popWrap .popup-content p {
  color: #fff;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec {
  margin: 20px 0 0;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec a {
  display: inline-block;
  border: 1px solid #fff;
  margin: 15px auto 0;
  padding: 15px 20px;
  font-weight: 500;
  color: #fff;
  border-radius: 8px;
  min-width: 376px;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec a:hover {
  background: #05164d;
  color: #fff;
  border-color: #05164d;
}
.popup-section .popup-wrapper .popWrap .popup-content .ctasec a.book-btn {
  background: #fff;
  color: #05164d;
  border-color: #fff;
}
.popup-section .popup-wrapper .popWrap .popup-content .closeicon {
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 10px;
  background: none;
}
.popup-section .exit-intent-popup {
  display: none;
}
.popup-section .exit-intent-popup.visible {
  display: block;
}

@media only screen and (max-width: 991px) {
  .popup-section .popup-wrapper .popWrap .popup-content {
    width: 90%;
    border-radius: 20px;
    padding: 30px 35px;
  }
  .popup-section .popup-wrapper .popWrap .popup-content h2 {
    font-size: 27px;
    line-height: 32px;
  }
  .popup-section .popup-wrapper .popWrap .popup-content h3 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 10px;
  }
  .popup-section .popup-wrapper .popWrap .popup-content .ctasec {
    margin: 20px 0 0;
  }
  .popup-section .popup-wrapper .popWrap .popup-content .ctasec a {
    padding: 12px 20px;
    margin: 10px 0 0;
    min-width: auto;
  }
}
.header-two {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.header-two .container {
  padding: 0 30px;
  width: 100%;
  max-width: 1900px;
}
.header-two .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: static;
}
.header-two .header-item-left {
  display: flex;
  flex-basis: 18%;
  align-items: center;
}
.header-two .header-item-left .large {
  transition: all 0.7s ease-in-out;
}
.header-two .header-item-left .large img {
  max-width: 220px;
}
.header-two .header-item-left .large .light {
  display: block;
}
.header-two .header-item-left .large .dark {
  display: none;
}
.header-two .header-item-left .small {
  opacity: 0;
  display: grid;
  background: #ececec;
  padding: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
  position: absolute;
  top: 10px;
  transition: all 0.7s ease-in-out;
}
.header-two .header-item-right {
  flex-basis: 80%;
  display: flex;
  justify-content: right;
  align-items: center;
}
.header-two .header-item-right .mob-nav {
  margin-right: 100px;
}
.header-two .header-item-right .menu ul li {
  display: inline-block;
  transition: color 0.3s ease;
}
.header-two .header-item-right .menu ul li.menu-item-has-children a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  padding: 0 10px 35px;
  border: none;
  outline: none;
  color: #fff;
  transition: color 0.3s ease;
  font-weight: 500;
}
.header-two .header-item-right .menu ul li.menu-item-has-children a.active:after {
  content: "";
  background: #ffad00;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 1;
  z-index: 9;
}
.header-two .header-item-right .menu ul li.menu-item-has-children.hire-menu-item {
  margin: 0 30px 0 100px;
}
.header-two .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .nor {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}
.header-two .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .hov {
  display: none;
  vertical-align: middle;
  margin-left: 8px;
}
.header-two .header-item-right .menu ul li .menu-mega {
  position: absolute;
  left: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin-top: 0;
  top: 98%;
  padding: 0;
  z-index: 1;
  border-top: 1px solid #dedede;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: none;
  background: #fff;
}
.header-two .header-item-right .menu ul li .menu-mega a {
  padding: 15px 15px 15px 55px;
  position: relative;
  display: flex;
  color: #05164d;
  margin: 0;
  align-items: center;
  border-radius: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega a:after {
  display: none;
}
.header-two .header-item-right .menu ul li .menu-mega a .menuicon {
  position: absolute;
  left: 10px;
  top: 10px;
  display: block;
  filter: grayscale(1);
}
.header-two .header-item-right .menu ul li .menu-mega a:last-child {
  margin: 0;
}
.header-two .header-item-right .menu ul li .menu-mega a:hover {
  background: #fff9eb;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu {
  left: 64%;
  width: 280px;
  padding: 20px;
  border-radius: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents {
  min-height: initial;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content a .title .menuicon {
  top: 8px;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column {
  padding: 0;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
  line-height: 1.2;
  padding: 5px;
  width: auto;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head {
  padding: 5px 5px 8px 38px;
  width: auto;
  font-size: 12px;
  margin: 5px 0 0;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
  width: 320px;
  left: 57%;
  margin: 0 auto;
  border-radius: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu .tab-menu .tab-contents .right-tabs .tab-content a .title .menuicon {
  top: 11px;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
  left: 65%;
}
.header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
  width: 280px;
  left: 69%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents {
  width: 100%;
  min-height: 210px;
  height: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs {
  flex-basis: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.flex-full {
  flex-basis: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content {
  width: 100%;
  display: block;
  height: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .four-column {
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .three-column {
  width: 68%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .title {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: #6b7280;
  display: block;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
  text-transform: capitalize;
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a {
  padding-left: 70px;
  position: relative;
  display: block;
  margin: 0;
  font-size: 12px;
  font-weight: 400 !important;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .title {
  font-size: 14px;
  line-height: 22px;
  color: #0f172b;
  margin-bottom: 2px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .title:hover {
  color: #ffaf00;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .menuicon {
  position: absolute;
  left: 10px;
  top: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content.is-active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column {
  padding: 15px 0 30px;
  width: 100%;
  justify-content: space-between;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-2 {
  flex-basis: 47%;
  padding: 0 5px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-4 {
  flex-basis: 22%;
  padding: 0 5px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-5 {
  flex-basis: 19%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-6 {
  flex-basis: 16%;
  position: relative;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-1 {
  flex-basis: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .head {
  color: #9f9f9f;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 10px 0 10px;
  display: block;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .head.opacity-0 {
  opacity: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
  margin: 0 0 2px 34px;
  position: relative;
  padding: 5px 40px 5px 5px;
  width: max-content;
  line-height: 20px;
  border-radius: 5px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head {
  margin: 15px 0 0;
  padding: 5px 40px 5px 38px;
  width: max-content;
  line-height: 1;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head .title {
  margin: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head.p0 {
  margin-top: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.op-0 {
  opacity: 0;
  cursor: default;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a:hover {
  color: #0400f5;
  background: #F9FAFB;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a:hover .menuicon {
  filter: none;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a:hover .title {
  color: #0400f5;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a {
  font-weight: 400 !important;
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
  display: block;
  padding: 10px;
  border-radius: 10px;
  background: transparent;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a .title {
  color: #0f172b;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a .title.view-all {
  color: #ffad00;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a .title.view-all:hover {
  color: #0f172b;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a .title .menuicon {
  position: absolute;
  left: 5px;
  top: 5px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a:hover {
  color: #0f172b;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more {
  color: #ffad00;
  padding: 30px 0 0;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid #e6e6e6;
  border-radius: 0;
  margin: 20px 0 0;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more:after {
  content: "";
  background: url(../header-images/arrow.svg) no-repeat center;
  display: inline-block;
  position: relative;
  opacity: 1;
  width: 14px;
  height: 19px;
  background-size: 100%;
  vertical-align: middle;
  margin-left: 10px;
  bottom: auto;
  transition: all 0.3s ease-in-out;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more:hover {
  background-color: transparent;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more:hover:after {
  margin-left: 15px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .double-menu {
  display: flex;
  justify-content: space-between;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .double-menu .menu-box {
  flex-basis: 48%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .spacer-md {
  margin: 0 0 30px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .spacer-sm {
  margin: 0 0 20px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu {
  width: 30%;
  position: relative;
  padding-left: 20px;
  border-left: 1px solid #e6e6e6;
  background: rgb(248, 249, 250);
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  height: 100%;
  width: 20%;
  background: rgb(248, 249, 250);
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .tab-title a {
  padding-left: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 a {
  padding-left: 45px;
  position: relative;
  margin: 0 0 20px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 a .menuicon {
  position: absolute;
  left: 10px;
  top: 0;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs {
  display: flex;
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .tab-content {
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .tab-content .three-column {
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu {
  display: block;
  width: 30%;
  height: auto;
  width: 30%;
  position: relative;
  padding-left: 20px;
  border-left: 1px solid #e6e6e6;
  background: #f8f9fa;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu:after {
  content: "";
  position: absolute;
  right: -60px;
  top: 0;
  height: 100%;
  width: 20%;
  background: rgb(248, 249, 250);
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .tab-title a {
  padding-left: 10px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .menu-column a {
  padding-left: 55px;
  position: relative;
  width: calc(100% - 10px);
  margin: 0 0 10px -10px;
}
.header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .menu-column a .menuicon {
  position: absolute;
  left: 10px;
  top: 15px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu {
  width: 100%;
  right: 0;
  margin: 0 auto;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents {
  width: 100%;
  min-height: 525px;
  height: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs {
  flex-basis: 20%;
  border-right: 1px solid #e6e6e6;
  padding: 15px 25px 15px 0;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li {
  width: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li a {
  display: block;
  padding: 15px 35px 15px 15px;
  color: #262626;
  position: relative;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  font-weight: 500;
  position: relative;
  font-size: 14px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li a:after {
  content: "";
  background: url(../header-images/arrow.svg) no-repeat center;
  position: absolute;
  top: 17px;
  right: 15px;
  width: 14px;
  height: 19px;
  background-size: 100%;
  opacity: 0;
  left: auto;
  bottom: auto;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li.no-link a {
  cursor: default;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li.is-active a {
  background: #eff6ff;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .left-tabs .tab-nav li.is-active a:after {
  opacity: 1;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs {
  flex-basis: 80%;
  padding: 0 20px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs.flex-full {
  flex-basis: 100%;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content {
  width: 100%;
  display: none;
  height: auto;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content.is-active {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-5 {
  padding: 0 0 30px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo {
  border-left: 1px solid #e5e5e5;
  padding-left: 20px;
  background: #f4f4f4;
  position: relative;
  padding-bottom: 40px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo:after {
  content: "";
  background: #f4f4f4;
  width: 100px;
  height: 100%;
  right: -30px;
  top: 0;
  position: absolute;
  border-radius: 0 10px 10px 0;
  z-index: -1;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo a.top-head.no-padd {
  padding: 10px 0 0;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo a.top-head.no-padd .title {
  color: #6b7280;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo a.top-head.no-padd:hover {
  color: #6b7280;
  cursor: default;
  background: transparent;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo .m-0 {
  margin: 0 20px;
}
.header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo p {
  font-size: 10px;
  line-height: 20px;
}
.header-two .header-item-right .menu ul li:hover .menu-mega {
  display: block;
}
.header-two .header-item-right .cta-wrap {
  display: inline-block;
}
.header-two .header-item-right .cta-wrap .btn-container {
  margin: 0;
}
.header-two .header-item-right .cta-wrap .btn-container .cta-button {
  line-height: 26px;
  padding: 10px 16px;
}
.header-two .header-item-right .cta-wrap.large-reso {
  display: block;
}
.header-two .header-item-right .cta-wrap.small-reso {
  display: none;
}
.header-two.header-bg .header-item-left .large .light {
  display: none;
}
.header-two.header-bg .header-item-left .large .dark {
  display: block;
}
.header-two.header-bg .header-item-right {
  opacity: 0;
}
.header-two.header-bg .header-item-right .menu ul li.menu-item-has-children a {
  color: #45556c;
}
.header-two.header-bg .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .nor {
  display: none;
}
.header-two.header-bg .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .hov {
  display: inline-block;
}
.header-two.header-bg .header-item-right .cta-wrap .btn-sec .btn {
  border-color: rgba(5, 22, 77, 0.08);
}
.header-two.header-bg.sc-up {
  background: #fff;
}
.header-two.header-bg.sc-up .header-item-left {
  opacity: 1;
}
.header-two.header-bg.sc-up .header-item-right {
  opacity: 1;
}
.header-two.header-bg.sc-down .small {
  opacity: 1;
}
.header-two.header-bg.sc-down .large {
  opacity: 0;
}
.header-two.header-bg .cta-wrap .btn-container .cta-button {
  background: #dffb0b;
  color: #0400f5;
}
.header-two.header-bg .cta-wrap .btn-container .cta-button:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.header-two:hover {
  background: #fff;
}
.header-two:hover .header-item-left {
  opacity: 1;
}
.header-two:hover .header-item-left .large {
  opacity: 1;
}
.header-two:hover .header-item-left .large .light {
  display: none;
}
.header-two:hover .header-item-left .large .dark {
  display: block;
}
.header-two:hover .header-item-left .small {
  display: none;
}
.header-two:hover .header-item-right {
  opacity: 1;
}
.header-two:hover .header-item-right .menu ul li.menu-item-has-children a {
  color: #45556c;
}
.header-two:hover .header-item-right .menu ul li.menu-item-has-children a:hover {
  color: #0f172b;
}
.header-two:hover .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .nor {
  display: none;
}
.header-two:hover .header-item-right .menu ul li.menu-item-has-children.hire-menu-item .hov {
  display: inline-block;
}
.header-two:hover .header-item-right .cta-wrap .btn-sec .btn {
  border-color: rgba(5, 22, 77, 0.08);
}
.header-two:hover .cta-wrap .btn-container .cta-button {
  background: #dffb0b;
  color: #0400f5;
}
.header-two:hover .cta-wrap .btn-container .cta-button:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.header-two:hover .cta-wrap .btn-container .cta-button:hover {
  background-color: #0400f5;
  color: #ffffff;
}
.header-two:hover .cta-wrap .btn-container .cta-button:hover:after {
  background: url(../images/home-images/white-cta.svg) no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 2490px) {
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 72%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    left: 57%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 68%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 75%;
  }
}
@media screen and (max-width: 1920px) {
  .header-two .header-item-right .menu ul li .menu-mega .industries-menu {
    left: 68%;
  }
}
@media screen and (max-width: 1780px) {
  .header-two .header-item-right .menu ul li .menu-mega .industries-menu {
    left: 64%;
  }
}
@media screen and (max-width: 2490px) {
  .header-two .header-item-right .menu ul li .menu-mega .industries-menu {
    left: 65% !important;
  }
}
@media screen and (max-width: 1700px) {
  .header-two .container {
    max-width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 66%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    left: 50%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 64%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 70%;
  }
}
@media screen and (max-width: 1580px) {
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 66%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    left: 46%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 60%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 70%;
  }
}
@media screen and (max-width: 1440px) {
  .header-two .container {
    padding: 0 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 64%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 57%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 67%;
  }
}
@media screen and (max-width: 1390px) {
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-4 {
    flex-basis: 25%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
    padding: 5px 20px 5px 5px;
    margin: 0 0 2px 31px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head {
    padding: 5px 20px 5px 35px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu {
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .header-two .container {
    padding: 0 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
    padding: 5px 20px 5px 5px;
    margin: 0 0 2px 31px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.top-head {
    padding: 5px 20px 5px 35px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: 58%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: 57%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    left: 63%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    left: 38%;
  }
}
@media screen and (max-width: 1139px) {
  .header-two {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1d1c39;
    z-index: 99;
    padding: 10px 0;
  }
  .header-two .header-item-left {
    display: flex;
    flex-basis: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .header-two .header-item-left .large {
    transition: all 0.7s ease-in-out;
  }
  .header-two .header-item-left .large img {
    max-width: 220px;
  }
  .header-two .header-item-left .small {
    display: none;
  }
  .header-two .header-item-right {
    flex-basis: 100%;
  }
  .header-two .header-item-right .mob-nav {
    flex-basis: 100%;
  }
  .header-two .header-item-right .menu {
    display: none;
  }
  .header-two .header-item-right .menu ul {
    margin: 0;
  }
  .header-two .header-item-right .menu ul li {
    margin: 20px 0 0;
    display: block;
  }
  .header-two .header-item-right .menu ul li.menu-item-has-children a {
    padding: 0;
    font-size: 15px;
    color: #fff;
  }
  .header-two .header-item-right .menu ul li.menu-item-has-children a.active:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li.menu-item-has-children.hire-menu-item {
    margin: 20px 0 0;
  }
  .header-two .header-item-right .menu ul li:hover .menu-mega {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega {
    position: relative;
    display: none;
    background: 0 0;
    margin-top: 20px;
    padding-left: 0;
    border-top: 1px solid #dedede;
    box-shadow: 4px 4px 60px rgba(59, 85, 112, 0.25);
    display: none;
    background: #fff;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu {
    left: auto;
    width: 100%;
    border-radius: 0;
    padding: 20px 10px !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.solution-menu {
    margin-top: 20px;
    width: 100%;
    left: auto;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.industries-menu {
    left: auto;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu.about-menu {
    width: 100%;
    left: auto;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu {
    left: auto;
    width: 100%;
    border-radius: 0;
    margin-top: 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column {
    padding-bottom: 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo {
    margin-top: 15px;
    padding-bottom: 0;
    padding-left: 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .comp-logo:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents {
    width: 100%;
    min-height: initial;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .left-tabs {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs {
    flex-basis: 100%;
    padding: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content {
    min-height: initial;
    display: block !important;
    height: auto;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .four-column {
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .three-column {
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .title {
    color: #262626;
    display: block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title {
    padding: 10px 25px 10px 0;
    border-bottom: 1px solid #e6e6e6;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title.bor-0 {
    border-bottom: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a {
    padding: 10px 10px 10px 55px;
    margin: 0 0 0 -10px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .title {
    font-size: 15px;
    line-height: 20px;
    color: #262626;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a .menuicon {
    left: 8px;
    width: 35px;
    height: 35px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content.is-active {
    display: block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .spacer-md {
    margin: 0 0 20px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column {
    padding: 0 0 20px;
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .sub-service {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .hr-submenu {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .sub-tech {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .m-active {
    display: block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-2 {
    flex-basis: 100%;
    padding: 0;
    margin: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-4 {
    flex-basis: 100%;
    padding: 0;
    margin: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-4.margin-0 {
    margin: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-6 {
    flex-basis: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .flex-5 {
    flex-basis: 100%;
    position: relative;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .head {
    font-size: 13px;
    margin: 8px 0 8px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column .head.opacity-0 {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a {
    width: max-content;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .menu-column a.op-0 {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a {
    color: #5d6579;
    display: block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a:hover:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more {
    padding: 20px 0 0;
    margin: 10px 0 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content a.view-more:after {
    display: inline-block;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu {
    width: 100%;
    position: relative;
    padding-left: 0;
    border-left: none;
    background: #fff;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu.mob-hide {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .tab-title {
    padding: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .tab-title a {
    padding: 8px;
    width: calc(100% - 10px);
    margin: 0 0 5px -10px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .tab-title .ser-arrow-btn {
    right: -15px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 {
    flex-basis: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 a {
    padding-left: 35px;
    margin: 0 0 15px;
    position: relative;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .other-menu .flex-1 a .menuicon {
    position: absolute;
    left: 0;
    top: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs {
    display: flex;
    flex-wrap: wrap;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .tab-content {
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .tab-content .three-column {
    width: 100%;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu {
    width: 100%;
    position: relative;
    padding-left: 0;
    border-left: none;
    background: #fff;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu.tab-content {
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu.mob-hide {
    display: none !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu:after {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .tab-title {
    padding: 0;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .tab-title a {
    padding: 8px;
    width: calc(100% - 10px);
    margin: 0 0 5px -10px;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs.hire-tabs .other-menu .tab-title .ser-arrow-btn {
    right: -15px;
  }
  .header-two .header-item-right .menu ul li .menu-mega.m-active {
    display: block;
  }
  .header-two .header-item-right .mob-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 88px;
    left: 0;
    background: #1d1c39;
    padding: 0 20px;
    display: none;
    overflow-y: auto;
    padding-bottom: 120px;
  }
  .header-two .header-item-right .mob-nav.active {
    display: block;
  }
  .header-two .header-item-right .cta-wrap {
    display: inline-block;
  }
  .header-two .header-item-right .cta-wrap .btn-sec .btn {
    font-size: 15px;
    margin: 30px auto 0;
    cursor: pointer;
  }
  .header-two .header-item-right .cta-wrap .btn-sec .btn.rounded:before {
    top: 3px;
  }
  .header-two .header-item-right .cta-wrap.large-reso {
    display: none;
  }
  .header-two .header-item-right .cta-wrap.small-reso {
    display: block;
  }
  .header-two.header-bg .header-item-left .large .light {
    display: block;
  }
  .header-two.header-bg .header-item-left .large .dark {
    display: none;
  }
  .header-two.header-bg .header-item-right {
    opacity: 0;
  }
  .header-two.header-bg .header-item-right .menu ul li.menu-item-has-children a {
    color: #fff;
  }
  .header-two.header-bg .header-item-right .cta-wrap .btn-sec .btn {
    border-color: #fff;
  }
  .header-two.header-bg.sc-up {
    background: #1d1c39;
  }
  .header-two.header-bg.sc-up .header-item-left {
    opacity: 1;
  }
  .header-two.header-bg.sc-up .header-item-right {
    opacity: 1;
  }
  .header-two.header-bg.sc-down .small {
    opacity: 0;
  }
  .header-two.header-bg.sc-down .large {
    opacity: 1;
  }
  .header-two:hover {
    background: #1d1c39;
  }
  .header-two:hover .header-item-left {
    opacity: 1;
  }
  .header-two:hover .header-item-left .large {
    opacity: 1;
  }
  .header-two:hover .header-item-left .large .light {
    display: block;
  }
  .header-two:hover .header-item-left .large .dark {
    display: none;
  }
  .header-two:hover .header-item-left .small {
    display: none;
  }
  .header-two:hover .header-item-right {
    opacity: 1;
  }
  .header-two:hover .header-item-right .menu ul li.menu-item-has-children a {
    color: #fff;
  }
  .header-two:hover .header-item-right .menu ul li.menu-item-has-children a:hover {
    color: #fff;
    opacity: 0.8;
  }
  .header-two:hover .header-item-right .cta-wrap .btn-sec .btn {
    border-color: rgba(5, 22, 77, 0.08);
  }
  .header-two .bar1,
  .header-two .bar2,
  .header-two .bar3 {
    width: 25px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
  }
  .header-two .mback {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff !important;
    padding-left: 12px;
    position: relative;
    display: block;
    margin: 10px 0;
  }
  .header-two .mback::before {
    content: "";
    clear: both;
    display: block;
    background: url(../header-images/button-icons-sprite.png) -21px -47px no-repeat;
    width: 18px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
    margin: 0 auto;
    transform: rotate(-180deg);
  }
  .header-two .hamberger-menu {
    transition: all 0.3s ease-in-out;
    z-index: 999;
    height: 100%;
    padding: 0 5px;
    position: relative;
  }
  .header-two .open-close .bar1 {
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  .header-two .open-close .bar2 {
    opacity: 0;
  }
  .header-two .open-close .bar3 {
    transform: rotate(45deg) translate(-5px, -3px);
  }
  .header-two .arrow-btn {
    display: inline-block;
    position: relative;
    width: 70px;
    height: 24px;
    background: url(../header-images/mobile-btn.png) 40px -2px no-repeat;
    vertical-align: top;
    text-align: right;
    float: right;
  }
  .header-two .arrow-btn.rot {
    background-position: 36px -33px;
  }
  .header-two .ser-arrow-btn,
  .header-two .hr-arrow-btn,
  .header-two .tech-arrow-btn {
    display: inline-block;
    position: absolute;
    right: 5px;
    width: 30px;
    height: 30px;
    background: url(../header-images/arrow-mob.svg) no-repeat;
    background-size: 16px;
    z-index: 999;
    background-position: center center;
  }
  .header-two .ser-arrow-btn.rot,
  .header-two .hr-arrow-btn.rot,
  .header-two .tech-arrow-btn.rot {
    transform: rotate(90deg);
  }
  .header-two .ser-arrow-btn,
  .header-two .tech-arrow-btn {
    top: 4px;
  }
}
@media screen and (max-width: 1139px) {
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column.sub-service {
    display: none;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column.m-active {
    display: block;
  }
  .header-two .ser-arrow-btn.rot, .header-two .hr-arrow-btn.rot, .header-two .tech-arrow-btn.rot {
    transform: rotate(90deg);
  }
  .tab-content {
    position: relative;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents .right-tabs {
    flex-basis: 100% !important;
    padding: 0 0 !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega.service-menu .tab-menu .tab-contents {
    min-height: unset;
  }
  .tab-content .four-column .tab-title a img {
    display: none !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega .tab-menu .tab-contents .right-tabs .tab-content .tab-title a {
    padding: 10px !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content a .title .menuicon {
    display: none !important;
  }
  .header-two .header-item-right .menu ul li .menu-mega.small-menu .tab-menu .tab-contents .right-tabs .tab-content .menu-column .top-head {
    padding: 10px !important;
  }
}
.header-two .ser-arrow-btn {
  top: 25px;
}

:root {
  --blue: #016be3;
  --yellow: #ffbc38;
  --white: #ffffff;
  --gray: #202020;
  --white: #fff;
  --black: #000;
}

.footer-section {
  background: #f1f6ff;
}

.footer {
  width: 100%;
  background: #f1f6ff;
  padding: 30px 0 40px;
}
.footer .footer-top {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-top .count-sec {
  display: flex;
  flex-basis: 70%;
  justify-content: space-between;
}
.footer .footer-top .count-sec .count-col {
  margin-right: 40px;
}
.footer .footer-top .count-sec h5 {
  color: #000000;
  font-size: 20px;
  margin: 0 0 10px;
}
.footer .footer-top .count-sec p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}
.footer .footer-top .subs-box {
  background: #0400F5;
  position: relative;
  padding: 20px 40px;
  flex-basis: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
}
.footer .footer-top .subs-box h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 15px;
}
.footer .footer-top .btn-container {
  margin: 10px 0 0;
}
.footer .footer-top .btn-container .cta-button {
  padding: 10px 16px;
  background: #ffffff;
  color: #0400F5;
}
.footer .footer-top .btn-container .cta-button:after {
  background: url(../images/home-images/bluegr-hovercta.svg) no-repeat;
  background-size: 100%;
}
.footer .footer-top .btn-container .cta-button:hover {
  background: #DFFB0B;
  color: #0400F5;
}
.footer .footer-top .btn-container .cta-button:hover:after {
  background: url(../images/home-images/bluegr-cta.svg) no-repeat;
  background-size: 100%;
}
.footer .footer-top .white-btn:hover {
  background: var(--gray);
  color: var(--white);
  border-color: var(--gray);
}
.footer .footer-middle {
  padding: 40px 0 25px;
  justify-content: space-between;
}
.footer .footer-middle .flex-5 {
  flex-basis: auto;
  padding-right: 60px;
  text-align: left;
}
.footer .footer-middle .flex-5:last-child {
  padding-right: 0;
}
.footer .footer-middle h4 {
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
}
.footer .footer-middle ul li {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 26px;
}
.footer .footer-middle ul li a {
  color: rgba(0, 0, 0, 0.6);
}
.footer .footer-middle ul li a:hover {
  color: var(--black);
}
.footer .footer-bottom {
  padding: 40px 0 0;
  gap: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  justify-content: space-between;
}
.footer .footer-bottom .flex-3 {
  flex-basis: auto;
  text-align: left;
}
.footer .footer-bottom h3 {
  font-size: 15px;
  line-height: 24px;
  color: var(--black);
  font-weight: 400;
  margin: 0 0 22px;
}
.footer .footer-bottom .logo-box .dis-flex a {
  margin-right: 30px;
}
.footer .footer-bottom .social-box .dis-flex a {
  margin-right: 20px;
}
.footer .footer-bottom .social-box .dis-flex a:hover {
  opacity: 0.8;
}
.footer .footer-bottom .copyright p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.footer-copyright {
  background: #0400F5;
  color: #fff;
  padding: 10px 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
}
.footer-copyright .copyright-left p,
.footer-copyright .copyright-right p {
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
  color: #ffffff;
  margin: 0;
}
.footer-copyright .copyright-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-copyright .copyright-left ul {
  display: flex;
  align-items: center;
  margin: 0 0 0 15px;
}
.footer-copyright .copyright-left ul li {
  margin: 0 5px;
}
.footer-copyright .copyright-left ul li a {
  color: #fff;
  font-size: 13px;
}
.footer-copyright .copyright-left ul li a:hover {
  text-decoration: underline;
}
.footer-copyright .copyright-right p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-copyright .copyright-right p img {
  margin: 3px 0 0;
}

/*Media Query Start From Here*/
@media (max-width: 1440px) {
  .footer .footer-top .count-sec .count-col {
    margin-right: 25px;
  }
  .footer .footer-middle ul li {
    font-size: 15px;
  }
  .footer .footer-middle .flex-5 {
    padding-right: 20px;
  }
}
@media (max-width: 1280px) {
  .footer-copyright .copyright-left p {
    font-size: 12px;
  }
  .footer-copyright .copyright-left ul {
    margin-left: 10px;
  }
  .footer-copyright .copyright-left ul li a {
    font-size: 12px;
  }
  .footer-copyright .copyright-right p {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .footer .footer-middle ul li {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1160px) {
  .footer .footer-top .count-sec p {
    font-size: 12px;
    line-height: 24px;
  }
  .footer .footer-top .subs-box {
    padding: 20px 15px;
    border-radius: 20px;
  }
  .footer .footer-top .subs-box::before {
    width: 60px;
    height: 52px;
  }
  .footer .footer-top .subs-box::after {
    width: 34px;
    height: 46px;
  }
  .footer .footer-middle .flex-5 {
    padding-right: 20px;
  }
  .footer .footer-bottom {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  .footer .footer-top {
    flex-wrap: wrap;
  }
  .footer .footer-top .count-sec {
    flex-basis: 100%;
    justify-content: space-between;
  }
  .footer .footer-top .subs-box {
    flex-basis: 100%;
    margin: 20px 0 0;
  }
  .footer .footer-middle .flex-5 {
    flex-basis: 20%;
  }
  .footer .footer-top .count-sec .count-col {
    margin-right: 18px;
  }
  .footer .footer-bottom {
    gap: 0;
    justify-content: space-between;
  }
  .footer .footer-bottom .flex-3 {
    flex-basis: 33%;
  }
  .footer .footer-bottom .copyright p {
    font-size: 13px;
    line-height: 22px;
  }
  .footer .footer-bottom h3 {
    font-size: 14px;
    line-height: 22px;
  }
  .footer .footer-bottom .logo-box .dis-flex a {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer .footer-bottom .social-box .dis-flex a {
    margin-right: 10px;
  }
}
@media (max-width: 1024px) {
  .footer-copyright .justify-sb {
    justify-content: center;
  }
}
@media (max-width: 980px) {
  .footer-copyright {
    text-align: center;
  }
  .footer-copyright .copyright-left,
  .footer-copyright .copyright-right {
    flex-basis: 100%;
  }
  .footer-copyright .copyright-right {
    flex-basis: 100%;
    margin-top: 10px;
  }
  .footer-copyright .copyright-right p {
    justify-content: center;
  }
  .footer-copyright .copyright-right p img {
    margin: 3px 0 0;
  }
}
@media (max-width: 767px) {
  .footer .footer-top {
    flex-wrap: wrap;
  }
  .footer .footer-top .count-sec {
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer .footer-top .count-sec .count-col {
    flex-basis: 48%;
    margin-right: 0;
    text-align: center;
    padding: 0 0 20px;
  }
  .footer .footer-top .count-sec h5 {
    font-size: 18px;
    margin: 0 0 5px;
  }
  .footer .footer-top .count-sec p {
    font-size: 12px;
    line-height: 22px;
  }
  .footer .footer-top .subs-box {
    flex-basis: 100%;
    padding: 30px;
  }
  .footer .footer-middle {
    padding: 30px 0 10px;
  }
  .footer .footer-middle .flex-5 {
    flex-basis: 48%;
    padding: 0 0 20px;
  }
  .footer .footer-middle h4 {
    font-size: 17px;
  }
  .footer .footer-middle ul li {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 24px;
  }
  .footer .footer-bottom {
    padding: 30px 0 0;
    gap: 0;
  }
  .footer .footer-bottom .flex-3 {
    flex-basis: 100%;
    text-align: center;
    margin: 20px 0 0;
  }
  .footer .footer-bottom .flex-3 .dis-flex {
    flex-wrap: nowrap;
    justify-content: center;
  }
  .footer .footer-bottom .logo-box .dis-flex a {
    margin-right: 20px;
  }
  .footer .footer-bottom h3 {
    font-weight: 500;
  }
}
/*Media Query Ends Here*/
:root {
  --navy-900: #05164d;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #4B5563;
  --amber-50: #fffbeb;
  --amber-100: #f1effe;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #0400F5;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --green-50: #f0fdf4;
  --button-color: #016be3;
  --button-hover: #05164d;
  --green-600: #16a34a;
  --green-700: #15803d;
  --red-400: #f87171;
  --red-500: #ef4444;
  --myfont: "Plus Jakarta Sans", sans-serif;
  --heading-color: #05164d;
  --border-color:#e5e7eb;
  --font-mons:"Montserrat", sans-serif;
}

/* === Selection === */
::selection {
  background: var(--amber-400);
  color: var(--navy-900);
}

/* === Background Effects === */
.bg-gradients {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

.bg-gradient-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 1000px;
  height: 1000px;
  background: rgba(30, 41, 59, 0.4);
  border-radius: 50%;
  filter: blur(120px);
}

.bg-gradient-2 {
  position: absolute;
  bottom: -10%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: rgba(30, 58, 138, 0.2);
  border-radius: 50%;
  filter: blur(150px);
}

.bg-gradient-3 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 600px;
  height: 600px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.bg-light-effects {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.5s;
  background: var(--slate-50);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px), linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bg-light-gradient-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: rgba(191, 219, 254, 0.6);
  border-radius: 50%;
  filter: blur(120px);
}

.bg-light-gradient-2 {
  position: absolute;
  bottom: -10%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: rgba(254, 243, 199, 0.4);
  border-radius: 50%;
  filter: blur(120px);
}

/* === Header === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy-900);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s;
}

.logo:hover .logo-icon {
  transform: rotate(6deg);
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}

.logo-text .highlight {
  color: var(--amber-500);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

nav a {
  color: var(--slate-600);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--navy-900);
}

.nav-link {
  display: none;
}

.theme-toggle {
  padding: 0.5rem;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: var(--slate-100);
  border-color: var(--slate-200);
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: white;
  background: var(--navy-900);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.nav-phone:hover {
  background: var(--navy-800);
}

.nav-phone svg {
  color: var(--amber-400);
}

/* === Mobile Header === */
.mobile-header {
  margin-bottom: 2rem;
  margin-top: 1rem;
  animation: slideUp 0.6s ease-out;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  background: var(--blue-50);
  color: var(--navy-700);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--blue-100);
}

.pulse-indicator {
  position: relative;
  width: 8px;
  height: 8px;
}

.pulse-dot {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--amber-500);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--amber-500);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.mobile-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.mobile-header .highlight {
  color: var(--amber-500);
}

.mobile-header p {
  color: var(--slate-600);
}

/* === Grid Layout === */
.content-grid {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  align-items: start;
  margin-top: 150px;
  margin-bottom: 50px;
}

/* === Left Column === */
.left-column {
  display: none;
  position: sticky;
  top: 8rem;
  padding-top: 2rem;
  animation: slideUp 0.6s ease-out;
}

.hero-content {
  margin-bottom: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
  border-radius: 9999px;
  background: var(--blue-50);
  color: var(--amber-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--blue-100);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 85px;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
  color: var(--amber-500);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 36rem;
  line-height: 1.7;
  border-left: 2px solid rgba(251, 191, 36, 0.3);
  padding-left: 1.5rem;
}

.certifications-strip {
  padding: 1rem 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 3rem;
}

.certifications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-500);
  font-size: 0.875rem;
  font-weight: 600;
}

.cert-item svg {
  color: var(--amber-500);
  width: 17px;
  height: 17px;
}

/* === Global Hubs === */
.global-hubs-section {
  margin-bottom: 3rem;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.global-hubs-card {
  width: 100%;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.location-tabs {
  padding: 0.5rem;
  border-bottom: 1px solid var(--slate-100);
  background: rgba(248, 250, 252, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-tab {
  flex: 1;
  min-width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--slate-500);
  cursor: pointer;
  transition: all 0.2s;
}

.location-tab:hover {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.5);
}

.location-tab.active {
  background: white;
  color: var(--navy-900);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 1px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  object-fit: cover;
}

.location-content {
  padding: 1.25rem;
  animation: fadeIn 0.3s ease-out;
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 0.5rem;
}

.location-title {
  color: var(--navy-900);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--amber-100);
  color: var(--amber-500);
  font-size: 12px;
  /* font-family: 'Courier New', monospace; */
  font-weight: 700;
}

.location-address {
  color: var(--slate-500);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-style: normal;
}

.location-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-900);
  text-decoration: none;
  transition: color 0.2s;
}

.location-phone:hover {
  color: var(--amber-500);
}

.phone-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.location-phone:hover .phone-icon-wrapper {
  background: var(--amber-500);
  color: white;
}

/* === Direct Contact Card === */
.direct-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.direct-contact-card:hover {
  border-color: rgba(251, 191, 36, 0.5);
}

.contact-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-500);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.contact-card-text {
  display: flex;
  flex-direction: column;
}

.contact-card-title {
  color: var(--navy-900);
  font-weight: 500;
  font-size: 0.875rem;
}

.contact-card-subtitle {
  color: var(--slate-500);
  font-size: 0.875rem;
}

.contact-arrow {
  color: var(--slate-400);
  transition: color 0.2s;
}

.direct-contact-card:hover .contact-arrow {
  color: var(--amber-500);
}

/* === Right Column / Form === */
.right-column {
  animation: slideUp 0.6s ease-out 0.2s both;
  width: 60%;
}

/* === Contact Form === */
.form-wrapper {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: all 0.3s ease;
}

.console-header {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--slate-100);
  background: rgba(248, 250, 252, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-dots {
  display: flex;
  gap: 6px;
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.console-dot.red {
  background: rgba(239, 68, 68, 0.8);
}

.console-dot.yellow {
  background: rgba(251, 191, 36, 0.8);
}

.console-dot.green {
  background: rgba(34, 197, 94, 0.8);
}

.console-security {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  font-weight: 700;
  color: var(--amber-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #e0e0ff;
  padding: 0 10px;
  border-radius: 9999px;
}

.form-content {
  padding: 2.5rem;
}

.form-section {
  margin-bottom: 2.5rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 14px;
  color: var(--heading-color);
  margin-bottom: 35px;
}

.section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #e1dffe;
  color: var(--amber-500);
  font-size: 0.875rem;
}

.error-message {
  color: var(--red-500);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* === Scope Grid === */
.scope-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.scope-button {
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  padding: 1rem;
  border-radius: 12px;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid var(--slate-200);
  background: white;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  width: calc(33.33% - 7px);
}

.scope-button:hover {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.scope-button.selected {
  background: rgba(15, 23, 42, 0.05);
  border-color: var(--heading-color);
  color: var(--heading-color);
  box-shadow: 0 0 0 1px var(--heading-color);
}

.scope-button-content {
  position: relative;
  z-index: 10;
  padding-right: 1.5rem;
}

.scope-title {
  display: block;
  line-height: 1.4;
}

.scope-button.selected .scope-title {
  font-weight: 700;
}

.scope-subtitle {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

.scope-checkbox {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.scope-button.selected .scope-checkbox {
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.scope-button:hover .scope-checkbox {
  border-color: var(--amber-400);
}

/* === Input Fields === */
.input-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 34px;
  row-gap: 34px;
}

.input-wrapper {
  position: relative;
  width: calc(50% - 12px);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-right: 1px solid var(--slate-200);
  padding-right: 0.75rem;
  height: 1.5rem;
  z-index: 10;
  color: var(--slate-400);
  pointer-events: none;
}

.form-input {
  width: 100%;
  background: #f8fafc;
  border: 2px solid var(--slate-200);
  border-radius: 0.5rem;
  padding: 17px 1rem;
  font-size: 1rem;
  color: var(--navy-900);
  transition: all 0.2s ease;
  outline: none;
  font-family: var(--font-mons);
}

.form-input.has-icon {
  padding-left: 3.5rem !important;
}

.iti.iti--allow-dropdown .form-input.has-icon {
  padding-left: 5rem !important;
}

.input-wrapper:has(.form-input:focus) .form-label,
.input-wrapper:has(.form-input:not(:placeholder-shown)) .form-label {
  top: -0.625rem;
  background-color: #fff;
}

.form-input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  background-color: #fff;
}

.form-input.error {
  border-color: var(--red-500);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input::placeholder {
  color: transparent;
}

.form-label {
  position: absolute;
  left: 1rem;
  top: 0.875rem;
  color: var(--slate-500);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  pointer-events: none;
  background: #f8fafc;
  padding: 0 0.25rem;
}

.form-input.has-icon + .form-label {
  left: 3.5rem;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -0.625rem;
  font-size: 0.75rem;
  color: var(--amber-500);
}

.iti.iti--allow-dropdown:focus-within + .form-label {
  color: var(--amber-500);
}

.field-error {
  position: absolute;
  bottom: -1.65rem;
  left: 0.25rem;
  font-size: 0.75rem;
  color: var(--red-500);
  font-weight: 500;
}

.iti__selected-flag .iti__arrow {
  border-color: #475569 !important;
  margin-left: 9px;
  transition: 0.4s !important;
}

.iti__selected-flag .iti__arrow.iti__arrow--up {
  transform: rotate(-136deg) !important;
  transition: 0.4s;
  margin-top: 5px;
}

.iti__flag-container .iti__selected-flag {
  border-right: 1px solid #ddd;
}

.iti.iti--allow-dropdown .iti__flag-container {
  background: none;
}

.form-section .iti__country-list {
  max-width: 380px;
}

.form-section .input-wrapper .iti__country-list {
  background-color: #fff;
  border: 1px solid #e2e8f0;
}

.iti__country.iti__standard.iti__highlight {
  background-color: #f8fafc;
  color: var(--amber-500);
}

.form-section .iti__country {
  padding: 5px 10px;
  border: none;
}

.country-codes {
  left: 80px;
}

/* === Textarea === */
.textarea-wrapper {
  position: relative;
  background: #f8fafc;
  border: 2px solid var(--slate-200);
  border-radius: 0.5rem;
  height: 150px;
}

#fileElem {
  display: none;
}

.form-textarea {
  width: 100%;
  height: 80px;
  padding: 22px 20px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy-900);
  transition: all 0.2s ease;
  outline: none;
  resize: none;
  border: 2px solid var(--slate-200);
  border: none;
  background-color: #f8fafc;
  border-radius: 0.5rem;
}

.textarea-wrapper:has(.form-textarea.error) {
  border-color: var(--red-500);
}

.form-textarea:focus {
  background-color: #fff;
}

.form-textarea:focus + .textarea-wrapper {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  background-color: #ffffff;
}

.textarea-wrapper:has(textarea:focus) {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  background-color: #ffffff;
}

.form-textarea::placeholder {
  color: transparent;
}

.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
  top: -0.625rem;
  font-size: 0.75rem;
  color: var(--amber-500);
  background-color: #fff;
}

/* === Form Footer === */
.form-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1;
}

.info-badges p span svg {
  width: 17px;
  height: 17px;
  margin-right: 8px;
  color: var(--amber-500);
}

.info-badges p span {
  display: flex;
}

.info-badges p {
  font-size: 12px;
  display: flex;
  align-items: center;
}

.info-badges p a {
  text-decoration: underline;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--slate-50);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--slate-100);
  transition: all 0.2s ease;
  width: auto;
}

.info-badge:hover {
  border-color: #d1fae5;
  color: var(--green-700);
}

.info-badge:hover .badge-title {
  color: var(--green-700);
}

.info-badge.amber:hover .badge-title {
  color: #b45309;
}

.info-badge.amber:hover {
  border-color: var(--amber-100);
}

.badge-icon {
  padding: 0.25rem;
  border-radius: 0.375rem;
  background: #d1fae5;
  color: var(--green-700);
  display: flex;
}

.info-badge.amber .badge-icon {
  background: var(--amber-100);
  color: #92400e;
}

.badge-content {
  font-size: 10px;
  color: var(--slate-500);
  line-height: initial;
}

.badge-title {
  display: block;
  color: var(--navy-900);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: normal;
}

.submit-button {
  padding: 1rem 2.5rem;
  background: var(--button-color);
  color: white;
  width: fit-content;
  margin-left: auto;
  font-weight: 700;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.submit-button:hover:not(:disabled) {
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.3);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* === Success State === */
.success-wrapper {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--slate-100);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.success-icon {
  width: 5rem;
  height: 5rem;
  background: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.3);
  border: 4px solid #dcfce7;
}

.success-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
  text-align: center;
}

.success-message {
  color: var(--slate-500);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 28rem;
  font-size: 1.125rem;
}

.success-name {
  color: var(--navy-900);
  font-weight: 600;
}

/* === Timeline === */
.timeline {
  width: 100%;
  max-width: 28rem;
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-500), var(--slate-200));
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  border: 4px solid white;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.timeline-icon.active {
  background: var(--green-500);
}

.timeline-icon.pending {
  background: var(--slate-100);
}

.timeline-content {
  padding-top: 0.25rem;
}

.timeline-title {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.timeline-status {
  font-size: 0.875rem;
  font-weight: 500;
}

.timeline-status.active {
  color: var(--green-600);
}

.timeline-status.pending {
  color: var(--slate-500);
}

.timeline-item.fade {
  opacity: 0.75;
}

.timeline-item.fade-more {
  opacity: 0.5;
}

.reset-button {
  padding: 0.875rem 2rem;
  background: var(--slate-50);
  color: var(--navy-900);
  border: none;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reset-button:hover {
  background: var(--slate-100);
}

/* === Logo Marquee === */
.marquee-container {
  margin-top: 2rem;
}

.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 2rem 0;
}

.marquee-content {
  display: flex;
  animation: marquee 10s linear infinite;
  white-space: nowrap;
  align-items: center;
  gap: 25px;
}

.marquee-item {
  min-width: 24%;
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  user-select: none;
  opacity: 0.6;
  text-align: center;
  transition: all 0.5s;
}

.marquee-item:hover {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}

.marquee-gradient.left {
  left: 0;
  background: linear-gradient(to right, var(--slate-50), transparent);
}

.marquee-gradient.right {
  right: 0;
  background: linear-gradient(to left, var(--slate-50), transparent);
}

/* === Mobile Footer === */
.mobile-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-icon:hover {
  color: var(--navy-900);
}

/* === Icons === */
.icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
}

.icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-lg {
  width: 1rem;
  height: 1rem;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
}

/* === Spinner === */
.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* === Animations === */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* === Utilities === */
.hidden {
  display: none;
}

/* === Responsive === */
@media (min-width: 768px) {
  .nav-link {
    display: block;
  }
  .nav-phone {
    display: flex;
  }
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .mobile-header {
    display: none;
  }
  .left-column {
    display: block;
    width: 40%;
  }
  .content-grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
  }
  .hero-title {
    font-size: 4.5rem;
  }
  .mobile-footer {
    display: none;
  }
}
/* ===============================
Enterprise File Uploader Theme
=============================== */
.input-uploader {
  margin-top: 24px;
}

#browse-btn {
  background: rgba(217, 217, 217, 0.2);
  color: #414040 !important;
  border: none;
  padding: 5px 10px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  position: absolute;
  left: 15px;
  bottom: 28px;
  opacity: 0.7;
  border: 0.5px solid rgb(209, 209, 225);
}

#browse-btn:hover {
  transform: translateY(-1px);
}

#browse-btn:active {
  transform: scale(0.97);
}

.gal-loader {
  margin-top: 20px;
  text-align: center;
  display: none;
}

.gal-loader.show-me {
  display: block;
}

.loader {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid rgba(79, 70, 229, 0.15);
  border-top-color: #4f46e5;
  animation: uploader-spin 0.9s linear infinite;
  margin: 0 auto 10px;
}

.gal-loader.active .loader {
  display: block;
}

@keyframes uploader-spin {
  to {
    transform: rotate(360deg);
  }
}
#gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

#gallery img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e6ebff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

#file-type-error {
  margin-top: 10px;
  font-size: 13px;
  color: #dc2626;
  font-weight: 500;
}

.input-uploader #gallery button {
  content: "";
  display: block;
  position: absolute;
  right: 7px;
  top: 10px;
  transition: 0.15s ease-in-out;
  background: url(../images/sm-cross.svg);
  background-size: 11px;
  width: 17px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  border: 0;
  font-size: 0;
  background-color: #dc2626;
  border-radius: 100%;
}

.ad-file {
  display: inline-flex;
  margin-right: 10px;
  vertical-align: baseline;
  align-items: flex-start;
  position: relative;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 4px 30px 4px 10px;
  background: #f8f8f8;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-section .autocomplete-items div {
  color: #4B5563;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(212, 212, 212, 0.1882352941);
}

.custom-select-container.overflow-list.active .main-list-box {
  height: 185px;
  overflow-y: scroll;
}

.form-section .autocomplete-items div strong {
  font-weight: 500;
}

.form-section .autocomplete-items div:hover {
  background-color: #f1f5f9;
  cursor: pointer;
}

.form-section .autocomplete-items {
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid var(--slate-200);
}

.form-section .autocomplete-items {
  border-radius: 10px;
  margin-top: 8px;
}

.services-section {
  margin-bottom: 42px;
  width: 100%;
}

.services-section .section-title {
  color: #475569;
  margin-bottom: 24px;
}

/* Flex Container */
.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.service-card:hover,
.service-card.active {
  background: #ffffff;
  border-color: #6366f1;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
}

/* Icon Styles */
.card-icon {
  width: 28px;
  height: 28px;
  color: #94a3b8; /* Default gray icon */
  transition: color 0.3s ease;
}

.service-card:hover .card-icon,
.service-card.active .card-icon {
  color: #6366f1; /* Purple icon on hover */
}

/* Base Card */
.service-card {
  position: relative;
  width: calc(33.33% - 10px);
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  min-height: 60px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  padding: 11px;
}

.c-right-text {
  text-align: left;
  margin-left: 13px;
}

.c-right-text .card-desc {
  margin: 0;
}

.service-card:hover:not(.selected) {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.service-card.selected {
  border: 2.5px solid #4f46e5;
  background-color: #f8faff;
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.2);
}

.service-card.selected .card-icon svg {
  color: #4f46e5;
}

.service-card.selected::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border: 1.5px solid #4f46e5;
  border-radius: 50%;
  color: #4f46e5;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

/* Text Styles */
.card-title {
  font-size: 12px;
  color: #1e293b;
  margin: 0;
  line-height: 18px;
}

.card-desc {
  font-size: 10px;
  color: #94a3b8;
  margin: 4px;
  line-height: 12px;
}

/* Responsive adjustments for mobile */
.custom-select-container {
  position: relative;
}

/* The Trigger Box */
.select-trigger {
  width: 100%;
  min-height: 50px;
  background-color: #f8fafc;
  border: 2px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 14px 16px 14px 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.select-trigger span {
  font-size: 14px;
}

/* The Custom Options Menu (The part you wanted changed) */
.main-list-box {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0; /* Thin border from image */
  border-radius: 12px; /* Rounded corners from image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft shadow from image */
  padding: 8px 0;
  margin: 0;
  list-style: none;
  z-index: 100;
  display: none; /* Hidden until active */
}

.custom-select-container.active .main-list-box {
  display: block;
}

.main-list-box li {
  padding: 12px 24px;
  font-size: 15px;
  color: #475569;
  cursor: pointer;
  transition: 0.2s;
}

.main-list-box li:hover {
  background-color: #f1f5f9;
  color: #6366f1;
}

/* Floating Label Logic */
.floating-label {
  position: absolute;
  left: 56px;
  top: 50%;
  color: var(--slate-500);
  font-size: 0.875rem;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.2s ease;
}

.custom-select-container.has-value .floating-label,
.custom-select-container.active .floating-label {
  top: 0;
  font-size: 12px;
  font-weight: 700;
  background: white;
  padding: 0 5px;
  color: #6366f1;
}

/* Icons and Dividers */
.icon-box {
  position: absolute;
  left: 18px;
  padding-right: 12px;
  border-right: 1px solid #e2e8f0;
  color: #6366f1;
  z-index: 10;
  line-height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.arrow-icon {
  position: absolute;
  right: 20px;
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  transform: translateY(-50%);
  top: 50%;
}

.arrow-icon svg {
  fill: #475569;
}

.custom-select-container.active .arrow-icon {
  transform: rotate(180deg);
}

.upload-section {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.upload-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 30px;
  background-color: #fff;
  border: 2px dashed #cbd5e1; /* The dashed border from your image */
  border-radius: 16px;
  cursor: pointer; /* Changes cursor to a hand to show it's clickable */
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Hover effect to show the box is interactive */
.upload-container:hover {
  background-color: #f1f5f9;
  border-color: #6366f1;
}

.upload-icon-circle {
  width: 56px;
  height: 56px;
  background-color: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
}

.upload-text {
  display: flex;
  flex-direction: column;
}

.upload-title {
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  font-family: sans-serif;
}

.upload-subtitle {
  font-size: 14px;
  color: #94a3b8;
  font-family: sans-serif;
}

.form-grid.full-w.input-wrapper {
  width: 100%;
  margin-top: 20px;
}

.form-grid.full-w.input-wrapper .floating-label {
  left: 18px;
}

.form-grid.full-w.input-wrapper .select-trigger {
  padding: 17px;
}

.section-title .tworoes-text {
  line-height: normal;
  text-transform: uppercase;
}

.section-title .tworoes-text span {
  font-size: 12px !important;
  text-transform: lowercase;
  color: #64748b;
}

.submit-btn-right {
  display: flex;
  flex-direction: column;
}

.submit-btn-right p span svg {
  width: 17px;
  height: 17px;
  margin-right: 8px;
  color: var(--amber-500);
}

.submit-btn-right p {
  font-size: 12px;
  display: flex;
  align-items: center;
  line-height: 0;
  margin-top: 10px;
  color: var(--amber-500);
  text-transform: uppercase;
}

.pxl-contant-page {
  background-color: #f8fafc;
}

.form-label.country-flag {
  left: 80px;
}

.input-icon.flags {
  border: none;
}

.custom-select-container.active .select-trigger {
  background-color: #fff;
  border: 2px solid var(--amber-500);
}

.header-two .header-item-right .menu ul li.menu-item-has-children a {
  color: #45556c;
}

.header-two .header-item-left .large .dark {
  display: block;
}

.header-two .header-item-left .large .light {
  display: none;
}

.header-two.sc-up {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-two.sc-down.header-bg:hover {
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-two.sc-down.header-bg {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: unset;
  backdrop-filter: unset;
  border-bottom: unset;
  box-shadow: unset;
  transition: all 0.3s;
}

.header-two.header-bg.sc-up {
  background: #fff;
  border: none;
}

.section-title.no-border {
  border: none;
  margin-bottom: 0;
}

@media screen and (max-width: 1139px) {
  .header-two .header-item-left .large .light {
    display: block;
  }
  .header-two .header-item-left .large .dark {
    display: none;
  }
  .header-two.sc-up img.light {
    display: block;
  }
  .header-two.header-bg.sc-up {
    background-color: #1d1c39 !important;
  }
  .header-two.sc-down.header-bg {
    background-color: #1d1c39 !important;
  }
}
@media screen and (max-width: 1139px) {
  .header-two .header-item-right .mob-nav.active {
    height: 100vh !important;
  }
  .mobile-header {
    margin-top: 12rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .form-content {
    padding: 2rem;
  }
  .input-wrapper {
    width: 100%;
  }
  .direct-contact-card {
    margin-bottom: 50px;
  }
  .right-column {
    width: 60%;
  }
  .mobile-header {
    margin-top: 11rem !important;
  }
  .left-column {
    width: 40%;
  }
  .service-card {
    padding: 10px !important;
    width: calc(33% - 10px);
  }
}
@media screen and (max-width: 1023px) {
  .content-grid {
    margin-top: 40px;
  }
  .mobile-footer {
    gap: 1rem;
  }
  .right-column, .left-column {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .tworoes-text br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .form-content {
    padding: 1.5rem 14px;
  }
  .console-header {
    padding: 1rem 1.5rem;
  }
  .scope-grid {
    grid-template-columns: 1fr;
  }
  .input-grid {
    grid-template-columns: 1fr;
  }
  .form-footer {
    flex-direction: column;
    gap: 10px;
  }
  .submit-button {
    width: 100%;
    justify-content: center;
  }
  .info-badges {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .info-badges p {
    display: flex;
    margin-bottom: 0;
    line-height: unset;
  }
  .info-badges p a {
    margin-left: 5px;
  }
  .info-badge {
    width: 100%;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .location-tabs {
    gap: 0.375rem;
  }
  .location-tab {
    min-width: 60px;
    padding: 0.5rem;
    font-size: 10px;
  }
  .location-tab span {
    display: none;
  }
  .scope-button {
    width: calc(50% - 7px);
  }
  .service-card {
    width: calc(33.33% - 10px) !important;
  }
  .upload-container {
    padding: 20px !important;
    flex-direction: column;
  }
  .marquee-item {
    min-width: 33%;
  }
}
@media screen and (max-width: 640px) {
  #gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-header {
    margin-top: 7rem !important;
  }
}
@media (max-width: 600px) {
  .service-card {
    min-width: calc(50% - 16px); /* 2 cards per row on small screens */
  }
}
@media screen and (max-width: 540px) {
  .scope-button {
    width: 100%;
    padding: 10px 12px;
    min-height: 3rem;
  }
  .upload-icon-circle svg {
    width: 16px;
    height: 16px;
  }
  .scope-checkbox {
    bottom: unset;
    transform: translateY(0);
  }
  .input-wrapper {
    width: 100%;
  }
  .form-section {
    margin-bottom: 1rem;
  }
  .section-header {
    margin-bottom: 1rem;
  }
  .certifications-strip {
    margin-bottom: 0.5rem;
  }
  .mobile-footer {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .submit-btn-right p {
    font-size: 10px;
  }
  .mobile-footer {
    gap: 1rem;
  }
  .logo-marquee {
    padding: 0.5rem 0;
  }
  .mobile-header {
    margin-top: 4rem;
  }
  .marquee-item {
    font-size: 1rem;
    padding: 0 2rem;
  }
}

/*# sourceMappingURL=contact-v3.css.map */
