@import url(variables.css);
@import url(responsive.css);
@import url(fonts.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  scroll-behavior: smooth;
  /* overflow-y: auto; */
}

/* buttons styles start */

.button-primary-large,
a.button-primary-large {
  height: 45px;
  border-radius: 7px;
  background: var(--primary-gradient);
  color: var(--primary-light);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semi-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: 0.3s;
}
.button-primary-large:hover,
a.button-primary-large:hover,
.button-primary:hover,
a.button-primary:hover {
  background: linear-gradient(29deg, #ff7464, #ffd988);
  color: var(--primary-dark);
  transition: 0.3s;
  cursor: pointer;
}
.button-primary,
a.button-primary {
  height: 40px;
  border-radius: 6px;
  background: var(--primary-gradient);
  color: var(--primary-light);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semi-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: 0.3s;
}
.button-secondary,
a.button-secondary {
  height: 40px;
  color: var(--primary-light);
  font-size: var(--font-size-x-small);
  font-weight: var(--font-weight-regular);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: transparent;
  border: 2px solid var(--orange);
  text-decoration: none !important;
  transition: 0.3s;
}
.button-secondary:hover,
a.button-secondary:hover {
  background: var(--orange);
  transition: 0.3s;
  cursor: pointer;
}
.button-link,
a.button-link {
  background: transparent;
  color: var(--orange) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* buttons styles end */

body {
  background: var(--primary-dark);
  margin: 0;
  /* overflow-x: hidden; */
}

/* header styles start */
.header-main {
  position: fixed;
  z-index: 5;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 90px;
  border-bottom: 1px solid var(--primary-graydark);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  transition: 0.4s;
}
a.header-logo img {
  height: 28px;
  transition: 0.4s;
}
.header-main.scroll-down {
  height: 60px;
  transition: 0.4s;
}
.header-main.scroll-down a.header-logo img {
  height: 20px;
  transition: 0.4s;
}
.header-main.scroll-down .nav-item.text-s,
.header-main.scroll-down a.header-nav {
  font-size: 14px;
  transition: 0.4s;
}
.header-main.scroll-down.header-nav-items .nav-item {
  margin-left: 28px;
  transition: 0.4s;
}
.header--nav-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
a.header-nav {
  cursor: pointer;
  color: var(--primary-light);
  font-size: var(--font-size-small);
  margin-left: 35px;
  transition: 0.3s;
  text-decoration: unset !important;
}
.header--nav-items a.button-secondary {
  width: 120px;
  border-radius: 1000px;
  margin-left: 25px;
  position: relative;
}
.header-nav:hover,
a.header-nav:hover,
.header-nav-dropdown:hover {
  color: var(--orange);
  transition: 0.3s;
}

/* header dropdown styles start */
.header-dropdown {
  display: inline-block;
  margin-left: 25px;
}

.header-nav-dropdown {
  cursor: pointer;
  color: var(--primary-light);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-regular);
  transition: 0.3s;
}

.header-dropdown-menu {
  position: absolute;
  right: 20px;
  z-index: 2;
  top: 60px;
  width: 200px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.1s ease-in-out 0s;
  border-radius: 10px;
  background: var(--primary-graydark);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.header-dropdown-menu.long-menu {
  width: 90vw;
  max-width: 1000px;
  padding: 20px;
  height: max-content;
}
a.header-options-menu {
  color: var(--primary-graylight) !important ;
  text-decoration: none !important;
  transition: 0.3s;
}
a.header-options-menu:hover {
  color: var(--orange) !important ;
  transition: 0.3s;
}

.header-dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out 0.3s;
  color: var(--primary-light);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-regular);
}
.header-dropdown-menu ul li {
  padding: 10px;
  cursor: pointer;
}
.header-dropdown-menu ul li:hover {
  background-color: var(--primary-graylight);
}

.header-dropdown:hover .header-dropdown-menu {
  max-height: max-content;
  opacity: 1;
}

.header-dropdown:hover .header-dropdown-menu ul {
  opacity: 1;
}
/* header dropdown styles end */

/* hero section starts */
.hero-section {
  margin-top: 80px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: 230px;
  display: flex;
}
.hero-content.hero-homepage {
  min-height: 530px;
  align-items: center;
}
.hero-action-button {
  width: 170px;
}
img.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
}
.darkgray-area {
  background: var(--primary-graydark);
  min-height: 560px;
  padding: 70px 0;
}
.darkgray-area-secondary {
  background: var(--primary-graydark);
  padding: 60px 0;
  position: relative;
}
.darkgray-area-secondary-custom {
  background: var(--primary-graydark);
  padding: 40px 60px 40px 60px;
  position: relative;
  border-radius: 30px;
  box-shadow: 0 2px 45px -5px rgb(0 0 0 / 24%);
}
/* hero section end */

/*box card starts */
.border-card {
  border-radius: 10px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 115, 0, 0.5);
  width: 100%;
  min-height: 100px;
  background: var(--primary-graydark);
}
.red-border-card {
  border-radius: 10px;
  padding: 30px 20px;
  border: 1px solid var(--red);
  width: 100%;
  min-height: 100px;
  background: var(--primary-graydark);
}
.orange-border-card {
  border-radius: 10px;
  padding: 30px 20px;
  border: 1px solid var(--orange);
  width: 100%;
  min-height: 100px;
  background: var(--primary-graydark);
}
.orange-grad-card {
  position: relative;
  border-radius: 10px;
  padding: 30px 20px;
  width: 100%;
  min-height: 100px;
  background: var(--orange-gradient);
}
.red-grad-card {
  position: relative;
  border-radius: 10px;
  padding: 30px 20px;
  width: 100%;
  min-height: 100px;
  background: var(--red-gradient);
}
.box-icon {
  position: absolute;
  top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
.box-icon img {
  width: 50%;
}
/* box card ends */

/* orange area styles starts */
.orange-area {
  background: var(--primary-gradient);
}
/* orange area styles ends */

/* light area starts */
.light-area {
  background: var(--primary-light);
}
img.light-area-img.up-down {
  max-width: 50vw;
  width: 300px;
  -webkit-transform: scaleX(-1) rotate(180deg);
  transform: scaleX(-1) rotate(180deg);
}
img.or-ico {
  height: 60px;
}

.card-light-area {
  background: white;
  border: 1px solid var(--orange);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 195px;
  cursor: pointer;
  position: relative;
}
.card-light-area .cd-hiddnen {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.799);
  color: white;
  opacity: 0;
  transition: 0.3s;
  top: 0;
  left: 0;
  padding: 25px;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.card-light-area:hover .cd-hiddnen {
  opacity: 1;
  transition: 0.3s;
}
/* light area ends */

/* footer styles start */

.footer {
  background: url(../images/pagebackgrounds/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 250px;
  margin-top: -150px;
}
img.footer-logo-img {
  height: 30px;
  margin-bottom: 20px;
}
a.footer-links {
  font-size: var(--font-size-xx-small);
  color: var(--primary-graylight);
  text-decoration: unset !important;
  cursor: pointer;
  transition: 0.4s;
}
a.footer-links:hover {
  color: var(--primary-light);
  transition: 0.4s;
}
.footer-rights-lnks {
  color: var(--primary-graylight);
}
.footer-rights-lnks .footer-links {
  padding: 0 10px;
}

/* common styles start */
.border-right-primary {
  border-right: 2px solid var(--orange);
}
a.services-card {
  width: 100%;
  min-height: 200px;
  border: 1px solid rgba(255, 115, 0, 0.3);
  border-radius: 15px;
  display: block;
  cursor: pointer;
  padding: 30px 20px;
  position: relative;
  transition: 0.3s;
  background: var(--primary-graydark);
}
.ser-body-area {
  height: 200px;
}
a.services-card,
a.services-card div {
  text-decoration: unset !important;
}
a.services-card:hover {
  background: var(--primary-dark);
  border: 1px solid var(--orange);
  transition: 0.3s;
}
.logoboxes {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 150px;
}

.logo-box {
  width: auto;
  height: 85px;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  opacity: 0.7;
}
.logo-box.logo-boxCus {
  height: 105px !important;
}
.logo-box .hover-box {
  padding: 15px;
  border-radius: 16px;
  position: absolute;
  width: 220px;
  height: 100%;
  transition: 0.4s;
  top: 20px;
  z-index: 4;
}

img.insights-img {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 50vw;
}
.insights-offerings {
  position: relative;
}
img.insights-offerings-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
}
.light-orange-border-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(255, 115, 0, 0.5);
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 30px;
}
.dark-orange-border-card {
  background: transparent;
  border-radius: 12px;
  border: 1px solid rgba(255, 115, 0, 0.5);
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 30px;
}
.ins-jour-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(255, 115, 0, 0.5);
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 80%;
  min-height: 30px;
}
img.ins-jour {
  max-width: 200px;
  width: 100%;
  max-height: 300px;
}
.subage-hero {
  background: var(--primary-dark);
  padding-top: 150px;
  padding-bottom: 100px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 1;
}
.hero-sub001 {
  background: url(../images/hero-sub001.svg);
  background-position: center;
}
.hero-sub002 {
  background: url(../images/hero-sub002.svg);
}
.hero-sub003 {
  background: url(../images/hero-sub003.svg);
}
.hero-sub004 {
  background: url(../images/hero-sub004.svg);
}
.hero-sub005 {
  background: url(../images/pagebackgrounds/casestudies-bg.jpg);
}
.hero-sub006 {
  background: url(../images/hero-sub006.svg);
}
.carrers-bg {
  background: url(../images/pagebackgrounds/careers.svg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.finops-bg {
  background: url(../images/pagebackgrounds/finops.jpg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.onprem-bg {
  background: url(../images/pagebackgrounds/onpermises.jpg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.sapupgrade-bg {
  background: url(../images/pagebackgrounds/sapupgrade.jpg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.pagemigrations0bg {
  background: url(../images/pagebackgrounds/MIGRATIONS.jpg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.s4hanabg {
  background: url(../images/pagebackgrounds/s4hana.jpg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.saprisebg {
  background: url(../images/pagebackgrounds/saprise.jpg);
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.orange-area-left {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 40%;
  height: 100%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
img.cloud-mig-diag {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto;
}

.header-nav-items {
  display: flex;
  align-items: center;
}
.header-nav-items .nav-item {
  margin-left: 35px;
  cursor: pointer;
  transition: 0.3s;
}
.header-nav-items .nav-item:hover {
  color: var(--orange) !important;
}

.arrow-icon {
  width: 10px;
  height: 10px;
  margin-left: 2px;
  transition: tranform 0.3s ease;
}
.arrow-icon.rotate-up {
  height: 11px;
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--primary-graydark);
  color: black;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 50px 40px;
  z-index: 1000;
  display: none;
  min-height: 100px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-bottom: 1px solid var(--orange);
}
.mega-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* common styles end */

img.bysign {
  width: 53px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: -14px;
  transform: scale(1.4) rotate(8deg);
}
.whatwedo-area-main {
  width: 100%;
  margin-top: -50px;
}
.wwdo-card {
  background: rgba(0, 0, 0, 0.5);
  height: 550px;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.wwdo-card .title-c {
  color: white;
  font-size: 38px;
  padding: 40px 35px;
  width: 100%;
  font-weight: 300;
  line-height: 54px;
  position: relative;
  z-index: 2;
  text-align: left;
  transition: all 0.3s ease-in-out;
  height: 200px;
}
.wwdo-card .bg-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  z-index: 0;
  background-repeat: no-repeat !important;
}

.str-solu.wwdo-card .bg-area {
  background: url(../images/tilebgs/home-block-1.png);
  transition: 0.3s;
  background-size: 100%;
}
.tech-exp.wwdo-card .bg-area {
  background: url(../images/tilebgs/home-block-2.png);
  transition: 0.3s;
  background-size: 100%;
}
.tact-sol.wwdo-card .bg-area {
  background: url(../images/tilebgs/home-block-3.png);
  background-size: 100%;
}

.str-solu.wwdo-card:hover .bg-area {
  background: url(../images/tilebgs/home-block-1.png);
  opacity: 0.9;
  transition: 0.3s;
  background-size: 120%;
}
.tech-exp.wwdo-card:hover .bg-area {
  background: url(../images/tilebgs/home-block-2.png);
  opacity: 0.9;
  transition: 0.3s;
  background-size: 120%;
}
.tact-sol.wwdo-card:hover .bg-area {
  background: url(../images/tilebgs/home-block-3.png);
  opacity: 0.9;
  transition: 0.3s;
  background-size: 120%;
}

.wwdo-card:hover .title-c {
  text-align: left;
  font-size: 28px !important;
  line-height: 44px !important;
  padding: 65px 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease-in-out;
}

.areas-mesu {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  height: calc(100% - 200px);
}

.areas-mesu .row {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  opacity: 0;
  transition: left 0.5s ease-in-out, opacity 0.5s ease-in-out;
  z-index: 2;
}

.wwdo-card:hover .areas-mesu .row {
  left: 20px;
  opacity: 1;
}
.wwdo-card:not(:hover) .areas-mesu .row {
  left: -100%;
  opacity: 0;
}

.thetitle-sub-area {
  position: relative;
  transition: 2s;
  transform: scale(1);
}
.hover-large-h:hover .thetitle-sub-area {
  transform: scale(1.3);
  transition: 2s;
}

.linebox-d {
  height: 65px;
  display: flex;
  align-items: center;
}

.left-abs-line {
  right: 0;
  height: 2px;
  width: 50%;
  position: absolute;
  background: var(--primary-gradient);
  top: 33px;
}
.right-abs-line {
  left: 0;
  height: 2px;
  width: 50%;
  position: absolute;
  background: var(--primary-gradient);
  top: 95px;
}
.txt-graybox {
  background: var(--primary-dark);
  z-index: 2;
}

.plain-card {
  background: black;
  min-height: 150px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.set-s5 {
  position: relative;
  z-index: 2;
}

.expandable-box {
  border: 1px solid #454545;
  border-radius: 5px;
  margin: 10px 0;
  overflow: hidden;
}
.expand-header {
  background: #353535;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  color: #fff;
}
.expandable-content {
  display: none;
  padding: 20px;
  border-top: 1px solid #454545;
  color: #fff;
}
.icon {
  transition: transform 0.3s ease;
}
.career001 {
  /* background: url(../images/careers-img-2.svg);
    background-repeat: no-repeat;
    background-size: cover; */
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  background-color: gray;
  border-radius: 5px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  width: 25px;
  background-color: var(--orange);
}

.carrbg-001 {
  background: url(../images/carrerssbg.svg);
  background-size: cover;
}
.partner-netrktiles .com-card-,
.casestudies-block .com-card-,
.certifications-blocks .com-card- {
  background: black;
  box-shadow: rgba(255, 119, 0, 0.023) 8px 8px 80px 0px;
  transition: 0.4s;
}
.partner-netrktiles .com-card-:hover,
.casestudies-block .com-card-:hover,
.certifications-blocks .com-card-:hover {
  box-shadow: rgba(255, 119, 0, 0.16) 8px 8px 80px 0px;
  transition: 0.4s;
}

.com-card- {
  background: rgb(0, 0, 0);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  /* z-index: 0; */
  cursor: pointer;
  padding: 30px;
}
.com-card-def {
  position: relative;
  z-index: 1;
}
.com-card-def .icon-on {
  height: 120px;
  margin: 0 auto 20px auto;
  display: block;
}
.com-card-hover {
  position: absolute;
  background: hsl(0deg 0% 0% / 82%);
  border: 1px solid rgba(255, 115, 0, 0.5);
  opacity: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  height: 1%;
  width: 100%;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  transition: 0.5s;
}
.com-card-:hover .com-card-hover {
  opacity: 1;
  transition: 0.5s;
  height: 100%;
}
.com-card-.case-stu-card {
  height: 400px;
}
.com-card-.case-stu-card img {
  max-height: 350px;
  max-width: 100%;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(255 255 255 / 17%);
  justify-content: center;
  align-items: center;
  z-index: 5;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
}

/* Popup box styling */
.popup-box {
  background: var(--primary-graydark);
  border-radius: 10px;
  width: 80vw;
  min-height: 50vh;
  max-height: 90vh;
  max-width: 1200px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.popup-box-small {
  background: var(--primary-graydark);
  border-radius: 10px;
  width: 400px;
  min-width: 40vw;
  min-height: 50vh;
  max-height: 90vh;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

/* Close button styling */
.close-btn {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(255, 0, 0, 0);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.close-btn:hover {
  color: var(--orange);
}

input.form-control,
textarea.form-control,
input.form-control:focus,
textarea.form-control:focus {
  background: var(--primary-dark);
  border: 1px solid rgb(76, 76, 76);
  color: var(--primary-light);
  height: 50px;
  margin-bottom: 10px;
}
input.form-control:focus,
textarea.form-control:focus {
  border-bottom: 1px solid var(--orange);
  outline: var(--orange);
  box-shadow: unset !important;
}

.conte-col {
  background: var(--primary-dark);
  padding: 50px 30px 15px 30px;
  border-radius: 20px 0 0 20px;
}
.conte-col-right {
  padding: 50px 30px 15px 30px;
  border-radius: 0 20px 20px 0;
  margin-bottom: 20px;
}
.conte-col-right textarea {
  height: 100px;
}
img.icon-img-connect {
  height: 30px;
  margin-right: 15px;
}

.hover-large-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.row--cu4-hover {
  padding: 30px;
  position: relative;
  height: 340px;
  z-index: 2;
  background: url(./../images/pagebackgrounds/pagebg-tlile.png);
  background-size: cover;
  flex: 1;
  transition: flex 0.4s ease-in-out;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 5px;
  border: 1px solid #272727;
}
.plues-area .row--cu4-hover {
  height: 400px;
}
.row--cu4-hover:hover {
  flex: 2;
  display: block;
  background: var(--primary-graydark);
  transition: 0.4s;
  border-bottom: 1px solid var(--orange);
}
.hover-large-area:hover .row--cu4-hover:not(:hover) {
  flex: 0.8;
}
.hovar-area {
  opacity: 0;
  transition: bottom 0.4s ease-in-out, opacity 0.4s ease-in-out;
  font-size: 0px;
  height: calc(100% - 140px);
}
.cu4-title {
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  margin-bottom: 15px;
}
.row--cu4-hover:hover .cu4-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-light) !important;
  transition: 0.4s;
  text-align: left;
}

.row--cu4-hover:hover .hovar-area {
  bottom: 20px;
  opacity: 1;
  font-size: 14px;
  line-height: 24px;
  color: var(--primary-light) !important;
  font-weight: 500;
}
.row--cu4-hover:not(:hover) .hovar-area {
  bottom: -100%;
  opacity: 0;
}
.hover-large-area:hover .row--cu4-hover:not(:hover) .cu4-title {
  font-size: 22px !important;
  transition: 0.4s;
  line-height: 34px;
}

.stickey-area-main {
  height: 2300px;
  position: relative;
}
.sticky-content {
  top: 10px;
  position: sticky;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.floating--area {
  min-height: 800px;
  width: 100%;
  margin-top: -270px;
}
.trustcenter-bg {
  background: url(./../images/pagebackgrounds/insights.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.blog-bg {
  background: url(./../images/pagebackgrounds/blog.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.itserv-bg {
  background: url(./../images/pagebackgrounds/itservice-bg.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.automat-org-bg {
  background: url(./../images/pagebackgrounds/AUTOMATION-ORG-BG.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.datandanl-bg {
  background: url(./../images/pagebackgrounds/danadanly-bg.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.amsbg {
  background: url(./../images/pagebackgrounds/amsbg.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.abooutus-bg {
  background: url(./../images/pagebackgrounds/aboutus.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.hostcloudbg {
  background: url(./../images/pagebackgrounds/cloudmig-host.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.hybrid-it-bg {
  background: url(./../images/pagebackgrounds/hybridot.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.abt-card-show {
  min-height: 530px;
  padding: 50px 30px;
  background: linear-gradient(to bottom, #333333, #000000);
}
.lead-pic {
  filter: grayscale(100);
  transition: 0.4s;
  margin-bottom: 20px;
  max-width: 240px;
}
.lead-pic:hover {
  filter: grayscale(0);
  transition: 0.4s;
}

.sticley-12vh {
  position: sticky;
  top: 12vh;
}
.leader-linkedin {
  width: 22px;
  opacity: 0.6;
  transition: 0.3s;
  margin-left: 10px;
}
.leader-linkedin:hover {
  opacity: 1;
  transition: 0.3s;
}
.vision-mis-card.dark-bg-add {
  background: url(../images/pagebackgrounds/fullstack.svg);
  background-position: right;
}
.vision-mis-card {
  background: var(--primary-graydark);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  padding: 40px;
  border-radius: 30px;
  box-shadow: rgba(76, 76, 76, 0.21) 0px 0px 50px 0px;
  transition: 2s;
  transform: scale(0.995);
}
.vision-mis-card:hover {
  box-shadow: rgb(255 119 0 / 28%) 0px 0px 100px 5px;
  transition: 1s !important;
  transform: scale(1);
}
.vision-mis-card.-cutoms-ext {
  position: absolute;
  bottom: 0;
  width: calc(100% + 40vw);
  right: 12px;
}
.misisn-floating {
  margin-top: -140px;
  position: relative;
  z-index: 2;
}
.comingsoontext {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}
.blog--title {
  color: white;
  font-size: 24px;
  text-decoration: none !important;
}
.blog-a {
  text-decoration: none;
  opacity: 0;
  transition: 0.3s;
}
.blog--card:hover .blog-a {
  opacity: 1;
  transition: 0.3s;
}
.blog--card {
  padding: 20px;
  border-radius: 28px;
  width: 100%;
  transition: 0.4s;
  box-shadow: rgb(255 119 0 / 28%) 0px 0px 20px 1px;
  border: 1px solid #333131;
  background-position: 10px 10px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
}
.blog--card.blog-card-3 {
  background: url(https://www.techbusinessnews.com.au/wp-content/uploads/2021/05/types-of-technology.jpg.webp);
}
.blog--card.blog-card-2 {
  background: url(https://www.wscubetech.com/blog/wp-content/uploads/2024/04/generative-ai.webp);
}
.blog--card.blog-card-1 {
  background: url(https://carnegie-production-assets.s3.amazonaws.com/static/media/images/iStock-2164131231.jpg);
}
.blog--card.blog-card-4 {
  background: url(https://www.st.com/content/dam/aboutus/innovation-technology/edge-ai/pictures/edge-ai-chip.jpg);
}
.blog--card.blog-card-5 {
  background: url(https://www.shutterstock.com/shutterstock/videos/3556064457/thumb/5.jpg?ip=x480);
}
.blog--card:hover {
  transition: 0.4s;
  border: 1px solid rgba(255, 119, 0, 0.65);
  transition: 0.3s;
  cursor: pointer;
}
.blog-img {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
  border-radius: 15px;
  height: max-content;
  transition: 0.4s;
}
.blog-intro-title {
  color: white;
  font-weight: 400;
  font-size: 22px;
  margin-top: 20px;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-intro-detail {
  color: #b5b5b5;
  font-weight: 400;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limits text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.blog-intro-detail-normal {
  color: #b5b5b5;
  font-weight: 400;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  white-space: normal;
}
.blog-categ {
  color: white;
  font-size: 12px;
  font-weight: 500;
  background: #403733;
  width: max-content;
  padding: 5px 15px;
  margin-bottom: 15px;
  margin-top: 15px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-1 .blog-img {
  background: url(../images/blogimages/bo1.jpg);
  height: 470px;
  background-position: center !important;
}
.blog-2 .blog-img {
  background: url(../images/blogimages/blog2.jpg);
  height: 150px;
}
.blog-3 .blog-img {
  background: url(../images/blogimages/blog3.jpg);
  height: 170px;
}
.blog-4 .blog-img {
  background: url(../images/blogimages/blog4.jpg);
  height: 170px;
}
.blog-5 .blog-img {
  background: url(../images/blogimages/blog5.jpg);
  height: 100%;
}
.blog-6 .blog-img {
  background: url(../images/blogimages/blog6.jpg);
  height: 100%;
}
.blog-7 .blog-img {
  background: url(../images/blogimages/blog7.jpg);
  height: 100%;
}
.blog-8 .blog-img {
  background: url(../images/blogimages/Click\,\ Heal\,\ Repeat\ The\ Rise\ of\ Self-Healing\ SAP\ Systems\ with\ Open\ Source\ AI.jpg);
height: 300px;
}
.blog-9 .blog-img {
  background: url(../images/blogimages/Automate\ Like\ an\ Artist\ 5\ Creative\ Ways\ to\ Use\ AI\ in\ SAP\ Operations.jpg);
height: 100%;
}
.blog-10 .blog-img {
  background: url(../images/blogimages/Changingyourmanaged.png);
  height: 100%;
}
a.blog-readmore {
  height: 30px;
  background: rgba(0, 0, 0, 0.527);
  align-items: center;
  width: 100%;
  color: transparent;
  padding: 35px 25px;
  transition: 0.3s;
  position: absolute;
  border-radius: 0 0 8px 8px;
  bottom: 0;
  font-size: 14px;
  display: none;
}
.blog--card:hover a.blog-readmore {
  color: var(--orange);
  cursor: pointer;
  background: black;
  transition: 0.3s;
  display: none;
}
.blog-share-logo {
  width: 20px;
  margin-right: 10px;
}
.ico-hover {
  opacity: 0.85;
  transition: 0.3s;
}
.ico-hover:hover {
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}
.rdmhov {
  opacity: 0;
  transition: 0.3s;
}
.blog--card:hover .rdmhov {
  opacity: 1;
  transition: 0.3s;
}
.popupzer {
  display: none;
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-graydark);
  border: 1px solid #000000;
  padding: 30px;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.popup-overlayzer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  z-index: 999;
}
.error-msg {
  display: block;
  padding: 5px 15px;
  color: white;
  background: #c75a5a;
  width: max-content;
  border-radius: 1000px;
  margin-top: 15px;
  font-size: 12px;
  font-weight: 500;
}

.cntnww {
  box-shadow: rgba(76, 76, 76, 0.21) 0px 0px 50px 0px;
  transition: 2s;
  transform: scale(0.995);
}
.cntnww:hover {
  box-shadow: rgb(255 119 0 / 28%) 0px 0px 100px 5px;
  transition: 1s !important;
  transform: scale(1);
}
.footer-soc-links {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer-soc-links img {
  width: 30px;
  margin-right: 15px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}
.footer-soc-links img:hover {
  opacity: 1;
  transition: 0.3s;
}
.hom-heroo-banner {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background: url(../images/pagebackgrounds/homeherobanner.png);
}
.caree-card {
  width: 100%;
  min-height: 200px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.carre-1 {
  background: url(../images/careerpage/cr1.jpg);
  height: 680px;
}
.carre-2 {
  background: url(../images/careerpage/cr2.jpg);
  height: 340px;
}
.carre-3 {
  background: url(../images/careerpage/Evolvingtechnology.jpg);
  background-size: cover !important;
  height: 340px;
}
.carre-4 {
  background: url(../images/careerpage/Supportiveculture.jpg);
  background-size: cover !important;
  height: 340px;
}
.carre-5 {
  background: url(../images/careerpage/cr3.jpg);
  height: 340px;
}

table.blog-table tr th {
  background: #4f4f4f;
  padding: 4px 15px;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
}
table.blog-table tr td {
  background: #202020;
  padding: 4px 15px;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}
.px-2-web {
  padding-left: 10px;
  padding-right: 5px;
}
img.blogviewimg {
  position: fixed;
  width: 40px;
  left: 0;
  top: 0;
  z-index: 0;
}
.hero-content.hero-homepage .text-xxl {
  font-size: 54px;
}

.cookie-banner-pop {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #f5f5f5;
  color: #333;
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 9999;
  font-family: sans-serif;
}

.cookie-banner-pop p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.cookie-banner-pop a {
  color: #ff7300;
  text-decoration: underline;
}

.cookie-banner-pop button {
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(29deg, #fe1800, #feac00);
  border: unset;
  color: white;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: 0.3s;
  width: 100%;
  cursor: pointer;
}
.cookie-banner-pop button:hover {
  background: linear-gradient(29deg, #ff7464, #ffd988);
  color: var(--primary-dark);
  transition: 0.3s;
  cursor: pointer;
}

.lead-bio-bg {
  background: url(../images/pagebackgrounds/lead-bio-bg.svg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.read-bio {
  display: flex;
  align-items: center;
  height: 60px;
  opacity: 1;
  transition: 0.3s;
}
.lead-info:hover .read-bio {
  transition: 0.3s;
  opacity: 1;
}

.hero-body.leader-vis {
  display: none !important;
}
.ppl-bio-lin {
  display: flex;
  align-items: center;
  height: 40px;
}
.about-leader-img {
  max-width: 450px;
}
.linkedin-click {
  display: none;
}
.width-auto {
  width: auto !important;
}

  .logo-carousel {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    align-items: center;
    gap: 50px;
    white-space: nowrap;
  }

  .logo-track img {
    height: 80px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 1s ease;
  }

  .logo-track img:hover {
    filter: grayscale(0%);
  }

  /* Use transform with CSS animation on the track wrapper */
  .scroll-wrapper {
    display: flex;
    animation: scrollLeftToRight 180s linear infinite;
  }

  @keyframes scrollLeftToRight {
    0% { transform: translateX(-12060px); }
    100% { transform: translateX(0); }
  }


  .blog-points{
    padding-left: 20px;
    line-height: 38px;
  }

  .snip-code{
    font-family: source-code-pro, Menlo, Monaco, "Courier New", Courier, monospace!important;
    background:#1f1f1f;
    padding: 20px;
    border-radius: 5px;
  }
 .snip-code .red-text{
  color: #c75a5a;
 }
.elipsis-none{
  -webkit-line-clamp: none!important;
}
.job-card{
  background: #191919;
  padding: 25px;
  border-radius: 14px;
  box-shadow: rgb(255 119 0 / 28%) 0px 0px 20px 1px;
 border: 1px solid #333131;
     transition: 0.4s;
}
.job-card:hover{
    transition: 0.4s;
  border: 1px solid rgba(255, 119, 0, 0.65);
}
.jb-cd{
  background: #5d5c5c;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  width: max-content;
  padding: 4px 15px;
  border-radius: 6px;
  margin-right: 15px;
  float: left;
  height: 26px;
  display: flex;
  align-items: center;
}
.car-buttons{
     display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.car-buttons a.button-primary, .car-buttons a.button-secondary{
    height: 30px;
    font-size: 12px!important;
    min-width: 120px;
}
.job-details-card{
  margin-top: 160px;
  background: #191919;
  border-radius: 20px;
  min-height: 50vh;
  width: 100%;
  padding: 40px;
}
.job-details-card .blog-points{
  font-size: 14px;
} 
.buttons-on-preview{
  display: flex;
  justify-content: flex-end;
}
.job-tags{
  display: flex;
}