html {
  scroll-behavior: smooth;
}
* {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #545454;
  padding-top: 65px;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  text-transform: none;
}

ul,
li {
  list-style-type: none;
  padding: 0;
  margin: 0; /* added from sachin repo */
}

p {
  margin: 0;
  padding: 0;
}

/* below global css added from sachin repo */
a:link {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}

a:visited {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}

/*-------Header--------*/
.header {
  padding: 14px 0;
  background: #000002;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}
.headerwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  position: relative;
}
.header .navbar {
  padding: 0;
  position: static;
}
.header .navbar-nav {
  align-items: center;
}
.headerwrap img.white-bg {
  display: none;
}
.headerwrap img.black-bg {
  display: block;
  width: 250px;
}
.header .navbar-nav .nav-item {
  /* margin-left: 1.5rem; */
  margin-left: 2rem;
}
.header .navbar-nav .nav-item:first-child {
  margin: 0px;
}
/* .header .navbar-nav .nav-item:last-child {
  margin-left: 1rem;
} */
.header .navbar-nav .nav-link {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 200;
  padding: 0;
  position: relative;
}
.header .navbar-nav .nav-link.contact-link {
  position: relative;
  padding: 10px 15px;
  border-radius: 30px;
  background-color: transparent;
  color: #fff;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.header .navbar-nav .nav-link.contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px; /* This controls border thickness */
  background: linear-gradient(
    90deg,
    #1310a4,
    #5e0792,
    #cd0063,
    #f20f07,
    #ff4000
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.header .navbar-nav .nav-link.contact-link:hover::before {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  mask-composite: inherit
}


/* .header .navbar-nav .nav-link.contact-link:hover::before {
    opacity: 1;
} */

.header .navbar-nav .nav-link.collapse-link {
  padding-right: 25px;
}
.header .navbar-nav .nav-link.collapse-link:hover, .nav-collapse__content .nav-tabs .nav-tabs .nav-link:hover, .nav-collapse__content .nav-tabs .nav-tabs .nav-link:focus-visible, .nav-collapse__content .nav-tabs .nav-tabs .nav-link:focus, .nav-collapse__content .nav-tabs .nav-link:focus-visible, .nav-collapse__content .nav-tabs .nav-link:hover {
  border-color: transparent;
  box-shadow:none
}
.header .navbar-nav .nav-link.collapse-link:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.header .nav-collapse__content .nav-tabs .nav-link::before {
  border-color: #000 transparent transparent transparent;
}
.nav-collapse {
  position: absolute;
  padding-top: 20px;
  width: 330px;
  z-index: 2;
  box-shadow: 0px 0px 0 0px rgba(255, 255, 255, 0.08);
}
/* .header .navbar-nav .nav-link.collapse-link .nav-collapse__content {
  box-shadow: none;
} */
.nav-collapse.collapse {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;

  pointer-events: none;
}
.nav-collapse.collapse.show {
  opacity: 1;
  transform: translateY(0);

  pointer-events: auto;
}
.nav-collapse__content {
  background-color: #fff;
  /* box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.08); */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
/* .nav-collapse__content .nav-tabs .nav-link .nav-collapse__content {
  box-shadow: none;
} */
.nav-collapse__content .nav-tabs {
  flex-direction: column;
  border: none;
  gap: 5px;
  padding: 10px 15px;
}
.nav-collapse__content .nav-tabs .nav-item {
  margin-left: 0;
  border-bottom: #000 solid 0.5px;
  padding: 10px 0;
}
.nav-collapse__content .nav-tabs .nav-item:last-child {
  border: 0;
  margin-left: 0;
}
.nav-collapse__content .nav-tabs .nav-link {
  color: #000;
}

/* New Sub Nav */
.nav-collapse .nav-collapse {
  position: relative;
  padding-top: 0;
  width: 100%;
  box-shadow: none;
}
.header .nav-collapse__content .nav-tabs .nav-link .nav-collapse__content {
  box-shadow: none;
}

/* Optional: spacing & style for inner links */
.nav-collapse__content .nav-tabs .nav-tabs {
  padding-left: 0;
  padding-right: 0;
}

.nav-collapse__content .nav-tabs .nav-tabs .nav-item {
  padding: 10px 12px;
  border-bottom: #000 solid 0.5px;
}
.nav-collapse__content .nav-tabs .nav-tabs .nav-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* Rotate arrow on open */
.nav-link[aria-expanded="true"].collapse-link:before {
  transform: translateY(-50%) rotate(180deg);
}




.header .navbar-toggler {
  border: none;
  padding: 5px;
}
.header .navbar-toggler .bar {
  width: 22px;
  height: 2px;
  border-radius: 1px;
  transition: 0.3s;
  background-color: #fff;
  display: block;
}
.header .navbar-toggler .bar + .bar {
  margin-top: 4px;
}
.close-btn {
  text-align: right;
  padding: 1rem;
  display: none;
}

.close-button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  padding-right: 1.5rem;
  font-weight: 400;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brandStory {
  border: #acacac solid 1px;
  border-radius: 30px;
  padding: 9px 13px;
  font-size: 1rem;
  color: #fff !important;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-right: 10px;
}
.brandStory img {
  width: 30px;
  margin-left: 9px;
}
.header.sticky .navbar .navbar-toggler:focus {
  box-shadow: none;
}
.header.sticky .navbar .navbar-toggler {
  color: #000;
}

/* .headerLogo img {
  width: 100%;
}
.headerLogo img.white-bg {
  display: none;
}
.headerLogo img.black-bg {
  display: block;
}

.navbar-side {
	height: 100%;
	max-width: 40rem;
	font-size: 1.6rem;
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	list-style: none;
	background-color: #000000;
	overflow-y: scroll;
	z-index: 1000;
}
.navbar .nav-item {
  margin-left: 1.5rem;
}
.navbar .nav-item:first-child {
  margin-left: 0;
}
.navbar .navbar-nav .nav-link {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}

.navbar .navbar-toggler {
  color: #FFFFFF;
  padding: 0;
  border: 0;
}
.navbar {
  flex-wrap: nowrap;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.navbar-nav {
  justify-content: center;
  width: 100%;
}
.close-btn {
  text-align: right;
  padding: 1rem;
}

.close-button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding-right: 1.5rem;
  font-weight: 400;
}

@media (min-width: 320px) {
	.navbar-side {
		width: 100%;
	}
}

@media (max-width: 932px) {
	.navbar-side {
		width: 100%;
	}

	.navbar-side-item {
		padding: 1rem 0;
    border-bottom: #fff solid 1px;
	}

  .home .navbar-side-item:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brandStory {
    max-width: 70%;
  }
	.navbar-side-item a {
    font-size: 1.2rem;
    color: #fff;
	}
}

.side-link {
	padding-left: 1.7rem;
	padding-right: 1.2rem;
	color: #fff;
}

.side-link:active,
.side-link:hover {
	text-decoration: none;
	color: #fff;
}

.navbar-side {
	left: 0; 
	transform: translateX(-100%); 
	transition: transform 400ms ease;
}

.reveal {
	transform: translateX(0%);
	transition: 400ms ease;
}

.overlay {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	background-color: #5f5f5f;
	opacity: 0.6;
	z-index: 990;
}

@media (min-width: 932px) {
  .navbar-side,
  .overlay {
      display: none !important;
  }
}

.brandStory {
  border: #ACACAC solid 1px;
  border-radius: 30px;
  padding: 9px 13px;
  font-size: 1rem;
  color: #fff !important;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}
.brandStory img {
  width: 30px;
  margin-left: 9px;
} */

.headerSearch {
  color: #fff;
  background: #e6e6e6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.headerSearch img {
  width: 22px;
}
#panel {
  padding: 50px;
  display: none;
  position: absolute;
  top: 72px;
  width: 100%;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  z-index: 2;
  height: 1000dvw;
  overflow: hidden;
}
.search-form {
  width: 100%;
  position: relative;
}
.search-form input {
  appearance: none;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #000002;
  border-radius: 0;
  color: #000002;
  font-size: 20px;
  font-weight: 300;
  height: 52px;
  letter-spacing: 0.16px;
  line-height: 28px;
  padding: 9pt 50px 9px 1px;
  width: 100%;
}
.search-form input:focus {
  box-shadow: none;
  border-color: inherit;
  color: inherit;
}
.search-submit {
  position: absolute;
  border: 0;
  background: transparent;
  right: 10px;
  top: 13px;
  cursor: pointer;
}
.search-submit:focus-visible,
.icon-search:focus-visible,
.search-submit img:focus-visible,
.search-submit:focus,
.close-button:focus {
  outline: 0;
}
.search-suggestion {
  padding-top: 100px;
}
.search-suggestion h2 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
  padding-bottom: 30px;
  margin: 0;
  color: #000;
}
.suggestion-content {
  display: flex;
  flex: 0 0 25%;
  gap: 20px;
}
.contentList {
  flex: 0 0 25%;
}
.contentList h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000002;
}
.contentList p {
  font-size: 0.9rem;
  font-weight: 300;
}

/*-------Banner--------*/
.banner {
  position: relative;
  overflow: hidden;
      height: calc(100vh - 65px);
}
.videoWrap {
  position: relative;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
}

.banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.bannerTxt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 85%;
  z-index: 1;
  padding-top: 5rem;
  color: #fff;
}
.bannerTxt h2 {
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 25px;
  margin: 0;
}
.bannerTxt p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  padding-bottom: 50px;
}
.btn-primary {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  border-radius: 50px;
  padding: 20px 35px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: #fff !important;
  text-decoration: none;
  position: relative;
  z-index: 0;
  transition: 0.3s ease-in-out;
  border: none;
}
/* Hover state with gradient border */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px; /* Border thickness */
  background: linear-gradient(
    90deg,
    #1310a4,
    #5e0792,
    #cd0063,
    #f20f07,
    #ff4000
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background: transparent;
}

.btn-primary:hover::before {
  opacity: 1;
}

/*-------Who We Are--------*/
.who-we-are {
  text-align: center;
  padding: 145px 0 180px;
  scroll-margin-top: 100px;
}
.who-we-are h2 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  padding-bottom: 25px;
  margin: 0;
}
.who-we-are p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  padding-bottom: 45px;
}
.who-we-are-box {
  background: #eeeeee;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  /* transition: transform 0.5s ease, -webkit-transform 0.5s ease, -moz-transform 0.5s ease, -o-transform 0.5s ease; */
}

.who-we-are-boxTxt {
  padding: 35px 30px 60px;
}

.who-we-are-box h3 {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  color: #000000;
}
.who-we-are-box p {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #000;
  padding: 0;
}

/*-------What We Do--------*/
.what-we-do {
  position: relative;
  width: 100%;
  padding: 120px 0 40px;
  text-align: center;
}
.what-we-do::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/What-we-do-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.what-we-do-Title {
  position: relative;
  z-index: 1;
}

.what-we-do h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  padding-bottom: 25px;
  margin: 0;
}
.what-we-do p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
}

.what-we-do-boxWrap {
  margin-top: 160px;
}

.what-we-do-box {
  padding: 35px 30px;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: #797979 solid 1px;
  height: 100%;
}
.what-we-do-box img {
  width: 70px;
  margin: 0 0 20px;
  position: static;
  height: 56px;
  object-fit: contain;
}
.what-we-do-box span {
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 500;
  color: #ffff;
}
/*-------Home NeoNxt At A Glance--------*/
.home-glance {
  background: #000000;
}
.home-glance span.subhead,
.home-glance h2.mainhead,
.cloud-what-we-do.home-glance p {
  color: #fff;
}

/*-------How we Help--------*/
.How-We-Help {
  padding: 145px 0 60px;
  scroll-margin-top: 100px;
}
.How-We-Help h2 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  padding-bottom: 45px;
  margin: 0;
  text-align: center;
}
.How-We-Help__list h4 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 500;
  color: #000000;
  margin: 0;
  padding-bottom: 14px;
}
.How-We-Help__list p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: #575757;
}
.How-We-Help__list.bottom {
  padding-top: 112px;
}
.How-We-HelpImg img {
  margin: 0 auto;
  display: block;
}

/*-------Scrollable Text--------*/
/* .ScrolTxt {
  height: 100px;	
  overflow: hidden;
  position: relative;
 }
 .ScrolTxt h3 {
  font-size: 6em;
  color: #EEEEEE;
  position: absolute;
  white-space: nowrap;
  width: max-content;
  margin: 0;
  line-height: 100px;
  animation: scrollLoop 28s linear infinite;
}

.ScrolTxt h3 span {
  display: inline-block;
  padding-right: 5em; 
} */

/* Keyframes for smooth continuous scroll */
/* @keyframes scrollLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
} */

/*-------1500+ Customers--------*/
.Neonxt-Customer {
  padding: 120px 0;
  background: #eeeeee;
  text-align: center;
}
.Neonxt-Customer h2 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  padding-bottom: 45px;
  margin: 0;
}
.clients-logo {
  margin-top: 20px;
}
.logocard {
  position: relative;
  overflow: hidden;
}
.logocard img {
  z-index: 1;
}
.logocard {
  width: 150px;
  height: 150px;
  background-color: #ffffff54;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin: 5px 5px 10px;
}
.logocard .one {
  width: 50%;
  height: 100%;
  background-color: #ffffff;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.logocard .two {
  width: 50%;
  height: 100%;
  background-color: #ffffff;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.twologocard:nth-child(1) {
  margin-top: 2.5em;
}
.twologocard:nth-child(3) {
  margin-top: 5em;
}
.threelogocard:nth-child(4) {
  margin-top: 2em;
}
.twologocard:nth-child(5) {
  margin-top: 8em;
}
.twologocard:nth-child(7) {
  margin-top: 4em;
}
/*-------Custom VMs Powered by NeoNXT--------*/
.custom-vms {
  padding: 120px 0;
  position: relative;
}
.custom-vms::after {
  content: "";
  position: absolute;
  background: url(../images/custom-vms-bg.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  background-position: center center;
}
.custom-vms p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  padding: 0;
  color: #3b3b3b;
}
.custom-vms ul {
  padding: 20px 0 30px;
}
.custom-vms ul li {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  color: #292929;
  padding: 5px 0 5px 25px;
  position: relative;
}
.custom-vms ul li::before {
  content: "";
  position: absolute;
  background: url(../images/right-arrow.svg) no-repeat;
  width: 16px;
  height: 40px;
  left: 0;
  top: 12px;
}
.custom-vms a {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  border-radius: 50px;
  padding: 20px 35px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  transition: 0.3s ease-in-out;
}
.custom-vms a:hover {
  background: linear-gradient(
    90deg,
    #1196e3 0%,
    #205bbf 19.23%,
    #4742b7 38.94%,
    #a5248e 60.1%,
    #e13140 80.29%,
    #f4994b 98.08%
  );
}
.custom-vms img {
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
  background: white;
  border-radius: 16px;
}

/* .logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid #A0A0A0;
  border-right: none;
  border-bottom: none;
  max-width: 100%;
  background: #fff;
}

.logo-grid .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 10px;
  border-right: 1px solid #A0A0A0;
  border-bottom: 1px solid #A0A0A0;
  background: #fff;
  box-sizing: border-box;
}

.logo-grid .logo img {
  max-width: 70px;
  max-height: 50px;
  object-fit: contain;
}

.logo-grid .logo.more {
  background: linear-gradient(90deg, #1196E3 0%, #205BBF 19.23%, #4742B7 38.94%, #A5248E 60.1%, #E13140 80.29%, #F4994B 98.08%);
  color: white;
  font-weight: 500;
  border-radius: 0; 
  font-size: 1.2rem;
}

.logo-grid .logo.more a {
 cursor: pointer; */
/* }  */

/*-------Leadership Team--------*/
.Leadership-Team {
  padding: 155px 0 175px;
}

.Leadership-Team h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: #000000;
  padding-bottom: 68px;
  margin: 0;
  text-align: center;
}
.Leadership-Team-Img {
  background: linear-gradient(white, white) padding-box,
    /* Inner background */
      linear-gradient(
        90deg,
        #1196e3 0%,
        #205bbf 19.23%,
        #4742b7 38.94%,
        #a5248e 60.1%,
        #e13140 80.29%,
        #f4994b 98.08%
      )
      border-box;
  border: 2px solid transparent;
}
.Leadership-Team-Img img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
}
.Leadership-Team-Details {
  background: #0a0a0a;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-align: left;
}
.Leadership-Team-Details h4 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}
.Leadership-Team-Details span {
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 400;
  color: #e0e0e0;
}
.DetailsRight img {
  width: 38px;
}

/*-------Service--------*/
.service {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  padding: 100px 0;
  text-align: center;
  color: #fff;
}
.service h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  padding-bottom: 25px;
  margin: 0;
}
.service p {
  max-width: 715px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
}
.service p a {
  text-decoration: underline;
}

/*-------Footer--------*/
/* .footer {
background: #EEEEEE;
padding: 30px 0 25px;
}
.footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.copyright {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #000000;
} */

/*-------Sticky Header--------*/
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}
.header.sticky {
  background: #fff;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, 0.2);
}
.header.sticky .navbar-brand img {
  width: 250px;
}
.header.sticky .navbar-brand img.white-bg {
  display: block;
}
.header.sticky .navbar-brand img.black-bg {
  display: none;
}
.header.sticky .navbar .navbar-nav .nav-link,
.header.sticky .brandStory {
  color: #000 !important;
}
.header.sticky .navbar-nav .nav-link.contact-link:hover {
  color: #fff !important;
}
.header.sticky .navbar .navbar-toggler {
  color: #000;
}
.header.sticky .navbar-toggler .bar {
  background-color: #000;
}
.header.sticky .navbar-nav .nav-link.collapse-link:before {
  border-color: #000 transparent transparent transparent;
}

/*-------Inner Banner--------*/
.static-banner .container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  right: 0;
  margin: auto;
}
.static-banner > img {
  width: 100%;
}
.static-banner .bannerTxt {
  top: 28%;
  transform: translateY(-61%);
}
.static-banner .bannerTxt h2 {
  line-height: 1.3;
  padding-bottom: 18px;
}
.static-banner .bannerTxt p {
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0;
}
.static-banner .bannerBottom {
  position: absolute;
  z-index: 1;
  bottom: 50px;
  width: 100%;
}
.bannerBox {
  padding: 30px 30px 42px;
  background: #fff;
  width: 100%;
  height: 100%;
}
.bannerBox p {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 300;
  color: #000000;
  height: 50px;
  margin-bottom: 35px;
}
.bannerBox a {
  font-size: 0.9rem;
  line-height: 1;
  color: #000;
  font-weight: 300;
  border: 1px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    /* inner box */
      linear-gradient(
        90deg,
        #1310a4 0%,
        #5e0792 18.27%,
        #cd0063 51.44%,
        #f20f07 80.77%,
        #ff4000 100%
      )
      border-box;
  padding: 10px 23px;
  transition: 0.3s ease-in-out;
  display: inline-block;
}
.bannerBox a:hover {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  color: #fff;
  border-color: transparent;
}

/*-------Final CLoud What We Do--------*/
.cloud-what-we-do {
  padding: 87px 0;
  scroll-margin-top: 100px;
}
.cloud-what-we-do img {
  width: 100%;
}
.subhead {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  padding-bottom: 10px;
  margin: 0 0 22px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.subhead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #7100b5 0%,
    #cd0063 39.42%,
    #f20f07 71.15%,
    #ff4000 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease-out;
}

.subhead.in-view::after {
  transform: scaleX(1);
}

h2.mainhead {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  padding-bottom: 35px;
  margin: 0;
}
.cloud-what-we-do p {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  padding: 0;
  color: #3b3b3b;
}
/*-------Final CLoud Our Service--------*/
.cloud-service {
  padding: 145px 0 140px;
  background: #ededed;
  position: relative;
}
.half-circle {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  background: #ededed;
  width: 100px;
  text-align: center;
  border-radius: 50%;
  height: 110px;
  z-index: 1;
}
.neoicon {
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(-50%);
  z-index: 2;

  display: inline-block;
  animation: heartbeat 1.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.15);
  }
  60% {
    transform: scale(0.95);
  }
}
.neoicon img {
  width: 45px;
}
.cloud-service-boxjs {
  opacity: 0;
  transform: translateY(50px); /* Start slightly below its final position */
  transition: transform 1.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1); /* Smooth animation */
}
.cloud-service-boxjs.active {
  opacity: 1;
  transform: translateY(0); /* Moves to its original position */
}
.cloud-service-box {
  position: relative;
  padding: 45px 40px;
  background-color: #fafafa;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

/* Gradient border layer */
.cloud-service-box::after {
  content: "";
  border: 1px solid transparent;
  background: linear-gradient(#fafafa, #fafafa) padding-box,
    linear-gradient(
        90deg,
        #1310a4 0%,
        #5e0792 18.27%,
        #cd0063 51.44%,
        #f20f07 80.77%,
        #ff4000 100%
      )
      border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-origin: border-box;
  background-clip: content-box, border-box;
}

/* Ensure content stays on top */
.cloud-service-box > * {
  position: relative;
  z-index: 1;
}

.cloud-service h2.mainhead,
.cloud-partner h2.mainhead {
  padding-bottom: 65px;
}
.cloud-service-box > img {
  width: 75px;
  height: 70px;
  object-fit: contain;
}
/* .cloud-service-box > img.hover-view {
  display: none;
}
.cloud-service-box:hover > img.hover-view {
  display: block;
}
.cloud-service-box:hover > img.normal-view {
  display: none;
} */

.cloud-service-box p {
  padding-top: 25px;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 300;
  color: #000000;
}
.cloud-service-box:hover p {
  color: #ddd;
}
.cloud-service-box i {
  display: flex;
  justify-content: flex-end;
}
.cloud-service-box i img {
  width: 14px;
}
/*-------Final CLoud Our Partner--------*/
.cloud-partner {
  padding: 145px 0 140px;
}
.cloud-partner ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.cloud-partner ul li {
  border: 1px solid #bebebe;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 80px) / 5);
  box-sizing: border-box;
  transition: transform 0.2s ease;
}
.cloud-partner ul img {
  scale: 0.6;
  display: block;
  max-width: 100%;
  height: auto;
}
.cloud-partner ul img.partnerListMicrosoft {
  scale: 0.8;
} 
.cloud-partner ul img.partnerListGC {
  scale: 1;
} 
/*-------Final CLoud Connect with Us--------*/
.cloud-connect {
  background-image: url("../images/connect-bg.png");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}
.cloud-connect::after {
  content: "";
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.cloud-connect-Info {
  padding: 75px 0 110px;
}
.cloud-connect-Info h2 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 5px;
  margin: 0;
}
.cloud-connect-Info p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #d5d5d5;
  padding-bottom: 48px;
  margin: 0;
}
.cloud-connect-Info a {
  padding: 20px 40px;
  background: #fff;
  border-radius: 50px;
  font-size: 1.2rem;
  line-height: 1;
  color: #000000;
  text-align: center;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border: transparent solid 1px;
}
.cloud-connect-Info a:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.cloud-connect-Info a:hover img {
  filter: brightness(0) invert(1);
}
/*-------Inner Page Footer--------*/

.inner-footer {
  padding: 70px 0 35px;
  background: #010103;
}
.footer-logo img {
  width: 250px;
}

.footer-content {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px; */
  padding-top: 65px;
}

.footer-column {
  flex: 1 1 200px;
}
.footer-column h4 {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #7100b5 0%,
    #cd0063 39.42%,
    #f20f07 71.15%,
    #ff4000 100%
  );
}
.footermenu {
  display: flex;
  column-gap: 25px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-service {
  display: grid;
  /* grid-template-columns: auto auto auto; */
}
.footer-about {
  display: grid;
  /* grid-template-columns: auto auto; */
}

.footer-column a {
  color: #dadada;
  font-size: 0.8rem;
  line-height: 2.5rem;
}

.footer-column a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-self: flex-end;
  justify-content: flex-end;
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.social-icons img {
  width: 35px;
}

.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid #a5a5a5;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #9f9f9f;
}

.footer-links a {
  margin-right: 15px;
  color: #999;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/*-------Professional Services Banner--------*/
.professional-banner .bannerTxt {
  max-width: 60%;
}
/*-------Professional Services Why Choose--------*/
.professional-why-choose {
  padding: 145px 0 80px;
}

/*-------Professional Services What We Offer--------*/
.professional-offer {
  padding: 145px 0 107px;
}
.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.timeline::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 1px;
  border-left: 1px dashed #7f7f7f;
  background-color: transparent;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.phase {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.phase.left .content {
  width: 45%;
  text-align: left;
  margin-right: auto;
}

.phase.right .content {
  width: 45%;
  text-align: left;
  margin-left: auto;
}

.professional-offer .content h2 {
  font-size: 1.2rem;
  line-height: 1;
  color: #dfdfdf;
  margin: 0;
  font-weight: 500;
}

.professional-offer .content h2 span {
  font-size: 3.5rem;
  color: #dfdfdf;
  font-weight: 700;
  display: block;
}

.professional-offer .content h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 500;
  color: #000000;
}
.professional-offer .content small {
  font-size: 0.9rem;
  line-height: 1;
  margin: 0;
  font-weight: 500;
  color: #575757;
  display: block;
  padding: 8px 0 18px;
  border-bottom: #7f7f7f solid 1px;
}

.professional-offer .content h4 {
  font-size: 1rem;
  font-weight: 500;
  padding: 20px 0 5px;
  margin: 0;
  color: #383838;
}

.professional-offer .content p {
  font-size: 1rem;
  font-weight: 300;
  padding: 0px 0 5px;
  margin: 0;
  color: #383838;
}

/*-------Professional Key Capabilities--------*/
.professional-key-capabilities {
  padding: 145px 0 140px;
}
.professional-key-capabilities .cloud-service-box::before {
  background: none;
  content: transparent;
}
.key-Title {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 300;
  color: #000000;
  margin: 0;
  padding-top: 20px;
}
.professional-key-capabilities .cloud-service-box p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #575757;
  padding: 20px 0 0;
}
.cloud-service-box:hover p {
  color: inherit;
}

/*-------Professional Services Get Started with NeoNXT--------*/
.professional-get-started {
  background: url(../images/professional-get-started-bg.jpg) no-repeat;
  background-size: cover;
  background-position: top left;
  padding: 145px 0 140px;
}
.professional-get-started h2.mainhead {
  padding-bottom: 10px;
}
.professional-get-started p {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #3b3b3b;
}

/*-------Choose the Right Cloud Service Provider At A Glance--------*/
.cloud-what-we-do ul {
  padding: 20px 0;
}
.cloud-what-we-do ul li {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: #3b3b3b;
  position: relative;
  padding: 5px 0 0 15px;
}
.cloud-what-we-do ul li::after {
  content: "";
  background: #3b3b3b;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 15px;
}
/*-------Choose the Right Cloud Service What We Deliver--------*/
.we-deliverBox:before {
  display: none;
}
.we-deliverBox .key-Title {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 300;
}
.we-deliverBox p {
  padding-top: 15px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #575757;
}

/*-------Choose the Right Cloud Service--------*/
.cloud-servicesWrap {
  padding: 145px 0 160px;
}
.cloud-servicesTxt {
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid transparent;
  background: linear-gradient(#ededed, #ededed) padding-box,
    linear-gradient(
        90deg,
        #1310a4 0%,
        #5e0792 18.27%,
        #cd0063 51.44%,
        #f20f07 80.77%,
        #ff4000 100%
      )
      border-box;
  padding: 0 60px;
}
.cloud-servicesTxt h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
  color: #000000;
  padding-bottom: 24px;
  margin: 0;
}
.cloud-servicesTxt p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  color: #575757;
}


.cloud-servicesImg img {
  width: 100%;
}

/*-------About US Banner--------*/
.about-banner {
  background: #262626;
  overflow: hidden;
  height: auto;
}
.banner-left {
  color: #fff;
  max-width: 92%;
}
.banner-left h2 {
  font-size: 2.9rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
  padding-bottom: 25px;
}
.banner-left p {
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 400;
}
.banner-img {
  position: relative;
  width: 50vw;
  right: 0;
  overflow: hidden;
}
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-leadershipteam h2.mainhead {
  padding-bottom: 65px;
}

.about-leadershipteam h3 {
  background: linear-gradient(
    90deg,
    #1196e3 0%,
    #205bbf 19.23%,
    #4742b7 38.94%,
    #a5248e 60.1%,
    #e13140 80.29%,
    #f4994b 98.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 150px;
}
/* .about-leadershipteam > .container > span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000000;
  text-align: center;
  display: inline-block;
  margin-bottom: 80px;
  padding-bottom: 10px;
  position: relative;
}
.about-leadershipteam > .container > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #7100b5 0%,
    #cd0063 39.42%,
    #f20f07 71.15%,
    #ff4000 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease-out;
}

.about-leadershipteam > .container > span.in-view::after {
  transform: scaleX(1);
} */





/* primary common btn */
.primary-btn a {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  border-radius: 50px;
  padding: 20px 35px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 0;
  transition: 0.3s ease-in-out;
  border: none;
}
/* Hover state with gradient border */
.primary-btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px; /* Border thickness */
  background: linear-gradient(
    90deg,
    #1310a4,
    #5e0792,
    #cd0063,
    #f20f07,
    #ff4000
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.primary-btn a:hover {
  background: transparent;
  color: #292929;
}

.primary-btn a:hover::before {
  opacity: 1;
}

.quote-text {
  padding: 140px 0px;
  transition: 0.3s all ease-in;
}
.quote-text h2 {
  font-size: 40px;
  padding: 0;
  line-height: 1.2;
  padding-bottom: 50px;
}
.quote-text h3 {
  padding: 0;
  font-size: 27px;
  background: linear-gradient(
    90deg,
    #1196e3 0%,
    #205bbf 19.23%,
    #4742b7 38.94%,
    #a5248e 60.1%,
    #e13140 80.29%,
    #f4994b 98.08%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  text-align: center;
  font-size: 1.6rem;
}
@keyframes animatedBackground {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.quote-text {
  background: url(../images/quote-banner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.3s all ease-in;
  animation: animatedBackground 0.5s linear;
}
.quote-text h3,
.quote-text h2 {
  color: #ffffff;
  -webkit-text-fill-color: initial;
  text-align: center;
}


.aboutuscloud h2.mainhead {
  padding-bottom: 10px;
}
.aboutuscloud p.subheadpara {
  font-size: 16px;
  margin-bottom: 50px;
}
.cloudservicetxt h2 {
  /* font-size: 40px; */
  color: #000000;
  margin-bottom: 35px;
}
.padding-130 {
  padding-top: 130px;
}


/*-----------Home NeoNXT At A Glance -----------*/
.home-glance img,
.home-glance svg {
  width: 100%;
  height: 100%;
}
.home-glance img.circleimg1 {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 17%;
  animation: rotate 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -2s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.home-glance img.circleimg2 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 28%;
  animation: rotaterev 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -2s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.home-glance img.circleimgmain,
.home-glance svg.circleimgmain {
  animation: rotatemain 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1.5s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
 
@keyframes rotate {
  to {
    transform: rotate(435.477deg) translateZ(0);
  }
}
@keyframes rotaterev {
  to {
    transform: rotate(-505deg) translateZ(0);
  }
}
@keyframes rotatemain {
  to {
    transform: rotate(-680deg) translateZ(0);
  }
}
.cloud-what-we-do .glancebanner-text {
  left: 50%;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  max-width: 121px;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.3;
}

/*----------- On Premise -----------*/
.what-offer-blackbg {
  background: #000000;
  color: #ffffff;
  padding: 145px 0 180px;
  position: relative;
  z-index: 1;
}
.what-offer-blackbg::after {
  content: "";
  position: absolute;
  background: url(../images/black-bg.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  bottom: 88px;
  z-index: -1;
  background-position: center bottom;
}
.what-offer-blackbg .subhead, .what-offer-blackbg h2.mainhead {
  color: #ffffff;
}
.what-offer-blackbg h2.mainhead {
  padding-bottom: 12px;
}
.what-offer-blackbg .container > p {
  max-width: 950px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  padding-bottom: 45px;
  color: #ffffff;
}
.what-offer-blackbg .who-we-are-boxTxt {
  padding: 35px 30px;
}
h3.black-bgTitle {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 300;
  color: #000000;
  margin: 0;
}

/*----------- Sovereign Cloud -----------*/
.sovereign-banner .bannerTxt {
  max-width: 85%;
}
/*----------- Contact Tell Us -----------*/
.contact-form {
  padding: 87px 0;
}
.contact-tell-us {
  padding: 0 0 50px;
  /* border-bottom: #D1D1D1 solid 1px; */
}
.form-lebel {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #3B3B3B;
  padding-bottom: 15px;
  /* padding-left: 20px; */
  padding-left: 0;
  display: block;
  text-align: left;
}
.slider-wrapper {
  --thumb-diameter: 2em;
  --thumb-radius: calc(var(--thumb-diameter) / 2);
  --track-border-width: 1px;
  --value: 50;
  --pos: calc(var(--thumb-radius) + .01 * var(--value) *(100% - var(--thumb-diameter)));
  /* max-width: 30em;
  margin: 1em auto; */
  text-align: center;
  font-size: 7px;
}
.slider-tooltip {
  --tooltip-background: #ECECEC;
  --tooltip-border-width: 1px;
  --tooltip-border-color: transparent;
  --tooltip-hight-arrow: 1em;
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 15px;
  margin-left: calc(var(--pos) + var(--track-border-width));
  padding: 3px 25px;
  min-width: 10px;
  border: var(--tooltip-border-width) solid var(--tooltip-border-color);
  border-radius: 5px;
  font-weight: 400;
  white-space: nowrap;
  color: #3B3B3B;
  background-color: var(--tooltip-background);
  transition: .25s;
  translate: calc(-50%);
  font-size: 0.8rem;
}
.slider-tooltip::after {
  content: "";
  position: absolute;
  top: calc(100% + var(--tooltip-border-width));
  left: 50%;
  width: var(--tooltip-hight-arrow);
  height: var(--tooltip-hight-arrow);
  border: inherit;
  border-top: none;
  border-left: none;
  background-color: inherit;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}
input[type="range"].slider {
  --track-height: 9px;
  --track-background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  --thumb-background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  display: block;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: var(--track-height);
  margin: 0;
  border: var(--track-border-width) solid #ECECEC;
  border-radius: 50px;
  font-size: 1em;
  outline: none;
  background: #ECECEC;
  background-image: var(--track-background);
  background-position: 0 center;
  background-repeat: no-repeat;
  background-size: var(--pos) var(--track-height);
  cursor: pointer;
}
input[type="range"].slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: var(--thumb-diameter);
  height: var(--thumb-diameter);
  border: var(--thumb-border);
  border-radius: 50%;
  background: var(--thumb-background);
  box-shadow: 0 0 .5em #888;
  cursor: pointer;
}
input[type="range"].slider::-moz-range-thumb {
  box-sizing: border-box;
  width: var(--thumb-diameter);
  height: var(--thumb-diameter);
  border: var(--thumb-border);
  border-radius: 50%;
  background: var(--thumb-background);
  box-shadow: 0 0 .5em #888;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: var(--effect-over);
}
input[type="range"]::-moz-range-thumb:hover {
  box-shadow: var(--effect-over);
}
/*----------- Contact Sec -----------*/
.contact-banner {height: inherit;}
.contact-banner img {
  height: auto;
}
.contact-sec {
  padding: 30px 0 12px;
  border-bottom: #D1D1D1 solid 1px;
}
.contact-sec.pad-50 {
  padding: 50px 0;
}
.contactTitle {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  padding-bottom: 30px;
  margin: 0;
}
.checkbox-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.check-label {
  margin-right: 1px;
  margin-bottom: 18px;
  cursor: pointer;
}
.btn-check {
  font-size: 1rem;
  font-weight: 400;
  color: #3B3B3B;
  text-align: center;
  padding: 10px 23px;
  display: flex;
  align-items: center;
}
.btn-check {
  transition: all 0.2s ease;
  background-color: #ECECEC;
  border-radius: 55px;
}
btn-check::selection{
  background: green;
}
input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
}
.btn-check img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
input[type="checkbox"] + div {
  position: relative;
}
input[type="checkbox"]:checked + div {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
}
input[type="checkbox"]:checked + div>span {
  color: white;
}
.custom-slider-wrapper {
  --thumb-diameter: 2em;
  --thumb-radius: calc(var(--thumb-diameter) / 2);
  --track-border-width: 1px;
  --value: 50;
  --pos: calc(var(--thumb-radius) + .01 * var(--value) *(100% - var(--thumb-diameter)));
  text-align: center;
  font-size: 7px;
  width: 50%;
  position: relative;
}

.custom-slider-value.slider-tooltip {
  --tooltip-background: #ECECEC;
  --tooltip-border-width: 1px;
  --tooltip-border-color: transparent;
  --tooltip-hight-arrow: 1em;
  display: block;
  width: fit-content;
  margin: auto;
  margin-bottom: 15px;
  margin-left: calc(var(--pos) + var(--track-border-width));
  padding: 3px 33px;
  min-width: 10px;
  border: var(--tooltip-border-width) solid var(--tooltip-border-color);
  border-radius: 5px;
  font-weight: 400;
  white-space: nowrap;
  color: #3B3B3B;
  background-color: var(--tooltip-background);
  transition: .25s;
  translate: calc(-27%);
  font-size: 0.8rem;
}

.custom-slider-value.slider-tooltip::after {
  content: "";
  position: absolute;
  top: calc(100% + var(--tooltip-border-width));
  left: 50%;
  width: var(--tooltip-hight-arrow);
  height: var(--tooltip-hight-arrow);
  border: inherit;
  border-top: none;
  border-left: none;
  background-color: inherit;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

input[type="range"].custom-slider-range {
  --track-height: 9px;
  --track-background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  --thumb-background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
  display: block;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: var(--track-height);
  margin: 0;
  border: var(--track-border-width) solid #ECECEC;
  border-radius: 50px;
  font-size: 1em;
  outline: none;
  background: #ECECEC;
  background-image: var(--track-background);
  background-position: 0 center;
  background-repeat: no-repeat;
  background-size: var(--pos) var(--track-height);
  cursor: pointer;
  margin: 0 30px;
}

input[type="range"].custom-slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: var(--thumb-diameter);
  height: var(--thumb-diameter);
  border: var(--thumb-border);
  border-radius: 50%;
  background: var(--thumb-background);
  box-shadow: 0 0 .5em #888;
  cursor: pointer;
}

input[type="range"].custom-slider-range::-moz-range-thumb {
  box-sizing: border-box;
  width: var(--thumb-diameter);
  height: var(--thumb-diameter);
  border: var(--thumb-border);
  border-radius: 50%;
  background: var(--thumb-background);
  box-shadow: 0 0 .5em #888;
  cursor: pointer;
}

input[type="range"].custom-slider-range::-webkit-slider-thumb:hover {
  box-shadow: var(--effect-over);
}

input[type="range"].custom-slider-range::-moz-range-thumb:hover {
  box-shadow: var(--effect-over);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
}

.min-value,
.max-value {
  color: #3B3B3B;
  font-weight: 400;
  font-size: 0.9rem;
  position: absolute;
  left: 0;
  bottom: -6px;
}
.max-value {
  left: 100%;
  padding-left: 40px;
}
.contact-sec.btm-contact {
  border: 0;
}
.contact-form .btn-primary {
  padding: 20px 45px 20px 35px;
}
.contact-form .btn-primary::after {
  content: "";
  position: absolute;
  background: url('../images/right-arrow-white.svg') no-repeat center;
  background-size: contain;
  width: 21px;
  height: 15px;
  z-index: 5;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-form .btn-primary:hover, .assessment-form .btn-primary:hover {
  background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%
  );
}
.location {
  background: #E9E9E9;
  padding: 120px 0;
}
.locationBox {
  background: #FAFAFA;
  padding: 45px 50px;
  height: 100%;
}
.locationBox img {
  height: 58px;
}
.locationBox h3 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: #000000;
  padding-top: 50px;
  margin-bottom: 15px;
}
.locationBox p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #575757;
}
.contact-cloud-connect .cloud-connect-Info a {
  margin-right: 35px;
}
.contact-cloud-connect .cloud-connect-Info a img {
  margin-right: 12px;
  height: 25px;
  width: 25px;
}
/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  margin-bottom: 18px;
  cursor: pointer;
}
.custom-select-wrapper select {
  display: none;
}
.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin: 10px 0;
  border: 1px solid #ECECEC;
  border-radius: 4px;
  background: #fff;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.custom-options:before {
  position: absolute;
  display: block;
  content: "";
  bottom: 100%;
  right: 25px;
  width: 7px;
  height: 7px;
  margin-bottom: -4px;
  border-top: 1px solid #ECECEC;
  border-left: 1px solid #ECECEC;
  background: #fff;
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.option-hover:before {
  background: #f9f9f9;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 16px;
  border-bottom: 1px solid #ECECEC;
  font-size: 0.9rem;
  font-weight: 400;
  color: #3B3B3B;
  line-height: 42px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}
.custom-option:hover,
.custom-option.selection {
  background: #f9f9f9;
}
/*----------- Temporary Contact Us -----------*/
.form-control {
  border: 0;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    padding: 0 12px;
    border-bottom: #AEAEAE solid 1px;
}
.form-control:focus  {
  box-shadow: none;
  outline: 0;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #1196e3 0%, #205bbf 19.23%, #4742b7 38.94%, #a5248e 60.1%, #e13140 80.29%, #f4994b 98.08%) border-box;
  border-bottom: 1px solid transparent;
}

/*-------Application Modernization--------*/
.app-moderization-key {
  background: #000;
  padding: 145px 0 107px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.app-moderization-key::after {
    content: "";
    position: absolute;
    background: url(../images/black-bg.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 40px;
    z-index: -1;
    background-position: center top;
}
.app-moderization-key .subhead, .app-moderization-key .mainhead {
  color: #ffffff;
}
.keyrightBox {
  padding: 30px 35px;
  background: #1F1F1F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.keyrightBox img {
  width: 70px;
  height: 65px;
  object-fit: contain;
}
.keyrightBox p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #D7D7D7;
  padding-left: 50px;
}

/*-------Career--------*/
.roleBox {
  position: relative;
}
.roleBox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  content: "";
}
.roleBox img {
  width: 100%;
  border: 1px solid transparent;
  background: linear-gradient(#fafafa, #fafafa) padding-box, linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%) border-box;
}
.roleBox-txt {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 38px;
  color: #fff;
  z-index: 1;
}
.roleBox-txt h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 7px;
}
.roleBox-txt p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}
.app-moderization-keyleft p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: #CBCBCB;
}
.career-keyrightTxt {
  padding-left: 50px;
}
.keyrightBox h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 500;
  color: #FFFFFF;
}
.career-keyright p {
  padding-left: 0;
}
.career-opportunity {
  padding: 145px 0 140px;
  background: #ededed;
  position: relative;
}
.career-opportunitylist {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.career-opportunitylist li {
  padding: 18px 22px;
  background: #000000;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
}
.career-opportunity p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: #000000;
  padding-top: 45px;
}
.lifeNeonxt {
  padding: 145px 0 140px;
}
.lifeNeonxt_img {
  position: relative;
}
.lifeNeonxt_title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.lifeNeonxt_title h2 {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
}
.lifeNeonxt_title h2 img {
  width: 170px;
  display: inline-block;
  vertical-align: top;
}
.lifeNeonxt_col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 565px;
}
.lifeNeonxt_list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.lifeNeonxt_title p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #D6D6D6;
  max-width: 42%;
  margin: 0 auto;
}
.lifeNeonxt img {
  width: 100%;
}
.lifeNeonxt_list p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
}

/*-------404 Error--------*/
.errorwrap {
  height: 100%;
}
.errorpage {
  background: #010103 url(../images/error-404.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  min-height: 100vh;
}
.errorpage-left {
  padding: 50px 0;
}
.errorpage h2 {
  font-size: 150px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  padding-bottom: 15px;
  color: #fff;
}
.errorpage p {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  padding-bottom: 25px;
  border-bottom: #909090 solid 1px;
}
.errorpage .footer-column {
  padding-top: 80px;
}
.errorpage .footer-column ul {
  flex-wrap: wrap;
}
.errorpage .footer-column ul li {
  width: 47%;
}

/*-------Multi-Hybrid-Cloud-Assessment-Form--------*/
.assessment-form .modal-dialog {
  max-width: 85%;
  margin: 0 auto;
  padding: 30px 0;
}
.assessment-form  .modal-content {
  padding: 35px 40px;
  border-radius: 32px;
}
.assessment-form .modal-body, .assessment-form h2.mainhead {
  padding: 0;
  
}
.assessment-form .modal-header {
  padding: 0;
  border: 0;
}
.assessment-tell-us {
  padding: 30px 0;
  border-bottom: #D1D1D1 solid 1px;
}
.assessment-tell-us .form-lebel {
  padding-left: 20px;
}
.assessment-tell-us .form-control {
  border: #AEAEAE solid 1px;
  border-radius: 55px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  padding: 9px 12px;
}
.assessment-tell-us .form-control:focus {
  box-shadow: none;
  outline: none;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #1196e3 0%, #205bbf 19.23%, #4742b7 38.94%, #a5248e 60.1%, #e13140 80.29%, #f4994b 98.08%) border-box;
    border: 1px solid transparent;
}
.btn-whitebg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background-color: white;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 50px;
  cursor: pointer;
}

.btn-whitebg .gradient-text {
    font-weight: 400;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.btn-whitebg img {
  width: 12px;
  height: 17px;
}

/*-------Cloud Campaign starts from here--------*/
body.campaign {
  padding-top: 0;
}
.campaign .banner {
  height: 100vh;
}
.campaign-headwrap {
  position: relative;
}
.campaign-header {
  position: absolute;
  width: 100%;
  top: 30px;
  left: 0;
}
.banner .campaign-logo img {
  width: 15rem;
  height: auto;
}
.campaignBanner-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  right: 0;
  margin: auto;
}
.campaignBanner-wrap .bannerTxt {
  position: static;
  transform: none;
  padding-top: 0;
}
.banner_slideinfo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  padding-top: 5rem;
}
.professional-banner .campaignBanner-wrap .bannerTxt {
  max-width: 100%;
}
.campaignBanner_btm {
  padding-top: 3rem;
  display: flex;
}
.campaignBanner_btm li {
  display: inline-flex;
  flex-direction: column;
  padding: 0 30px;
  border-left: #FFFFFF solid 1px;
}
.campaignBanner_btm li:first-child {
  padding-left: 0;
  border-left: 0;
}
.campaignBanner_btm li img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.campaignBanner_btm li label {
  font-size: 0.85rem;
  font-weight: 400;
  color: #fff;
  display: block;
  padding-top: 1rem;
}
.main-para {
  max-width: 950px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  padding-bottom: 45px;
  color: #000;
}
h2.mainhead.campaign-mainhead {
  padding-bottom: 30px;
}
.campaign-blackbg {
  background: #000000;
  color: #ffffff;
  padding: 145px 0 107px;
}
.campaign-blackbg h2.mainhead {
  color: #ffffff;
}
.campaign-blackbg ul {
  display: flex;
  flex-wrap: wrap;
}
.campaign-blackbg ul li {
  width: 50%;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  padding-bottom: 20px;
  padding-left: 40px;
}
.campaign-blackbg ul li::before {
  content: "";
  background: url(../images/checkmark.svg) no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  background-size: 100% 100%;
  left: 0;
  top: 4px;
}
.campaign-offering {
  padding: 145px 0 140px;
}
.campaign-offering .table-responsive {
  border-radius: 24px;
  box-shadow: 0px 0px 32px 12px #00000014;
  overflow: hidden;
}
.offerTable {
  margin: 0;
  border-collapse: collapse;
  width: 100%;
}
.offerTable tr th,
.offerTable tr td {
  padding: 28px 30px;
  border-bottom: #D1D1D1 solid 1px;
  border-right: 0;
  border-left: 0;
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  vertical-align: middle;
}
.offerTable tr th {
  font-weight: 600;
}
.offerTable tr th:last-child,
.offerTable tr td:last-child {
  text-align: center;
}
.offerTable tr:last-child td {
  border-bottom: 0;
  border-top: 0;
}
.offerTable tr th:nth-child(2),
.offerTable tr td:nth-child(2) {
  background: #FAFAFA;
  text-align: center;
  border: 1px solid transparent;
  border-top: 0 solid transparent;
  background: 
    linear-gradient(#fafafa, #fafafa) padding-box, 
    linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%)
 border-box;
}
.offerTable tr th:nth-child(2) {
  border-top: 1px solid transparent;
  background: 
    linear-gradient(#fafafa, #fafafa) padding-box, 
    linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%)
 border-box;
}
.offerTable_logo img {
  max-width: 170px;
}
.offerTable_checkmark img {
  width: 30px;
}
.offerTable_cross img {
  width: 18px;
}
.timeline.campaign_timeline {
  padding-left: 42px;
  position: relative;
  display: block !important;
  max-width: none !important;
  margin: 0 !important;
  flex-direction: initial !important;
}
.timeline.campaign_timeline::before {
  display: none;
}
.timeline.campaign_timeline::after {
  left: 0;
  top: 32px;
  height: 86%;
  width: 1px;
  border-left: 1px dashed #7f7f7f;
  background-color: transparent;
  content: "";
  position: absolute;
}
.campaign_timeline .phase {
  padding-bottom: 60px;
  position: relative;
  display: block !important;
  justify-content: initial !important;
  align-items: initial !important;
  width: 100%;
  box-sizing: border-box;
}
.campaign_timeline .phase:last-child {
  padding-bottom: 0;
}
.campaign_timeline .phase::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%);
  top: 32px;
  left: -49px;
  z-index: 1;
}
.campaign_timeline .content {
  width: 100% !important;
  text-align: left;
  margin: 0 !important;
}
.professional-offer .campaign_timeline .content h2 {
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
}
.professional-offer .campaign_timeline .content h2 span {
  display: inline;
  padding-left: 6px;
}
.cloudbill {
  padding-top: 80px;
}
.cloudbill img {
  max-width: 90%;
  width: 100%;
}
.campaignNeonxt-Customer {
  text-align: left;
}
.campaignNeonxt-Customer .logocard {
  padding: 30px 15px;
  width: 95px;
  height: 95px;
}
.campaignNeonxt-Customer .logocard img {
  z-index: 1;
  max-width: 55px;
}
.inner-footer.campaignfooter {
  padding: 50px 0;
}
.campaignfooter .footer-logo img {
  width: 200px;
}
.campaignfooter_contact {
  display: flex;
  align-items: center;
  padding-left: 85px;
}
.campaignfooter_contact li {
  font-size: 0.9rem;
  font-weight: 400;
  color: #FFF9F9;
  padding: 0 12px;
  position: relative;
}
.campaignfooter_contact li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: #FFF9F9;
  left: 0;
}
.campaignfooter_contact li:first-child {
  padding-left: 0;
}
.campaignfooter_contact li:first-child::before {
  display: none;
}
.campaignbanner_form {
  background: #fff;
  box-shadow: 0px 0px 32px 12px #00000014;
  border-radius: 24px;
  padding: 20px 30px;
  text-align: center;
}
.campaignbanner_form h2 {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  text-align: center;
  padding-bottom: 1rem;
  margin: 0;
}
.campaignbanner_form input, .campaignbanner_form textarea {
  border: #AEAEAE solid 1px;
  border-radius: 55px;
  padding: 10px 22px;
  width: 100%;
  font-size: 0.9rem;
  line-height: 1;
  color: #AEAEAE;
  font-weight: 400;
}
.campaignbanner_form input:hover, .campaignbanner_form textarea:hover, .campaignbanner_form input:focus, .campaignbanner_form textarea:focus {
  box-shadow: none;
  outline: 0;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #1196e3 0%, #205bbf 19.23%, #4742b7 38.94%, #a5248e 60.1%, #e13140 80.29%, #f4994b 98.08%) border-box;
  border: 1px solid transparent;
}
.campaignbanner_form textarea {
  border-radius: 18px;
  height: 120px;
  resize: none;
}
.campaignbanner_form .btn-primary {
  padding: 20px 45px 20px 35px;
}
.campaignbanner_form .btn-primary::after {
  content: "";
  position: absolute;
  background: url(../images/right-arrow-white.svg) no-repeat center;
  background-size: contain;
  width: 21px;
  height: 15px;
  z-index: 5;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.campaignbanner_form .btn-primary:hover {
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%);
}
.fixed-form {
  position: fixed;
  right: calc((100vw - 1155px) / 2);
  top: 15px;
  z-index: 1;
  width: 30%;
}

/*-------Resposive starts from here--------*/
@media (min-width: 992px) {
  .fixed-form {
    right: calc((100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .fixed-form {
    right: calc((100vw - 1155px) / 2);
  }
}
@media (min-width: 1400px) {
  .fixed-form {
    right: calc((100vw - 1320px) / 2);
  }
}
@media (min-width: 1660px) {
  .fixed-form {
    right: calc((100vw - 1572px) / 2);
  }
}
@media (min-width: 1660px) {
  .container {
    width: 100%;
    max-width: 83%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .headerLogo img,
  .header.sticky .headerLogo img {
    width: 250px;
  }
  .header .navbar-nav .nav-item {
    /* margin-left: 1.8rem; */
    margin-left: 3.8rem;
  }
  .header .navbar-nav .nav-link {
    font-size: 1.1rem;
  }
  .nav-collapse__content .nav-tabs .nav-item {
    margin-left: 0;
  }
  .brandStory {
    padding: 9px 18px;
    font-size: 1.1rem;
    margin-right: 20px;
  }
  .headerSearch {
    margin-left: 20px;
  }
  /* .banner {
    height: calc(100vh - 70px);
  } */
  .banner img {
    height: 100vh;
    object-fit: cover;
  }
  .static-banner .bannerTxt {
    transform: translateY(-40%);
  }
  .bannerTxt h2,
  .static-banner .bannerTxt h2 {
    font-size: 4.2rem;
    line-height: 1.3;
    padding-bottom: 35px;
  }
  .bannerTxt p,
  .static-banner .bannerTxt p {
    font-size: 2.3rem;
    line-height: 1.3;
    padding-bottom: 70px;
  }
  .static-banner .bannerTxt p {
    padding-bottom: 0;
  }
  .btn-primary {
    padding: 25px 45px;
    font-size: 1.8rem;
  }
  .btn-whitebg {
    padding: 20px 40px;
  }
  .btn-whitebg .gradient-text {
    font-size: 1.5rem;
        line-height: 1.3;
  }
  .btn-whitebg img {
    height: auto;
  }
  .static-banner .bannerBottom {
    bottom: 100px;
  }
  .bannerBox p {
    font-size: 1.4rem;
  }
  /*-------Index Page CSS--------*/
  h2.mainhead,
  .who-we-are h2,
  .How-We-Help h2,
  .Neonxt-Customer h2 {
    font-size: 2.5rem;
  }
  .custom-vms ul {
    padding: 40px 0 120px;
  }
  .logocard {
    width: 180px;
    height: 180px;
    padding: 40px;
  }
  
  /*-------Inner Page CSS--------*/
  .cloud-service-box p br {
    display: none;
  }
  .professional-get-started {
    padding: 285px 0;
    background-position: right center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .cloud-what-we-do p {
    max-width: 90%;
  }
  .cloud-service-box {
    padding: 45px 52px;
  }
  .professional-get-started p {
    font-size: 1.3rem;
  }
  .cloudservicetxt h2 {
    font-size: 50px;
  }
  /*-------About US Banner--------*/
  .banner-left {
    max-width: 90%;
  }

  /*-----------Home NeoNXT At A Glance -----------*/
  .cloud-what-we-do .glancebanner-text {
    left: 50%;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    position: absolute;
    top: 50%;
    max-width: 135px;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1.3;
  }
  @keyframes rotate {
    to {
      transform: rotate(352.477deg) translateZ(0);
    }
  }
  @keyframes rotatemain {
    to {
      transform: rotate(-570deg) translateZ(0);
    }
  }
  @keyframes rotaterev {
    to {
      transform: rotate(-423deg) translateZ(0);
    }
  }
  /*-----------Contact US-----------*/
  .contact-banner {
    height: inherit;
  }
  .contact-banner img {
    height: auto;
  }
  /*-------Career--------*/
  .app-moderization-key.career-moderization-key {
    padding: 180px 0;
  }
  .lifeNeonxt_col {
    min-height: 740px;
  }

}

@media (max-width: 1199px) {
  .headerwrap img.black-bg {
    width: 200px;
  }
  .header .navbar-nav .nav-item:first-child {
    margin-left: 0;
  }
  .brandStory {
    padding: 9px;
    font-size: 0.8rem;
  }
  .header .navbar-nav .nav-item {
    margin-left: 0.8rem;
  }
  .brandStory img {
    width: 20px;
    margin-left: 9px;
  }

  .who-we-are-boxTxt, .what-offer-blackbg .who-we-are-boxTxt {
    padding: 40px 30px;
  }
  h2.mainhead,
  .cloud-connect-Info h2 {
    font-size: 2.1rem;
  }
  .cloud-connect {
    background-size: 60% 100%;
  }
  .cloud-connect-Info {
    padding: 50px 0;
  }
  .logocard {
    width: 128px;
    height: 128px;
  }
  /*-------Professional Services--------*/
  .professional-get-started {
    padding: 100px 0;
    background-position: right center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  /* new css changes */
  .headerwrap img.black-bg {
    width: 200px;
  }
  .headerSearch {
    width: 55px;
    height: 35px;
  }
  .header .navbar-nav .nav-link {
    font-size: 0.9rem;
  }
  .nav-collapse__content .nav-tabs .nav-item {
    padding: 15px 10px;
  }
  .brandStory {
    padding: 9px;
    font-size: 0.8rem;
  }
  .brandStory img {
    width: 20px;
    margin-left: 9px;
  }
  .header .navbar-nav .nav-item {
    margin-left: 0.8rem;
  }
  .headerSearch img {
    width: 18px;
  }
  .header.sticky .navbar-brand img {
    width: 200px;
  }
  /*-----------Home NeoNXT At A Glance -----------*/
  .cloud-what-we-do .glancebanner-text {
    font-size: 12px;
  }
   /*-----------Contact Us page -----------*/
   body {padding-top: 60px;}
  .contact-banner {
    height: inherit;
  }
  .contact-banner img {
    height: auto;
  }
  /*-------Career--------*/
  .roleBox-txt {
    padding: 0 20px;
  }
  .lifeNeonxt_col {
    min-height: 480px;
  }
}

@media (max-width: 991px) {
  .header__navbar-collapse {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -150%;
    background-color: #fff;
    transition: 0.3s ease-in-out;
    border-top: 1px solid var(--border-color);
    z-index: 11;
  }
  .header__navbar-collapse.show {
    left: 0;
  }
  .header__navbar-collapse .navbar-nav {
    margin: 0 auto;
    padding: 0;
  }
  .header .navbar-nav .nav-item {
    margin-left: 0;
    padding: 20px;
    border-bottom: #000 solid 1px;
    width: 100%;
  }
  .header .navbar-nav .nav-link {
    color: #000;
  }

  .header .navbar-nav .nav-link.collapse-link:before {
    border-color: #000 transparent transparent transparent;
    transform: translateY(-50%) rotate(270deg);
  }
  .header .navbar-nav .nav-link.collapse-link.collapsed:before {
    transform: translateY(-50%);
  }
  .nav-collapse {
    width: 100%;
    position: static;
    box-shadow: none;
  }
  .nav-collapse__content {
    box-shadow: none;
    border-radius: 0px;
    background: transparent;
  }
  .nav-collapse__content .nav-tabs {
    gap: 0;
  }
  .nav-collapse ul li {
    background: #e7e7e769;
  }
  .nav-collapse__content .nav-tabs .nav-tabs li {
    background: transparent;
  }
  .header .navbar-nav .nav-item:first-child {
    padding-bottom: 10px;
  }
  .header .navbar-nav .nav-link.contact-link {
    padding: 0;
    color: #000;
  }
  .header .navbar-nav .nav-item:last-child {
    margin-left: 0;
  }
  .header .navbar-nav .nav-link.contact-link::before {
    background: transparent;
  }
  .header .navbar-nav .nav-link.contact-link:hover::before {
    background: none;
  }
  .header.sticky .navbar-nav .nav-link.contact-link:hover {
    color: #000 !important;
  }
  .close-btn {
    display: block;
  }
  .bannerTxt {
    top: 40%;
    transform: translateY(-40%);
    padding-top: 0;
  }
  .bannerTxt h2,
  .banner-left h2 {
    font-size: 2.4rem;
    padding-bottom: 20px;
  }
  .bannerTxt p,
  .banner-left p {
    font-size: 1.1rem;
    padding-bottom: 30px;
  }

  .menu-items li {
    margin-left: 0.8rem;
    font-size: 0.8rem;
  }
  .brandStory {
    padding: 7px;
    font-size: 0.8rem;
  }
  .brandStory img {
    display: flex;
    width: 30px;
  }
  .headerSearch {
    width: 35px;
  }

  /*-------Header Search Expand--------*/
  .suggestion-content {
    gap: 40px 58px;
    flex-wrap: wrap;
  }
  .contentList {
    flex: 0 0 45%;
  }
  .contentList h3 {
    font-size: 1rem;
  }
  .contentList p {
    font-size: 0.8rem;
  }

  /*-------Inner Banner--------*/
  .header.sticky .headerLogo img {
    width: 100%;
  }
  .static-banner .bannerTxt {
    top: 33%;
    transform: translateY(-58%);
  }
  .static-banner .bannerBottom {
    bottom: 30px;
  }
  .bannerBox {
    padding: 15px 15px 15px;
  }
  .bannerBox p {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .bannerBox p br {
    display: none;
  }
  .bannerBox a {
    font-size: 0.7rem;
    padding: 8px 15px;
  }

  .who-we-are,
  .How-We-Help,
  .Neonxt-Customer,
  .Leadership-Team,
  .cloud-what-we-do,
  .cloud-service,
  .cloud-partner,
  .custom-vms,
  .cloud-servicesWrap, .professional-key-capabilities, .app-moderization-key, .career-opportunity, .lifeNeonxt {
    padding: 90px 0;
  }
  .who-we-are h2,
  .How-We-Help h2,
  .Neonxt-Customer h2,
  .Leadership-Team h2 {
    font-size: 1.5rem;
    padding-bottom: 25px;
  }
  .who-we-are-boxTxt, .what-offer-blackbg .who-we-are-boxTxt {
    padding: 30px 20px;
  }
  .who-we-are-box h3,
  .How-We-Help__list h4, .what-offer-blackbg .who-we-are-box h3 {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .who-we-are-box p,
  .How-We-Help__list p {
    font-size: 0.9rem;
    line-height: 1.4;
    padding-bottom: 0;
  }
  .How-We-Help h2,
  .Neonxt-Customer h2,
  .Leadership-Team h2 {
    padding-bottom: 45px;
  }

  .How-We-Help {
    padding-bottom: 90px;
  }
  .How-We-Help__list h4 {
    padding-bottom: 10px;
  }
  .How-We-Help__list h4 br {
    display: none;
  }
  .How-We-Help__list.bottom {
    padding-top: 40px;
  }
  .logo-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .logo-grid .logo img {
    max-width: 80px;
  }
  .Leadership-Team-Details {
    padding: 20px;
  }
  .Leadership-Team-Details h4 {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .Leadership-Team-Details span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  .DetailsRight img {
    width: 30px;
  }
  .service {
    padding: 70px 0;
  }
  .service h2 {
    font-size: 1.9rem;
  }
  .service p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding-bottom: 0;
  }
  .footer {
    padding: 15px 0;
  }
  .copyright {
    font-size: 0.9rem;
  }
  .footer img {
    width: 30px;
    height: 30px;
  }
  .logocard {
    width: 128px;
    height: 128px;
    margin: 5px;
  }
  .clients-logo {
    flex-wrap: wrap;
    margin-top: 15px;
  }
  .twologocard,
  .threelogocard {
    display: flex;
  }
  .twologocard:nth-child(1),
  .twologocard:nth-child(3),
  .threelogocard:nth-child(4),
  .twologocard:nth-child(5),
  .twologocard:nth-child(7) {
    margin-top: 0;
  }
  /*-------Final CLoud Page--------*/
  span.subhead {
    margin: 0 0 25px;
  }
  h2.mainhead {
    font-size: 1.5rem;
    padding-bottom: 25px !important;
  }
  .what-offer-blackbg h2.mainhead {
    padding-bottom: 12px !important;
  }
  .cloud-service-box,
  .professional-key-capabilities .cloud-service-box {
    padding: 25px 15px;
  }
  .cloud-service-box > img {
    width: 55px;
    height: 60px;
  }
  .cloud-connect {
    background-size: 65% 100%;
  }
  .cloud-service-box i img {
    width: 12px;
  }
  .cloud-connect-Info {
    padding: 45px 0;
  }
  .cloud-connect-Info h2 {
    font-size: 1.7rem;
  }
  .cloud-connect-Info p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .cloud-connect-Info a {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .footer-column {
    flex: 1 1 50%;
  }
  .social-icons {
    justify-content: flex-start;
  }

  /*-------Choose the Right Cloud Service What We Deliver--------*/
  .cloud-service-box > img {
    width: 45px;
    height: 50px;
  }
  .we-deliverBox .key-Title {
    font-size: 1.2rem;
  }
  .cloud-service-box p {
    padding-top: 15px;
    font-size: 1.2rem;
  }
  /*-------Choose the Right Cloud Service--------*/
  .cloud-servicesTxt {
    padding: 30px 35px;
  }

  /*-------About US Banner--------*/
  /* .about-leadershipteam {
    padding-top: 0;
  } */

  .banner-left {
    max-width: 100%;
  }

  .padding-130 {
    padding-top: 60px;
  }
  .cloudservicetxt h2 {
    margin-bottom: 15px;
  }
  .quote-text {
    background: url(../images/quote-banner.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .quote-text h3,
  .quote-text h2 {
    color: #ffffff;
    -webkit-text-fill-color: initial;
  }
  .quote-text h2 {
    font-size: 32px;
  }
  .quote-text h3 {
    font-size: 25px;
  }

  /*-----------Home NeoNXT At A Glance -----------*/
  .cloud-what-we-do .glancebanner-text {
    font-size: 8px;
    max-width: 65px;
  }

  /*-----------Contact Page -----------*/
  .location {
    padding: 90px 0;
  }
  .locationBox {
    padding: 30px 25px;
  }
  .locationBox img {
    height: 45px;
  }
  .locationBox h3 {
    font-size: 1.2rem;
    padding-top: 30px;
    margin-bottom: 10px;
  }
  .locationBox p {
    font-size: 0.9rem;
  }
  .contact-cloud-connect .cloud-connect-Info a {
    margin-right: 10px;
  }
  /*-------Career--------*/
  .roleBox-txt {
    padding: 0 10px;
    bottom: 25px;
  }
  .roleBox-txt h3 {
    font-size: 1rem;
  }
  .roleBox-txt p {
    font-size: 0.7rem;
    line-height: 1.2;
  }   
  .keyrightBox {
    padding: 20px 25px;
  }
  .keyrightBox img {
    width: 55px;
    height: 60px;
  }
  .keyrightBox h3 {
    font-size: 1rem;
  }
  .keyrightBox p {
    font-size: 0.7rem;
  } 
  .career-opportunitylist {
    gap: 10px;
  }
  .career-opportunitylist li {
    padding: 12px 15px;
    font-size: 0.8rem;
  }
  .lifeNeonxt_col {
    min-height: 382px;
  }
  .lifeNeonxt_title h2 img {
    width: 100px;
    vertical-align: middle;
  }
  .lifeNeonxt_title p { 
    max-width: 65%;
  }
  /*-------404 Error--------*/
  .errorpage h2 {
    font-size: 80px;
  }
  .errorpage p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .errorpage .footer-column {
    padding-top: 50px;
  } 
  .errorpage .footer-column ul {
    column-gap: 5px;
  }
  /*-------Multi-Hybrid-Cloud-Assessment-Form--------*/
  .assessment-form .modal-dialog {
    max-width: 95%;
  }
  .assessment-form h2.mainhead {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 991px) and (orientation: landscape) {
  .banner video {
    object-position: right 70%;
  }
  .bannerTxt {
    top: 70%;
    transform: translateY(-70%);
  }
}
@media (max-width: 767px) {
  .header {
    position: fixed;
  }
  .headerSearch {
    width: 28px;
    height: 28px;
  }
  .headerSearch img {
    width: 15px;
  }
  .header .headerLogo img,
  .header.sticky .headerLogo img {
    width: 200px;
  }
  
  /*-------Header Search Expand--------*/
  #panel {
    padding: 50px 0;
    top: 60px;
  }
  .suggestion-content {
    gap: 20px 0;
    flex-direction: column;
  }
  .contentList {
    flex: 0 0 100%;
  }

  .bannerTxt {
    top: 30%;
    transform: translateY(-30%);
  }
  .bannerTxt h2,
  .banner-left h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .bannerTxt p,
  .banner-left p {
    font-size: 1rem;
    padding-bottom: 25px;
  }
  .bannerTxt p br {
    display: none;
  }
  .btn-primary {
    padding: 15px 25px;
    font-size: 1rem;
  }
  .who-we-are,
  .How-We-Help,
  .Neonxt-Customer,
  .Leadership-Team,
  .cloud-what-we-do,
  .cloud-service,
  .cloud-partner,
  .custom-vms,
  .cloud-servicesWrap, .app-moderization-key, .career-opportunity, .lifeNeonxt, .campaign-blackbg, .campaign-offering, .professional-offer {
    padding: 50px 0;
  }
  /*-------Cloud Campaign Mobile--------*/
  .cloudbill img {
    max-width: 100%;
  }
  .campaignfooter_wrap {
    flex-direction: column;
  }
  .campaignfooter_contact {
    padding-left: 0;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cloudfixButton {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2;
  }
  .cloudfixButton button.btn-primary {
    width: 100%;
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .cloudfixButton button.btn-primary:hover {
    background: linear-gradient(
    90deg,
    #1310a4 0%,
    #5e0792 18.27%,
    #cd0063 51.44%,
    #f20f07 80.77%,
    #ff4000 100%);
  }
  #campaignmob-modal {
    display: none;
  }
  .fixed-form {
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    top: inherit;
    z-index: 3;
  }
  .fixed-form .container {
    max-width: 100%;
    padding: 0;
  }
  .campaignbanner_form {
    padding: 25px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .campaignbanner_form h2 {
    padding-bottom: 2rem;
  }
  .campaignbanner_form input, .campaignbanner_form textarea {
    padding: 13px 22px;
    font-size: 1rem;
  }
  .campaignbanner_form .close-btn {
    border: 0;
    background: none;
    position: absolute;
    right: 25px;
    top: 20px;
    padding: 0;
    font-size: 1.9rem;
    line-height: 1;
  }
  /*-------Cloud Campaign Mobile Timeline--------*/
  .campaign_timeline .phase::before {
    left: -35px;
  }
  .timeline.campaign_timeline::after {
    display: block;
    left: 15px;
  }
  /* .who-we-are h2, .How-We-Help h2, .Neonxt-Customer h2, .Leadership-Team h2 {
    font-size: 2rem;
    padding-bottom: 15px;
    line-height: 1.3;
  } */
  .How-We-Help h2,
  .Neonxt-Customer h2,
  .Leadership-Team h2 {
    padding-bottom: 30px;
  }
  .who-we-are-boxTxt, .what-offer-blackbg .who-we-are-boxTxt {
    padding: 28px 18px;
  }
  .who-we-are-box img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
  .who-we-are-box p {
    padding-bottom: 0;
  }
  .logocard {
    width: 110px;
    height: 110px;
    padding: 25px;
  }
  /* .what-we-do h2, .what-we-do p {
    color: #000;
  }
  .what-we-do::before {
    display: none;
  }
  .support-boxes > img {
    position: static;
    width: 100%;
  }
  .what-we-do-box {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 28px 18px;
  }
  .what-we-do-boxWrap {
    margin-top: -50px;
  }
  .what-we-do-box img {
    margin: 0 auto 15px;
  } */
  .cloud-what-we-do.home-glance {
    text-align: center;
  }

  .cloud-what-we-do.home-glance img {
    width: 80%;
    display: block;
    margin: 50px auto 0;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo-grid .logo img {
    max-width: 60px;
  }

  .custom-vms img {
    margin: 0 auto 50px;
  }

  .Leadership-Team-Slider {
    margin: 0;
  }
  .Leadership-Team-Slider .col-md-4 {
    padding: 0;
  }
  .Leadership-Team-Img img {
    max-width: 70%;
  }
  .service {
    padding: 50px 0;
  }
  .service h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    padding-bottom: 20px;
  }
  .copyright {
    font-size: 0.7rem;
  }
  .footer img {
    width: 20px;
    height: 19px;
  }

  /*-------Inner Page Banner--------*/
  .professional-banner .bannerTxt, .sovereign-banner .bannerTxt {
    max-width: 80%;
  }
  .professional-banner .bannerTxt br,
  .sovereign-banner .bannerTxt br {
    display: none;
  }
  .static-banner .bannerBottom {
    width: auto;
    left: 15px;
    right: 15px;
    margin: 0 auto;
  }
  .static-banner .bannerTxt {
    top: 18%;
    transform: translateY(-44%);
  }
  .bannerBox p {
    height: auto;
    margin-bottom: 25px;
  }

  /*-------Final CLoud Page--------*/
  .cloud-what-we-doDtl {
    padding: 30px 15px;
  }
  .cloud-partner ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .cloud-partner ul li {
    width: 100%;
    height: 80px;
  }
  .cloud-connect {
    background-image: url(../images/connect-bg-mob.png);
    background-size: cover;
    background-position: left 40px top 0;
  }
  .cloud-connect-Info {
    padding: 30px 0;
  }
  .cloud-connect-Info p {
    padding-bottom: 20px;
  }
  .footer-logo img {
    width: 200px;
  }
  .footer-content {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
  }
  .footer-column h4 {
    margin-bottom: 25px;
  }
  .footer-column a {
    line-height: 2rem;
  }
  .cloud-service-box p br {
    display: none;
  }
  .social-icons {
    align-self: flex-start;
  }
  .footer-bottom {
    justify-content: center;
    padding-top: 20px;
  }
  .inner-copyright {
    display: block;
    padding-top: 0px;
  }

  /*-------Professional Services Page--------*/
  .timeline::before,
  .timeline::after {
    display: none;
  }
  .phase {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    padding-bottom: 50px;
  }
  .phase:last-child {
    padding-bottom: 0;
  }

  .phase.left .content,
  .phase.right .content {
    width: 100%;
    text-align: left;
    margin: 0;
  }
  .professional-get-started {
    padding: 32px 0;
    background: #ffffff;
  }
  .professional-get-started p {
    font-size: 1rem;
    line-height: 1.3;
  }
  .about-leadershipteam h3 {
    padding-bottom: 50px;
  }

  .about-banner .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .about-banner .row {
    margin: 0;
  }
  .about-banner .mobileabout {
    display: flex;
    height: calc(50vh - 30px);
  }
  .banner-img {
    width: 100vw;
    height: auto;
  }

  .banner-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .banner-left {
    padding: 50px 15px;
    color: #fff;
    z-index: 1;
    max-width: 540px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .banner-left p {
    padding-bottom: 0px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .professional-why-choose {
    padding: 60px 0 80px;
  }
  /*-----------Home page -----------*/
  .logocard img {
    width: 100%;
  }
  .logocard img.mob-logo {
    width: 75%;
  }
  .logocard img.Old-logoMutual, .logocard img.walmaert-logo {
    width: 90px;
  }
  /* .logocard img.walmart-logo {
    width: 90px;
  } */
  .cloud-what-we-do {
    overflow: hidden;
  }
  .cloud-what-we-do.home-glance img {
    width: 100%;
    margin: 0 auto;
  }
  .glancecontent {
    margin-bottom: 35px;
  }
  .cloud-what-we-do .glancebanner-text {
    font-size: 10px;
    max-width: 100px;
  }
   /*-----------Contact Us page -----------*/
   body {
    padding-top: 60px;
   }
   .banner {
        height: calc(100vh - 60px);
   }
      .contact-cloud-connect .cloud-connect-Info a {
        padding: 10px 8px;
        font-size: 0.8rem;
        margin-bottom: 0;
                margin-right: 5px;
    }
  .contact-cloud-connect .cloud-connect-Info a img {
    margin-right: 5px;
    height: 10px;
    width: 10px;
  }
  /*-------Application Modernization--------*/
  .keyrightBox {
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-direction: column;
  }
  .app-moderization-key::after {
    bottom: 40px;
    top: inherit;
    background-position:center bottom;
  }
  .keyrightBox img {
    width: 45px;
    height: 40px;
  }
  .keyrightBox p {
    padding-left: 0;
    padding-top: 20px;
  }
  /*-------Career Page--------*/
  .lifeNeonxt_title {
    position: static;
    transform: inherit;
    text-align: left;
  }
  .lifeNeonxt_title h2 {
    font-size: 1.5rem;
    color: #000;
  }
  .lifeNeonxt_title p {
    max-width: 100%;
    color: #000;
    line-height: 1.7;
    font-weight: 300;
  }
  .lifeNeonxt_title h2 img {
    width: 140px;
    vertical-align: baseline;
  }
  .roleBox-txt {
    padding: 0 25px;
    bottom: 45px;
  }      
  .roleBox-txt h3 {
    font-size: 1.2rem;
  }
  .roleBox-txt p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .app-moderization-keyleft {
    padding-bottom: 50px;
  }
  .career-keyrightTxt {
    padding-top: 10px;
    padding-left: 0;
  }
  .career-keyrightTxt p {
    padding-top: 0;
  }
  .lifeNeonxt_list p br {
    display: none;
  }
  .lifeNeonxt_col {
    min-height: auto;
  }
  .lifeNeonxt_list {
    justify-content: flex-start;
    text-align: left;
    padding-top: 20px;
  }
  .lifeNeonxt_list p {
    color: #575757;
    position: relative;
    padding-left: 20px;
    font-size: 0.8rem;
  }
  .lifeNeonxt_list p::before {
    content: "";
    position: absolute;
    background: #575757;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    left: 0;
    top: 7px;
  }

  /*-------404 Error--------*/
  .errorwrap {
    overflow: hidden;
  }
  .errorpage {
    background-image: none;
    position: relative;
  }
  .errorpage-left {
    padding: 0;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    left: 10px;
    right: 10px;
  }
  .errorpage .footer-column a {
    font-size: 0.7rem;
  }
  /*-------Multi-Hybrid-Cloud-Assessment-Form--------*/
  .assessment-form .modal-content {
    padding: 30px 25px;
  }
  .assessment-form h2.mainhead {
    font-size: 1.2rem;
  }
  .check-label {
    margin-right: 10px;
  }
  .btn-check {
    text-align: left;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .bannerTxt {
    max-width: 80%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 450px) {
  .logocard {
    width: 100px;
    height: 100px;
    padding: 20px;
  }
  .btn-whitebg {
    padding: 15px 20px;
  }
  .btn-whitebg .gradient-text {
    font-size: 1rem;
  }
}
/* CF7: Style checkbox list in MHCS modal to match reference */
.assessment-form .checkbox-wrap .wpcf7-form-control.wpcf7-checkbox { display: inline-block; }
.assessment-form .checkbox-wrap .wpcf7-form-control.wpcf7-radio { display: inline-block; }
.assessment-form .checkbox-wrap .wpcf7-list-item { display: inline-block; margin: 0 12px 12px 0; }
.assessment-form .checkbox-wrap .wpcf7-list-item label { display: flex; align-items: center; position: relative; }
.assessment-form .checkbox-wrap .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"],
.assessment-form .checkbox-wrap .wpcf7-form-control.wpcf7-radio input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.assessment-form .checkbox-wrap .wpcf7-list-item-label {
  transition: all 0.2s ease;
  background-color: #ECECEC;
  border-radius: 55px;
}

.assessment-form .checkbox-wrap .wpcf7-list-item-label::before {
  content: ""; width: 18px; height: 18px; display: inline-block;
  background: url('../images/check-icon.svg') no-repeat center/contain;
}
.assessment-form .checkbox-wrap .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]:checked + div,
.assessment-form .checkbox-wrap .wpcf7-form-control.wpcf7-radio input[type="radio"]:checked + div,
.assessment-form .checkbox-wrap .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label,
.assessment-form .checkbox-wrap .wpcf7-form-control.wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%);color: #ffffff;
}
@media (min-width: 768px) {
  .assessment-form .checkbox-wrap { display: flex; flex-wrap: wrap; align-items: center; }
}
/* CF7: show inline tips only after submit-invalid (not on every input change) */
/* .assessment-form .wpcf7 .wpcf7-not-valid-tip { display: none; } */
.assessment-form .wpcf7.invalid .wpcf7-not-valid-tip { display: block; }
/* CF7 response output styling (theme-aligned) */
.assessment-form .wpcf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.4;
  border: 1px solid transparent;
  background: #f6f7fb;
  color: #111;
}
.assessment-form .wpcf7.invalid .wpcf7-response-output,
.assessment-form .wpcf7 .wpcf7-validation-errors {
  border-color: #ff4000;
  background: #fff3f0;
  color: #b62a00;
}
.assessment-form .wpcf7.failed .wpcf7-response-output,
.assessment-form .wpcf7 .wpcf7-mail-sent-ng {
  border-color: #dc3545;
  background: #fde8ea;
  color: #7a1321;
}
.assessment-form .wpcf7.sent .wpcf7-response-output,
.assessment-form .wpcf7 .wpcf7-mail-sent-ok {
  border-color: #28a745;
  background: #eaf8ef;
  color: #155724;
}
/* CF7 field inline error tip (theme-aligned) */
.assessment-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.2;
  background-image: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.assessment-form .wpcf7-not-valid-tip::before {
  content: '!';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
}
/* CF7 spinner styling (theme-aligned) */
.assessment-form .wpcf7-spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  border-radius: 50%;
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: #cd0063;
  animation: neonxt-spin 0.8s linear infinite;
  background: transparent !important;
}
@keyframes neonxt-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Requested: Professional Key Capabilities title tweaks */
.professional-key-capabilities .cloud-service-box .key-Title {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 300;
  color: #000000;
  margin: 0;
  padding-top: 20px;
}

/* CF7 Success Popup Styles */
.cf7-success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.cf7-success-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.cf7-success-popup-content {
  position: relative;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  text-align: center;
  animation: scaleIn 0.4s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cf7-success-popup-content h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cf7-success-popup-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.cf7-success-popup-content .cf7-close-success-popup {
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(205, 0, 99, 0.3);
  color: white;
}

.cf7-success-popup-content .cf7-close-success-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205, 0, 99, 0.4);
}

/* Lottie animation container */
.cf7-success-popup-content dotlottie-wc {
  display: block;
  margin: 0 auto 2rem;
  border-radius: 12px;
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up-animation {
  animation: slideUp 0.6s ease-out 0.3s both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cf7-success-popup-content {
    padding: 25px 15px;
    margin: 15px;
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .cf7-success-popup-content h3 {
    font-size: 2rem;
  }
  
  .cf7-success-popup-content p {
    font-size: 1.1rem;
  }
  
  .cf7-success-popup-content dotlottie-wc {
    width: 250px !important;
    height: 250px !important;
  }
}

@media (max-width: 480px) {
  .cf7-success-popup-content {
    padding: 20px 12px;
    margin: 10px;
    max-width: 98vw;
    max-height: 98vh;
  }
  
  .cf7-success-popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .cf7-success-popup-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cf7-success-popup-content dotlottie-wc {
    width: 200px !important;
    height: 200px !important;
    margin-bottom: 1.5rem !important;
  }
  
  .cf7-success-popup-content .cf7-close-success-popup {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .cf7-success-popup-content {
    padding: 15px 10px;
    margin: 8px;
  }
  
  .cf7-success-popup-content h3 {
    font-size: 1.6rem;
  }
  
  .cf7-success-popup-content p {
    font-size: 0.95rem;
  }
  
  .cf7-success-popup-content dotlottie-wc {
    width: 180px !important;
    height: 180px !important;
  }
}

/* Small desktop and landscape adjustments */
@media (max-height: 600px) {
  .cf7-success-popup-content {
    padding: 20px 25px;
    max-height: 85vh;
  }
  
  .cf7-success-popup-content dotlottie-wc {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 0.8rem !important;
  }
  
  .cf7-success-popup-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }
  
  .cf7-success-popup-content p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  
  .cf7-success-popup-content .cf7-close-success-popup {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .cf7-success-popup-content {
    padding: 15px 20px;
    max-height: 90vh;
  }
  
  .cf7-success-popup-content dotlottie-wc {
    width: 150px !important;
    height: 150px !important;
    margin-bottom: 1rem !important;
  }
  
  .cf7-success-popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .cf7-success-popup-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .cf7-success-popup-content {
    padding: 50px 40px;
    max-width: 600px;
  }
  
  .cf7-success-popup-content h3 {
    font-size: 3rem;
  }
  
  .cf7-success-popup-content p {
    font-size: 1.3rem;
  }
  
  .cf7-success-popup-content dotlottie-wc {
    width: 350px !important;
    height: 350px !important;
  }
}

/* Extra large screens */
@media (min-width: 1600px) {
  .cf7-success-popup-content {
    padding: 60px 50px;
    max-width: 700px;
  }
  
  .cf7-success-popup-content h3 {
    font-size: 3.5rem;
  }
  
  .cf7-success-popup-content p {
    font-size: 1.4rem;
  }
  
  .cf7-success-popup-content dotlottie-wc {
    width: 400px !important;
    height: 400px !important;
  }
}

/* Contact Form 7 Campaign Form Styling - Theme Matched */
.campaignbanner_form .wpcf7-form {
  margin: 0;
}

.campaignbanner_form .wpcf7-form p {
  margin: 0;
}

.campaignbanner_form .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

.campaignbanner_form .wpcf7-form input[type="text"],
.campaignbanner_form .wpcf7-form input[type="email"],
.campaignbanner_form .wpcf7-form input[type="tel"],
.campaignbanner_form .wpcf7-form textarea {
  width: 100%;
  padding: 10px 22px;
  border: #AEAEAE solid 1px;
  border-radius: 55px;
  font-size: 0.9rem;
  line-height: 1;
  color: #AEAEAE;
  font-weight: 400;
  background: #fff;
  transition: all 0.3s ease;
}

.campaignbanner_form .wpcf7-form textarea {
  border-radius: 18px;
  height: 120px;
  resize: none;
}

.campaignbanner_form .wpcf7-form input[type="text"]:hover,
.campaignbanner_form .wpcf7-form input[type="email"]:hover,
.campaignbanner_form .wpcf7-form input[type="tel"]:hover,
.campaignbanner_form .wpcf7-form textarea:hover,
.campaignbanner_form .wpcf7-form input[type="text"]:focus,
.campaignbanner_form .wpcf7-form input[type="email"]:focus,
.campaignbanner_form .wpcf7-form input[type="tel"]:focus,
.campaignbanner_form .wpcf7-form textarea:focus {
  box-shadow: none;
  outline: 0;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #1196e3 0%, #205bbf 19.23%, #4742b7 38.94%, #a5248e 60.1%, #e13140 80.29%, #f4994b 98.08%) border-box;
  border: 1px solid transparent;
  color: #333;
}

/* Submit Button - Theme Matched */
.campaignbanner_form .wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 20px 45px 20px 35px;
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%);
  color: white !important;
  border: none;
  border-radius: 55px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 0;
}

.campaignbanner_form .wpcf7-form input[type="submit"]:hover {
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hover state with gradient border - Theme Matched */
.campaignbanner_form .wpcf7-form input[type="submit"]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 55px;
  padding: 2px;
  background: linear-gradient(90deg, #1310a4, #5e0792, #cd0063, #f20f07, #ff4000);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.campaignbanner_form .wpcf7-form input[type="submit"]:hover::before {
  opacity: 1;
}

.campaignbanner_form .wpcf7-form input[type="submit"]::after {
  content: "";
  position: absolute;
  background: url(../images/right-arrow-white.svg) no-repeat center;
  background-size: contain;
  width: 21px;
  height: 15px;
  z-index: 5;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Loading State - Theme Matched Spinner */
.campaignbanner_form .wpcf7-form input[type="submit"].loading {
  position: relative !important;
  color: transparent !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%) !important;
}

.campaignbanner_form .wpcf7-form input[type="submit"].loading::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 24px !important;
  height: 24px !important;
  border: 3px solid rgba(255,255,255,0.3) !important;
  border-top: 3px solid #ffffff !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
  z-index: 10 !important;
  background: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  opacity: 1 !important;
}

.campaignbanner_form .wpcf7-form input[type="submit"].loading::after {
  display: none !important;
}

/* Success Message - Theme Matched */
.campaignbanner_form .wpcf7-response-output.wpcf7-mail-sent-ok {
  margin: 15px 0 0 0;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #28a745;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
  position: relative;
  overflow: hidden;
}

.campaignbanner_form .wpcf7-response-output.wpcf7-mail-sent-ok::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: #28a745;
}

.campaignbanner_form .wpcf7-response-output.wpcf7-mail-sent-ok {
  padding-left: 45px;
}

/* Error Messages - Theme Matched */
.campaignbanner_form .wpcf7-response-output.wpcf7-validation-errors,
.campaignbanner_form .wpcf7-response-output.wpcf7-mail-sent-ng {
  margin: 15px 0 0 0;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #dc3545;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
  position: relative;
  overflow: hidden;
}

.campaignbanner_form .wpcf7-response-output.wpcf7-validation-errors::before,
.campaignbanner_form .wpcf7-response-output.wpcf7-mail-sent-ng::before {
  content: "⚠";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: #dc3545;
}

.campaignbanner_form .wpcf7-response-output.wpcf7-validation-errors,
.campaignbanner_form .wpcf7-response-output.wpcf7-mail-sent-ng {
  padding-left: 45px;
}

/* Field Validation Errors - Theme Matched */
.campaignbanner_form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 8px;
  border-left: 3px solid #dc3545;
  position: relative;
}

.campaignbanner_form .wpcf7-not-valid-tip::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #dc3545;
  font-weight: bold;
}

.campaignbanner_form .wpcf7-not-valid-tip {
  padding-left: 20px;
}

/* Hide default CF7 spinner */
.campaignbanner_form .wpcf7-spinner {
  display: none !important;
}

/* Form Submit Button Loader Styles */
.campaignbanner_form .wpcf7-form input[type="submit"].loading {
  position: relative !important;
  color: transparent !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}

.campaignbanner_form .wpcf7-form input[type="submit"].loading::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 20px !important;
  height: 20px !important;
  border: 2px solid transparent !important;
  border-top: 2px solid #ffffff !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
  z-index: 10 !important;
}

.campaignbanner_form .wpcf7-form input[type="submit"].loading::after {
  display: none !important;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* General form submit button loader for all forms */
form input[type="submit"].loading,
form button[type="submit"].loading,
.wpcf7-form input[type="submit"].loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

form input[type="submit"].loading::before,
form button[type="submit"].loading::before,
.wpcf7-form input[type="submit"].loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

form input[type="submit"].loading::after,
form button[type="submit"].loading::after,
.wpcf7-form input[type="submit"].loading::after {
  display: none;
}

/* Specific loader styles for different button types */
.btn-primary.loading,
.btn-secondary.loading,
.btn-whitebg.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-primary.loading::before,
.btn-secondary.loading::before,
.btn-whitebg.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-primary.loading::after,
.btn-secondary.loading::after,
.btn-whitebg.loading::after {
  display: none;
}

/* Dark button loader (for buttons with dark backgrounds) */
.btn-dark.loading::before,
.btn-primary.loading::before {
  border-top-color: #ffffff;
}

/* Light button loader (for buttons with light backgrounds) */
.btn-light.loading::before,
.btn-whitebg.loading::before {
  border-top-color: #333333;
}

/* Disable pointer events during loading */
.loading {
  pointer-events: none !important;
  cursor: not-allowed !important;
}

/* Global CF7 Form Styling - Theme Matched */
.wpcf7-form {
  margin: 0;
}

.wpcf7-form p {
  margin: 0 0 15px 0;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

/* Global CF7 Input Styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  font-weight: 400;
  background: #fff;
  transition: all 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #1310a4;
  box-shadow: 0 0 0 3px rgba(19, 16, 164, 0.1);
}

/* Global CF7 Submit Button - Theme Matched */
.wpcf7-form input[type="submit"] {
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%);
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 0;
}

.wpcf7-form input[type="submit"]:hover {
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Global CF7 Submit Button Hover Effect */
.wpcf7-form input[type="submit"]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(90deg, #1310a4, #5e0792, #cd0063, #f20f07, #ff4000);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.wpcf7-form input[type="submit"]:hover::before {
  opacity: 1;
}

/* Global CF7 Loading State - Theme Matched Spinner */
.wpcf7-form input[type="submit"].loading {
  position: relative !important;
  color: transparent !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
  background: linear-gradient(90deg, #1310a4 0%, #5e0792 18.27%, #cd0063 51.44%, #f20f07 80.77%, #ff4000 100%) !important;
}

.wpcf7-form input[type="submit"].loading::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 24px !important;
  height: 24px !important;
  border: 3px solid rgba(255,255,255,0.3) !important;
  border-top: 3px solid #ffffff !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
  z-index: 10 !important;
  background: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  opacity: 1 !important;
}

.wpcf7-form input[type="submit"].loading::after {
  display: none !important;
}

/* Global CF7 Success Message - Theme Matched */
.wpcf7-response-output.wpcf7-mail-sent-ok {
  margin: 15px 0 0 0;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #28a745;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
  position: relative;
  overflow: hidden;
}

.wpcf7-response-output.wpcf7-mail-sent-ok::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: #28a745;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  padding-left: 45px;
}

/* Global CF7 Error Messages - Theme Matched */
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ng {
  margin: 15px 0 0 0;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #dc3545;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
  position: relative;
  overflow: hidden;
}

.wpcf7-response-output.wpcf7-validation-errors::before,
.wpcf7-response-output.wpcf7-mail-sent-ng::before {
  content: "⚠";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: #dc3545;
}

.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-mail-sent-ng {
  padding-left: 45px;
}

/* Global CF7 Field Validation Errors - Theme Matched */
.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 8px;
  border-left: 3px solid #dc3545;
  position: relative;
}

.wpcf7-not-valid-tip::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #dc3545;
  font-weight: bold;
}

.wpcf7-not-valid-tip {
  padding-left: 20px;
}

/* Hide default CF7 spinner globally */
.wpcf7-spinner {
  display: none !important;
}