

/* -------------------- Hero section -------------------- */
.hero_section {
 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
  /* margin-top: -86px; */
}
.heroInfo {
  position: absolute;
  top: 30%;
}

.heroInfo h1 {
  width: 45%;
  color: var(--color-white);
  font-weight: 400;
  font-size: 48px;
  line-height: 65px;
}
.heroInfo h1 span.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    font-weight: 400;
}
.heroInfo h1 .bold {
  font-weight: 600 !important;
}

.heroInfo h1 span {
  font-weight: 700;
}

.heroInfo p {
  margin-top: 2em;
  width: 45%;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
/* BOX ANIMATION  */

.box {
  opacity: 0;
  transform: scale(0.2);
  animation: scaleInSmooth 2.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.box-left,
.box-right {
  position: absolute;
}

.box-left {
  top: 22%;
  left: -21%;
  animation-delay: 0.3s;
}

.box-right {
  top: 15%;
  right: -10%;
  animation-delay: 0.6s;
}

@keyframes scaleInSmooth {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media(max-width:767px){
    .box-right {
    top: 30%;
    right: -10%;
    animation-delay: 0.6s;
    width: 11em;
}

.box-left {
    top: 30%;
    left: -21%;
    animation-delay: 0.3s;
    width: 10em;
}
}

/* -------------------- stats counter section -------------------- */
.counter-wrapper {
  margin-top: -85px;
  position:relative;
}

.counter-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  background-color: #e2e8ef;
  padding: 30px 70px;
  border-radius: 10px;
}

.counter-item {
  text-align: center;
  font-weight: bold;
  color: #226ce0; /* Blue text */
  font-size: 24px;
}

.counter-item h2 {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
}

.counter-item p {
  font-size: 18px;
  font-weight: 700;
  color: #011627;
}

/* -------------------- About counter section -------------------- */
.about_section {
  padding: 110px 0;
}

.abt_info {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 50%;
  margin: auto;
  gap: 40px;
}

.about-content {
  /*flex: 1;*/
  color: #001f4d;
}

.about-heading span {
  font-weight: 700;
}

.about-heading {
  font-size: 40px;
  font-weight: 300;
  margin: 14px 0;
  padding-right: 30%;
  line-height: 45px;
}

.about-text {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 400;
  padding-right: 4%;
}

.about-btn {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.about-btn:hover {
  background-color: #003d82;
}

.about-video-container {
  position: relative;
  padding-bottom: 56%;
  width: 99%;
  text-align: left;
  border-radius: 5px !important;
  box-shadow:0 4px 10px rgb(75 75 75 / 19%);
}

.about-video-container iframe {
  width: 100%;
  position: absolute;
  height: 100%;
  overflow: hidden;
  border-radius: 5px !important;
}

.home-slide-carousel .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.home-slide-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -1.5em;
}

.home-slide-carousel button.owl-dot {
  background: #d3d3d3 !important;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  z-index: 22;
}

.home-slide-carousel button.owl-dot.active {
  background: #226ce0 !important;
}

/* ------------------ Solution section ------------------ */

.solution {
  background-color: #f9f9f9;
  padding: 70px 0 0;
}

.solution_info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
}

.solution-heading {
  font-size: 34px;
  font-weight: 300;
}

.solution-heading span {
  font-weight: 700;
}

/* .spacer {
  height: 400px;
} */

.cards-container {
  position: relative;
  margin: 0 auto;
  padding-top: 1.5em;
}

.sticky-card {
  position: sticky;
  top: 150px;
  display: flex;
  justify-content: center;
  margin-bottom: 150px;
  animation: stack linear;
  animation-timeline: view(auto calc(100% - 3rem + 12px));
}

.custom-card {
  border-radius: 4px;
  overflow: hidden;
  padding: 20px;
  width: 100%;
  margin: auto;
  color: white;
  position: relative;
  height: 450px;
  background: #e2e8ef;
  display:grid;
  grid-template-columns: 70% 30%;
  box-shadow:0 -2px 8px rgb(135 135 135 / 25%);
}

.card-content {
  z-index: 2;
  text-align: center;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
    position: relative;
  overflow: hidden;
}
.card-content::before {
  content: '';
  position: absolute;
  inset: 0;
 background: rgb(0 0 0 / 38%);
  z-index: 1;
  border-radius: 5px;
}

.card-content h3 {
  position: relative;
  z-index: 2;
}
.card-content h3 {
  font-size: 38px;
  font-weight: 600;
  padding: 0 25%;
  line-height: 49px;
}
.card-right {
  z-index: 2;
  /* padding-left: 40px; */
  position: relative;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  padding-left: 80px;
}
/* .card-list {
} */

/* Vertical Line for the entire UL */
.card-list ul::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 17px;
  width: 2px;
  height: 80%;
  background: rgba(255, 255, 255, 0.3);
}

.card-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.card-list li {
  display: flex;
  align-items: center;
  padding: 0px 0 25px;
  font-size: 20px;
  font-weight: 300;
  color: #011627;
  position: relative;
}

.card-list li::before {
  content: "";
  width: 42px;
  height: 42px;
  background-image: url(./images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -40px;
  top: 38%;
  transform: translateY(-50%);
}

.card-btn {
  padding: 1px 70px;
  border: 1px solid #226ce0;
  margin-left: -25px;
}

.sticky-card-last{
   visibility: hidden;
   margin-bottom: 0;
}
/* Stacking animation */
@media (prefers-reduced-motion: no-preference) {
  @keyframes stack {
    to {
      /*filter: blur(10px);*/
      scale: 1;
      /*opacity: 0.5;*/
    }
  }
}

/* ------------------ Technologies section ------------------ */

/* .technologies {
  padding: 70px 0;
} */

.tech-heading span {
  font-weight: 700;
}

.tech-heading {
  font-size: 34px;
  font-weight: 300;
  margin: 14px 0;
  padding-right: 30%;
  line-height: 45px;
}

.tech-info {
  display: grid;
  grid-template-columns: 60% 40%;
}
.tech-left h4 {
  margin-top: 5em;
}

.tech-left h2 {
  padding-bottom: 3em;
}
.tech-left-div {
  position: sticky;
  top: 500px;
}

/* ------- marquee section ------- */

.marquee-wrapper {
  display: flex;
  gap: 20px;
  overflow: hidden;
  justify-content: flex-end;
}

.marquee-block {
  width: 130px;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.marquee-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  animation: scrollUp 15s linear infinite;
}

.marquee-inner.reverse {
  animation: scrollDown 15s linear infinite;
}

.marquee-item {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

.marquee-item img {
  width: 100%;
  height: auto;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
/* -------- mobile marquee -------- */
@media (max-width: 390px) {
  .marquee-block {
    width: 110px;
  }

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

/* -------------------- industries section -------------------- */

.industries {
  background-color: #f9f9f9;
  padding: 70px 0;
}

.industries_info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.industries-box {
  margin: 2em 0;
  gap:15px;
}
.industries-box .grid-item {
  background-color: #fff;
  border-radius: 4px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  /* border: 2px solid transparent; */
  /* box-shadow: 0px 0px 3px 0px #00000024; */

}

.industries-box .grid-item:hover {
  background-color: #001d2f;
  color: #fff;
  /*scale: 0.9;*/
 

}

.industries-box .grid-item img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  transition: filter 0.3s;
}

/* .industries-box .grid-item:hover img,
.industries-box .grid-item.active img {
  filter: brightness(0) invert(1);
} */

.industries-box .grid-item span {
  font-size: 20px;
  font-weight: 600;
  display: block;
}

/* -------------------- process section -------------------- */

.process {
  padding: 70px 0;
  background-color: var(--color-white);
}

.process_info {
  margin-top: 3em;
}

.process-card {
  background-color: #e2e8ef;
  margin-bottom: 2em;
  box-shadow: 0px 10px 25px 0px #00000012;
  padding: 25px 15px;
  border-radius: 4px;
  display: flex;
  gap: 20px;
  width: 95%;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
    will-change: box-shadow, transform;
}

.process-card:hover{
box-shadow: 0px 1px 12px 0px #64696e42;
    transform: translateY(-2px);
} 

.card-dot {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background: #226ce0;
  margin-top: 5px;
}
.process-card-info {
  width: 70%;
}

.process-card-info h4 {
  font-size: 20px;
  font-weight: 700;
}

.process-card-info p {
  font-size: 17px;
  font-weight: 400;
  margin-top: 10px;
  color: #011627;
}

.process_right {
  margin: 0 auto;
}

/* -------------------- Testimonials section -------------------- */

.testimonials {
  padding: 100px 0;
  background: #f8f8f8;
  display: flex;
}

.testi-left {
  padding-left: 7.5%;
  width: 35%;
  margin: auto 0;
}
.testi-slides {
  width: 65% !important;
}

.testinavs {
  display: flex;
  gap: 12px;
}
.testinavs button img {
  width: 55px;
}
.testinavs button {
  background: none;
  cursor: pointer;
  margin-top: 1em;
  transition: all 0.3s ease;
}
.testinavs button:hover {
  transform: scale(0.9);
}

.testimonial-card {
  /* max-width: 500px; */
  background: #fff;
  border-radius: 4px;
  padding: 40px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
  margin: 20px auto;
  min-height: 340px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-header img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
}

.testimonial-info h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #011627;
}

.testimonial-info .designation {
  font-size: 16px;
  color: #7a7a9d;
  margin-top: 4px;
  font-weight: 700;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #011627;
  margin-bottom: 20px;
  min-height: 128px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-wrapper {
  width: 100%;
  max-width: 560px;
 height: 258px;
  aspect-ratio: 16 / 9;
  background: #fff;
  border-radius:4px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius:4px;
}

.stars span {
  font-size: 20px;
  color: #f8c11c;
  margin-right: 4px;
}

.stars .inactive {
  color: #ccc;
}

.brand-logo {
  height: 30px;
  width: unset !important;
  object-fit: contain;
}

/* -------------------- we work section -------------------- */

.we-work {
  background: #fff;

  display: flex;
  overflow: hidden;
}
.work-left {
  width: 30%;
  background: #ffffff;
  font-size: 27px;
  font-weight: 700;
  z-index: 2;
  padding-left: 7.5%;
  display: flex;
  align-items: center;
}
/*.work-left span {*/
/*  padding-left: 7.5%;*/
/*}*/

.marquee-horizontal {
  display: flex;
  align-items: center;
  animation: scrolling 40s linear infinite;
  gap: 1rem;
  width: 70%;
}

.marquee-h {
  flex: 0 0 12vw;
  padding: 1.5rem 1rem;
  /* position: relative; */
}

.marquee-h img {
  height: 6.5em;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-144vw);
  }
}
/* -------------------- Discover section -------------------- */

.discover {
  background: url(images/discover-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-color: #e2e8ef;

  padding: 70px 0;
}

.discoverinfo {
  width: 80%;
  margin: 40px auto;
  gap: 20px;
}

.dis-card {
  background: #011627;
  padding: 0 50px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 4px;
}
.dis-card h4 {
  font-size: 32px;
  font-weight: 300;
  color: #ffffff;
  line-height: 48px;
  margin-bottom: 1em;
  padding-right: 22%;
}
.dis-card2 {
  background: #226ce0;
}

.dis-card2 h4 {
  padding-right: 35%;
}
.dis-btn {
  border: 1px solid #fff;
}

/* -------------------- faq section -------------------- */

.faq_main_container {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.faqSticky{
    position:sticky;
    top:30%;
}
.faq-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 20px;
}

.faq_container {
  border-bottom: 1px solid #e2e8ef;
  color: #011627;
  font-weight: 700;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 3px 0px #00000024;
  padding: 10px 15px;
  margin-bottom: 0.5em;
}
.faq_question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.answer {
  padding: 0 10px 20px;
  line-height: 1.5rem;
}

.answer p {
  font-size: 18px;
  font-weight: 400;
  color: #7a7878;
  padding: 0 80px 20px 0;
}
.fqa_headline_container h2 span {
  font-weight: 700;
}
.faq_question-text h3 {
  font-size: 24px;
  font-weight: 500;
}

.faqicon.active {
  background: transparent;
  border: 2px solid #000000;
}
.faqicon:hover {
  cursor: pointer;
}
.icon-shape {
  position: relative;
  width: 50px;
  height: 50px;
}
.faqicon .icon-shape::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 2px;
  background: #000000;
  border-radius: 3px;
  transition: all 0.5s ease;
}
.faqicon .icon-shape::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 15px;
  background: #000000;
  border-radius: 3px;
  transition: all 0.5s ease;
}
.faqicon .icon-shape.active::before {
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s ease;
}
.faqicon .icon-shape.active::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.5s ease;
}

/* -------------------- contact section -------------------- */
.contact-content {
  padding: 70px 0;
  background: #e2e8ef;
}

.contact-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-left {
  flex: 1 1 12%;
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  margin: auto 0;
}
.contact-left h2 {
  margin-bottom: 0.5em;
}

.contact-cards {
  flex: 1 1 75%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 30%;
  background: #ffffff00;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-card strong {
  color: #226ce0;
}
.contact-card a {
  color: #000000;
}
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--color-blue);
  font-weight: 700;
}

.contact-card p {
  margin: 4px 0;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
}

.ct-icon {
  width: 35px;
  margin-top: 4px;
}

/* ---------- form ------------ */

.contact-form-wrapper {
  background-color: #f1f7fd;
  padding: 30px;
  border-radius: 6px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form.contact-form {
  background: #ffffff;
  box-shadow: 0px 2px 21px 0px #00000014;
  border-radius: 4px;
  padding: 30px 35px;
  margin-top: 3em;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  background-color: #f6f6f6;
  box-shadow: inset 0 0 0 1px #ccc;
  transition: 0.2s ease-in-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #007bff;
  background-color: #fff;
}

.send-btn {
  align-self: flex-start;
  background-color: #007bff;
  color: white;
  padding: 5px 35px;
  border: none;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.send-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

/* -------------------- home resources section -------------------- */

.home-Resources{
    padding:100px 0;
}
.h-resource-grid{
    gap:40px;
} 
.h-resource-tabs-container {
  display: flex;
  flex-direction: column;
  /*align-items: flex-end;*/
  margin-bottom: 20px;
}

.h-resource-tabs {
  display: flex;
  justify-content:space-between;
  gap: 20px;
  margin-bottom: 2em;
}

.h-resource-tab-link {
  background: none;
  border: none;
  font-size: 20px;
    padding-bottom: 2px;
  color: #000;
  cursor: pointer;
}

.h-resource-tab-link.active {
  color: #226CE0;
  font-weight: 500;
  border-bottom: 1px solid #000;
  
}
.h-source-tabs{
    display:flex;
    gap:40px;
    align-items: center;
}

.h-resource-tab-content {
  width: 100%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.h-resource-tab-content.active {
  position: relative;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}


/* -------------------- footer section -------------------- */
.footer-section {
  background-color: #011627;
  padding: 70px 0px 30px;
}

.footer {
  color: #fff;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  /* flex: 1 1 180px; */
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

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

.footer-logo img {
  height: 50px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  border-top: 1px solid #112233;
  padding-top: 20px;
}

.footer-social {
  display: flex;
  gap: 30px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
 transition: transform 0.4s ease;
}

.footer-social a:hover {
  color: #1da1f2;
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .footer {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .footer {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

/* ----------------- home page tablet mobile media query ------------------ */

/* ------ 1024px ------ */
@media (min-width:1640px){
    .hero_section{
        height: 80vh;
    }
}

@media (max-width:1320px){
    .hero_section{
        height: 98vh;
    }
    
    .heroInfo h1 {
    width: 55%;
    }
}

@media (max-width: 1024px) {
  .hero_section {
    height: 85vh;
  }

  .heroInfo {
    position: absolute;
    top: 30%;
  }

  .heroInfo h1 {
    width: 45%;
    font-size: 30px;
    line-height: 48px;
  }

  .heroInfo p {
    width: 68%;
  }

  .counter-container {
    padding: 30px;
    gap: 20px;
  }

  .counter-item h2 {
    font-size: 32px;
  }
  .counter-item p {
    font-size: 16px;
  }

  .abt_info {
    grid-template-columns: 100%;
  }

  .testi-left {
    padding-left: 4%;
  }
}

/* ------ 991px ------ */

@media (max-width: 991px) {
  .solution-heading {
    font-size: 24px;
  }

  .card-list ul {
    display: none;
  }

  .custom-card {
   grid-template-columns: auto;
  }

  .card-content h3 {
    font-size: 30px;
  }

  .process .column-2 {
    grid-template-columns: 1fr;
  }

  .work-left {
    padding-left: 3%;
    width: 30%;
  }
  .marquee-horizontal {
    width: 70%;
  }
  .discoverinfo {
    width: 100%;
  }

  .dis-card h4 {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    line-height: 40px;
    margin-bottom: 1em;
    padding-right: 0%;
  }

  .answer p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7878;
    padding: 0 30px 20px 0;
  }
}

@media (max-width: 767px) {
  .topLeft p {
    font-size: 10px;
  }
  .header {
    /* position: fixed; */
  }

  .header .logo img {
    /*width: 100%;*/
    height: 2.4em;
    /*object-fit: contain;*/
  }

  .hero_section {
    height: 82vh;
    /* margin-top: -6.3em; */
    position:relative;
    overflow:hidden;
  }
  
  .hero_section {
 
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: contain;
        height: 76vh;
        position: relative;
        overflow: hidden;
        background-color: #011627;
}

  .heroInfo h1 {
    width: 80%;
    font-size: 30px;
    line-height: 48px;
  }

  .heroInfo p {
    width: 95%;
  }

  .counter-container {
    padding: 20px;
    gap: 25px;
  }

.counter-wrapperHome{
    position:relative;
}
  .about_section {
    padding: 80px 0;
  }

  .about-heading {
    font-size: 28px;
    padding-right: 0%;
    line-height: 38px;
  }
  .solution-heading {
    font-size: 28px;
    line-height: 38px;
    margin: 10px 0;
  }

  .solution_info {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .card-content h3 {
    font-size: 24px;
    padding: 0 5%;
    line-height: 35px;
  }
  
  .custom-card{
    height: 350px;  
  }
  .card-content{
      height:210px;
  }

  .tech-info {
    grid-template-columns: auto;
  }
  .tech-heading {
    font-size: 28px;
  }
  .tech-left h2 {
    padding-bottom: 2em;
  }

  .marquee-wrapper {
    gap: 2px;
  }
  
  .industries {
    padding: 70px 0 50px;
}

  .industries_info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  
  .industries .industries-box{
     grid-template-columns: 1fr 1fr;
     gap: 15px;
  } 
  .industries-box .grid-item{
      padding: 20px 20px;
  }

.industries-box .grid-item img {
    width: 60px;
}
  .process-card {
    width: 100%;
  }
  .process-card-info {
    width: 89%;
  }

  .process_right img {
    width: 100%;
    margin-top: 1em;
  }

  .testimonials {
    padding: 70px 0 40px;
    flex-direction: column;
  }

  .testimonial-card {
    min-height: 390px;
  }
  .testi-left {
    padding-left: 7.5%;
    width: 100%;
  }

  .testi-slides {
    width: 100% !important;
  }

  .we-work {
    flex-direction: column;
    align-items: center;
  }
  .work-left {
    padding-top: 30px;
    padding-left: unset;
    width: 100%;
    font-size: 24px;
    text-align: center;
   display: block;
  }

  .marquee-h {
    padding: 1rem 1rem;
  }
  .faq_main_container {
    padding: 70px 0;
  }

  .faq-grid {
    grid-template-columns: auto;
  }
  .faq_question-text h3 {
    font-size: 22px;
  }
  .answer p {
    padding: 0 10px 20px 0;
  }
}

@media (max-width: 390px) {
    .heroInfo h1 {
        width: 90%;
        font-size: 24px;
        line-height: 34px;
    }
} 

/* --------///--------- About page css starts ----------///-------- */

/* -- about banner --  */

.about_banner {
  background: url(./images/about-banner1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 60vh;
}

.about-banner-info {
  position: absolute;
  top: 25%;
}

.abt_timeline_section {
  overflow: hidden;
}

.abt_timeline_info {
  display: flex;
}
.abt_timeline_left {
  width: 40%;
  margin: auto 0;
  padding-right: 0%;
}

.abt_timeline_left h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.abt_timeline_right {
  width: 60%;
  overflow: hidden;
}
/* -- about timeline --  */

.no-flicker {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.timeline {
  list-style: none;
  margin: 80px 70px 25px 90px;
  max-width: 800px;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

.timeline-milestone {
  margin: 0 0 0 20px;
  padding: 0 0 10px 40px;
  position: relative;
  box-sizing: border-box;
  border-left: 2px solid #d3d9dd;
}

/* .timeline-milestone:before {
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: -9px;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
} */

.timeline-milestone::before {
  content: url("./images/timeline\ dot.png");
  position: absolute;
  left: -25px;
  top: -10px;
  width: 14px;
  height: 14px;
  display: block;
  box-sizing: border-box;
}

.timeline-last {
  border-left: 4px solid transparent;
}

.timeline-milestone.no-dot:before {
  width: 0px;
  height: 0px;
}

.timeline-milestone .time {
  position: absolute;
  left: -100px;
  top: 19px;
  font-size: 16px;
  font-weight: 600;
  color: #226ce0;
}

.timeline-milestone.no-dot .time {
  display: none;
}

/* .timeline-milestone.is-completed:before,
.timeline-milestone.is-current:before {
  background-color: #3c3c3b;
} */

.timeline-action {
  padding: 25px 0px;
  position: relative;
  top: -22px;
  border-bottom: 1px solid #bfbfbf;
}

.timeline-action.is-expandable {
  cursor: pointer;
}

.timeline-action.is-expandable .title {
  position: relative;
}

.timeline-action.is-expandable .title:focus {
  outline: 0;
}

.timeline-action.is-expandable .title:after {
  border: 6px solid #666;
  border-color: transparent transparent transparent #666;
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  right: 0;
}

.timeline-action.is-expandable .content {
  height: 0px;
}

.timeline-action.is-expandable.is-expanded .title:after {
  border-color: #666 transparent transparent transparent;
  top: 10px;
  right: 5px;
}

.timeline-action .title,
.timeline-action .content {
  word-wrap: break-word;
}

.timeline-action .title {
  font-size: 18px;
  padding-right: 12%;
  margin: 0;
  color: #011627;
}

.timeline-action .content {
  font-size: 16px;
  font-weight: 500;
  color: #011627bd;
  line-height: 1.5em;
  max-width: 90%;
}

.timeline-action .content span {
  display: inline-block;
  padding: 12px 0px;
  display: none;
}

.timeline-last .timeline-action {
  border: none;
}

/* ---------- About page counter section ---------- */

.counter-wrapper1 {
  margin-top: unset;
}
.counterText {
  font-size: 28px;
  font-weight: 500;
  margin: 1em 0 0.5em;
  text-align: center;
  color: #011627;
}

.counter-wrapper1 .counter-container {
  background-color: #011627;
  border-radius: 4px;
}

.counter-wrapper1 .counter-item p {
  font-weight: 600;
  color: #e2e8ef;
}

.counter-wrapper1 .counter-item h2 {
  color: #e2e8ef;
}

/* ---------- About learn section ---------- */
.abtlearnSection {
  padding: 100px 0;
}

.abtLearncontent {
  display: flex;
  gap: 50px;
}

.abtLearncontent .G-image-Left {
  width: 45%;
}
.abtlearRight {
  margin: auto 0;
  width: 55%;
}

.abtright_info {
  margin-top: 2em;
  gap: 20px;
}

.abtlearLeft img {
  width: 90%;
}
.abtright_card {
  border-radius: 4px;
  padding: 30px 15px;
  box-shadow: 0px 0px 3px 0px #00000040;
}

.abtright_card span {
  font-size: 20px;
  font-weight: 600;
}
.abtlearRight {
  margin: auto 0;
}
.abtright_card p {
  margin-top: 1em;
  font-weight: 300;
}

/* ---------- about why section ---------- */

.about-why-section {
  background: #e2e8ef;
  padding: 80px 0 100px;
}

.about-why-content {
  display: grid;
  grid-template-columns: 55% 45%;
}
.about-why-content .G-image-Left {
  width: unset;
}
.about-why-right {
  text-align: right;
}
.about-why-right img {
  width: 90%;
}

.about-why-left {
  margin: auto 0;
}

.about-left-box {
  display: flex;
  gap: 30px;
}

.aboutleftNumber {
  background: #226ce0;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  text-align: center;
  line-height: 35px;
}

.about-left-info {
  margin-top: 3em;
}
.about-left-box {
  margin-bottom: 2.2em;
}

.aboutleftspan span {
  font-size: 20px;
  font-weight: 700;
}

/* ---------- about solution section ---------- */

.abt-sol-section {
  background: #f8f8f8;
  padding: 100px 0;
}

.abt-sol-section h2{
    margin-bottom: 1em;
}
.abt-sol-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.abt-sol-section .G-image-Left {
  width: unset;
}
.abt-sol-Left img {
  width: 85%;
}
.abt-service-list {
  margin-top: 1.5em;
  width: 95%;
}

.abt-sol-Right {
  margin: auto 0;
}
.abt-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 4px;
  color: #011627;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0px 0px 3px 0px #00000024;
}

.abt-arrow-icon {
  width: 10px;
  height: 10px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.abt-service-item:hover {
  background-color: #011627;
  color: #fff;
}

.abt-service-item:hover .abt-arrow-icon {
  filter: brightness(0) invert(1);
}

/* ---------- about service section ---------- */

.abt-service-section {
  padding: 100px 0;
}

.abt-service-box .grid-item {
  background-color: #f8f8f8;
}

.abt-service-box .grid-item span {
  font-weight: 500;
}

.abt-service-box .grid-item {
  padding: 40px 20px 50px;
}
.abt-service-box{
    gap:20px;
}

/* ---------- about partner section ---------- */

.abt-partner-section {
  padding-bottom: 100px;
}

.abt-partner-content {
  display: grid;
  grid-template-columns: 45% 55%;
  justify-content: space-between;
  align-items: center;
  gap:50px;
}
.abt-partner-content .G-image-Left {
  width: unset;
}

.abt-partner-left img {
  width: 80%;
}
.abt-partner-para p {
  margin-top: 1em;
  font-weight: 400;
}

.abt-logos-section {
  box-shadow: 0px 0px 2.18px 0px #00000040;
  padding: 10px 0;
  margin-top: -0.29em;
}

.abt-logos-section .work-left {
  padding-left: unset;
  width: 20%;
}

.abt-logos-section .marquee-horizontal{
      width: 80%; 
}
.abt-logos-section .marquee-h img {
  height: auto;
}

.abt-logos-section .work-left span {
  padding-left: unset;
}

/* ---------- about partner why section ---------- */

.abt-why-partner {
  padding: 70px 0;
}
.abt-why-partner .global-card-2 {
  gap: 20px;
}

.abt-why-partner .global_title {
  margin-bottom: 1em;
}

/* ---------- about  Laedership section ---------- */

.abt-leadership-section {
  padding: 70px 0 80px;
  background: #e2e8ef;
}
.abt-leaderinfo {
  text-align: center;
}

.abt-leaders-team {
    gap: 30px;
    width: 62%;
    margin: auto;
    margin-top: 2em;
}

.abt-leaders-team .global-card-one-content span {
  font-weight: 400;
}
.abt-leaders-team .global-card-one:hover span {
  color: #fff;
}

.abt-leaders-team .global-card-one {
  height: 470px;
}

.abt-leaders-team .global-card-one-img {
  height: 360px;
}

.abt-leaders-team .global-card-one-img img {
  height: auto;
}

.abt-leaders-team .global-card-one-content {
  padding: 15px 30px 30px;
}

.abt-leaders-team .global-card-one:hover .global-card-one-para {
  color: #fff;
  padding-top: 0.6em;
}

.social-link {
  float: right;
  margin-top: -2.8em;
}


@media(min-width:991px){
   .abt-leaders-team .global-card-one:hover .global-card-one-content {
   min-height: 440px;
}
}
/* ---------- about  counter section two ---------- */

.counter-wrapper2 {
  text-align: center;
  background: #ffffff;
  padding: 70px 0;
  margin-top: unset;
}
.counter-wrapper2 .counter-container {
  background: #011627;
  margin-top: 1.5em;
}

.counter-wrapper2 .counter-item h2 {
  color: #e2e8ef;
}

.counter-wrapper2 .counter-item p {
  color: #e2e8ef;
}

/* ----------------- About page tablet mobile media query ------------------ */

@media (max-width: 767px) {
  .about_banner {
    height: 60vh;
  }

  .about-banner-info {
    top: 28%;
  }

  .abt_timeline_info {
    display: flex;
    flex-direction: column;
  }

  .abt_timeline_section {
    padding: 50px 0 10px;
  }

  .abt_timeline_left {
    width: 100%;
    margin: auto 0;
    padding-right: 0;
  }

  .abt_timeline_right {
    width: 100%;
    overflow: hidden;
  }

  .timeline {
    list-style: none;
    margin: 50px 10px 10px 40px;
    max-width: 800px;
    padding: 0;
    position: relative;
    box-sizing: border-box;
  }

 .abtLearncontent {
    flex-direction: column;
  }

  .abtLearncontent .G-image-Left {
    width: 100%;
  }

  .abtLearncontent .abtlearRight {
    width: 100%;
  }

  .abtlearLeft img {
    width: 100%;
    margin-bottom: 1.5em;
  }
  .abtlearnSection {
    padding: 70px 0;
  }

  .about-why-content {
    display: grid;
    grid-template-columns: auto;
  }

  .about-why-section {
    padding: 50px 0 80px;
  }

  .about-left-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .about-why-right img {
    width: 100%;
  }

  .abt-sol-content {
    display: grid;
    grid-template-columns: auto;
  }
  .abt-sol-Left img {
    width: 100%;
    margin-bottom: 1.5em;
  }

  .abt-service-list {
    width: 100%;
  }

  .abt-sol-section {
    padding: 70px 0;
  }

  .abt-service-section {
    padding: 70px 0 50px;
  }
    .abt-partner-section {
    padding-bottom: 0;
  }

  .abt-partner-content {
    grid-template-columns: auto;
    gap: 70px;
  }
  .abt-partner-left img {
    width: 100%;
    margin-bottom: 1.5em;
  }

  .abt-partner-para p {
    margin-bottom: 3.5em;
  }
  
  .abt-leaders-team{
      width:100%;
  }

  .abt-leaders-team .global-card-one {
    height: fit-content;
  }

  .abt-leaders-team .global-card-one-content {
    position: unset;
  }

  .abt-leaders-team .global-card-one-img {
    height: 340px;
  }
  .abt-logos-section .work-left {
    width: 100%;
}
}



/* ======================= Inner pages start ====================== */

/*left image section for all inner pages */



.imageFlex{
   display: flex;
    justify-content: space-between;
    align-items: center; 
    gap:50px;
}


.G-image-Left{
    width:50%;
    
}
.imageContent{
    width:50%;
}
.imageContent p{
    line-height:28px;
}


.G-image-Left{
    position:relative;
    z-index:1;
}
.g-image{
    text-align:center;
    width: 100%;
}

.g-image img{
    width:90%;
    height:100%;
    border-radius:4px;
    box-shadow: 0px 0px 31.42px 0px #00000024;
}

.g-image-overlay-left{
    height: 90%;
    width: 90%;
    background-color: #C8D4E8;
    position: absolute;
    bottom: -5%;
    left: 0;
    z-index: -1;
    border-radius:4px;
}

.g-image-overlay-right{
    height: 90%;
    width: 90%;
    background-color: #C8D4E8;
    position: absolute;
    bottom: -5%;
    right: 0;
    z-index: -1;
    border-radius:4px;
}

@media (max-width:767px){
    
    .imageFlex{
        flex-direction:column;
    }
    .G-image-Left{
    width:100%;
}
.imageContent{
    width:100%;
}

.g-image{
    text-align:right;
    width: 100%;
}
.g-image img {
    width: 94%;
}

.G-image-right .g-image{
    text-align:left;
}

}

/*left image section for all inner pages */


.global_Banner {
  height: 70vh;
}

.global_banner_info {
  position: absolute;
  top: 30%;
}
.breadcrumb-para {
  color: #e2e8ef;
}

@media(max-width:767px){
    .global_Banner {
    height: 54vh;
}
}




/* ----------- service main page ------------ */

.svr_main_banner{
     background: url(./images/services-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*height: 60vh;*/
  width: 100%;
}
.svrpageinfo{
    padding:100px 0;
}

.svrpageinfo .global-card-one{
    cursor:pointer;
}
.svrpageCards{
    gap:30px;
}


@media (max-width:767px){
    .svrpageinfo {
    padding: 70px 0;
}
}

/* ----------- Product Engineering  page ------------ */


.product-e_main_banner{
    background: url(./images/product-engineering-banner.webp);
      background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*height: 60vh;*/
  width:100%;
}

.product-first-sec{
     padding:100px 0;
}


.product-second-sec{
     padding:50px 0 100px;
}

.product-first-sec h2{
    margin-bottom:0.7em;
}

.product-dev{
    padding:100px 0;
    background-color: #f8f8f8;
}

.product-dev-img img{
    border-radius:4px;
    width: 100%;
}

.product-dev .column-2{
    gap:50px;
}
.product-dev-para h2{
    margin-bottom:1em;
}

.product-dev-para p{
    line-height:28px;
}
.product-dev-para{
    margin:auto;
}


.card-1 .grid-item {
  background-color: #fff;
  border-radius: 4px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  /* cursor: pointer; */
}

.card-1 .grid-item:hover {
  background-color: #001d2f;
  color: #fff;
  /*scale: 0.9;*/
}

.card-1 .grid-item:hover span,
.card-1 .grid-item:hover p {
  color: #fff;
}

.card-1 .grid-item img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  transition: filter 0.3s;
}

.card-1 .grid-item span {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.card-1 .grid-item p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.product-dev-cards {
  padding: 100px 0;
}

.product-dev-cards .card-1 {
  gap: 20px;
}

.product-dev-cards .grid-item {
  background: #f8f8f8;
}

/* <!-- product dev approach  -->  */

.product-dev-approach {
  padding: 70px 0;
  background-color: #f8f8f8;
}
.product-approach-left h2 {
  margin-bottom: 1em;
}

.product-approach-right {
  margin: auto;
}

/* <!-- product dev services  -->  */
.product-dev-services {
  padding: 100px 0;
}

.product-dev-services .grid-item {
  background: #f8f8f8;
}

.product-dev-services .card-1 {
  gap: 20px;
}

.product-dev-services h2 {
  margin-bottom: 1em;
}

/* <!-- product eng services  -->  */

.product-eng-services {
  padding: 100px 0;
  background: #f9f9f9;
}
.product-eng-services .card-1 {
  gap: 20px;
}

.product-eng-services h2 {
  margin-bottom: 1em;
}

.product-eng-services .grid-item {
  text-align: left;
}

.product-eng-services .card-1 .grid-item {
  padding: 40px;
}

/* <!-- product dev capabilities  -->  */
.product-dev-eng-models {
  padding: 70px 0;
}

.product-dev-eng-models .grid-item {
  background: #f8f8f8;
  padding: 50px;
  text-align: left;
}

.product-dev-eng-models .card-1 {
  gap: 20px;
}
.product-dev-eng-models h2 {
  margin-bottom: 1em;
}

.product-dev-capabilities {
  padding: 30px 0 50px;
}

.product-dev-cap-content {
  margin-top: 2em;
}
.product-dev-cap-content ul {
  gap: 20px;
}

.product-dev-cap-content ul li {
  padding: 30px 60px;
  background: #f8f8f8;
  border-radius: 4px;
  font-size: 18px;
  transition: transform 0.4s ease-in-out;
}

.product-dev-cap-content ul li:hover {
  background: #011627;
  color: #ffffff;
  transform: translateY(-10px);
}

.product-dev-cap-content ul li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -34px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/* <!-- product-qa section  -->  */
.product-qa-sec {
  padding: 70px 0;
}

.product-qa-sec h2 {
  margin-bottom: 1em;
  line-height: 40px;
}

/* <!-- Product Quality section  -->  */
.product-quality-section{
    padding: 50px 0 120px;
}
.product-quality-section .G-image-Left{
    width:unset;
}
.product-quality-content{
    gap:50px;
}

.product-quality-right {
  margin: auto;
}
.product-quality-right h2 {
  margin-bottom: 1em;
}

.product-quality-section ul li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -34px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.product-quality-section ul {
  margin-left: 24px;
}

/* <!-- Product enhance section  -->  */
.product-enhance {
  padding: 70px 0;
  background: #f9f9f9;
}
.product-enhance-right {
  margin: auto;
}
.product-enhance-right h2 {
  margin-bottom: 1em;
}

.product-enhance-left {
  margin: auto;
}
.product-enhance-left img {
  border-radius: 4px;
}

.product-enhance-para {
  padding: 70px 0;
}

.product-enhance-offer {
  padding-bottom: 80px;
}

/* <!-- product enhance cycle  --> */
.product-enhane-cycle {
  background: #f9f9f9;
  padding: 100px 0;
}
.product-cycle-content{
    gap:50px;
}
.product-cycle-left img {
  width: 100%;
  border-radius: 4px;
}
.product-cycle-right{
    margin:auto;
}
.product-cycle-right h2 {
  margin-bottom: 1em;
}
.product-cycle-right p {
  line-height: 32px;
}

/* <!-- product maintenance   -->  */
.product-maintenance {
  padding: 70px 0;
}

.product-maintenance-content {
  padding: 70px 0 0;
  gap: 50px;
}
.product-maintenance-right {
  text-align: center;
}
.product-maintenance-left h2 {
  margin-bottom: 0.7em;
}

.product-maintenance-left p {
  line-height: 28px;
}
.product-maintenance-left li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -34px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.product-maintenance-left ul {
  margin-left: 24px;
  margin-top: 10px;
}

/* <!-- product last section   --> */
.product-last-sec {
  padding: 100px 0;
  background: #f9f9f9;
}

.product-Lst p{
    min-height:230px;
}
.product-last-content {
  gap: 50px;
}

.product-last-sec p {
  background-color: #e2e8ef;
  padding: 40px 60px;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.product-last-sec p:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-10px);
}

/* <!-- Enquiry section   -->  */

.enquiry-Section {
  padding: 100px 0;
    background: url(images/discover-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    background-color: #e2e8ef;
}
.enquiry-info {
  background: #011627;
  border-radius: 4px;
  padding: 80px 0;
  text-align: center;
}
.enquiry-info h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
}

.enquiry-info p {
  color: #e8f3ff;
  margin: 20px 0 20px;
}

.enquire-btn {
  border: 0.1px solid #226ce0;
}
.enquire-btn:hover {
  border: 0.1px solid #ffffff;
}

@media (max-width: 767px) {
  .enquiry-Section {
    padding: 70px 0;
  }
  .enquiry-info {
    padding: 50px 20px;
  }
  .product-cycle-content{
      gap:20px;
  }
}

/* ============ product engineering mobile responsive  ============ */

@media (max-width: 1320px) {
  .product-dev-img img {
    width: 100%;
  }
  .product-quality-left img {
    width: 100%;
  }
  .product-cycle-left img {
    width: 100%;
  }
  .product-maintenance-right img {
    width: 100%;
  }
  .product-enhance-left img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-first-sec {
    padding: 50px 0;
  }
  .product-second-sec {
    padding: 50px 0 70px;
  }
  .product-dev {
    padding: 70px 0;
  }

  .product-dev-cards {
    padding: 70px 0;
  }
  .product-approach-right img {
    margin-top: 1.5em;
  }
  .product-dev-services {
    padding: 70px 0;
  }
  .product-qa-sec {
    padding: 50px 0;
  }
  .product-quality-section {
    padding-bottom: 70px;
  }
  .product-enhane-cycle {
    padding: 70px 0;
  }
  .product-enhance-left img {
    margin-top: 1.5em;
  }
  .product-cycle-right h2 {
    margin-bottom: 1em;
    margin-top: 1em;
  }
  .product-last-sec {
    padding: 70px 0;
  }
  .product-last-sec p {
    padding: 40px 20px;
  }
}

/* ============ Business Support page ============ */

.business_main_banner {
  background: url(./images/business-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*height: 60vh;*/
  width: 100%;
}

.business-first-sec {
  padding: 100px 0;
}
.business-first-sec h2 {
  margin-bottom: 1em;
}

/* <!-- Business svr section  -->  */
.business-svr-cards {
  padding: 100px 0;
  background: #f9f9f9;
}

.business-svr-cards h2 {
  margin-bottom: 1em;
}
.business-svr-cards .card-1 {
  gap: 20px;
}
.business-svr-cards .grid-item {
  text-align: left;
  padding: 40px;
}

/* <!-- business benefits   -->  */
.business-benefits-sec {
  padding: 100px 0;
}

.business-benefits ul li {
  background: #e2e8ef;
}

/* =============== business media query ============== */

@media (max-width: 767px) {
  .business-first-sec {
    padding: 50px 0 90px;
  }

  .business-svr-cards {
    padding: 70px 0;
  }

  .business-benefits-sec {
    padding: 70px 0;
  }
}


/* ============ Professional Consulting page ============ */

.professional-Banner {
  background: url(./images/professional-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.professional-first-sec {
  padding: 100px 0;
}
.professional-first-sec h2 {
  margin-bottom: 1em;
}

.professional-second-sec {
  padding: 30px 0 100px;
}

.professional-second-sec .g-image img {
  box-shadow: 0px 4px 10px 0px #00000024;
}

.professional-second-sec h2 {
  margin-bottom: 1em;
}

.professional-architecture {
  padding: 100px 0;
  background-color: #f7f7f7;
}
.professional-architecture .product-dev-cap-content ul li{
  padding: 20px 60px;
    background: #ffffff;  
    transition: transform 0.4s ease-in-out;
    border-radius: 4px;
    font-size: 18px;
}

.product-dev-cap-content ul li:hover {
    background: #011627;
    color: #ffffff;
    transform: translateY(-10px);
}
.professional-arch-two {
  padding: 70px 0;
}
.professional-arch-two p {
  margin-top: 2em;
  line-height: 28px;
}

.prof-staff {
  background: #f8f8f8;
  padding: 100px 0;
}
.prof-staff-info h2 {
  margin-bottom: 0.7em;
}
.prof-staff-info {
  gap: 50px;
}
.prof-staff .G-image-Left{
    width:unset;
}

.prof-staff-img img {
  width: 100%;
}
.prof-staff-img {
  margin: auto 0;
}

.staff-Expert {
  padding: 70px 0 100px;
}
.staff-Expert h2 {
  margin-bottom: 0.7em;
}
.staff-expert-info {
  gap: 50px;
}

.staff-expert-left {
  margin: auto 0;
}
.staff-Expert .G-image-Left {
     width: unset; 
}
.staff-expert-right img {
  width: 100%;
}

.staff-Expert ul li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -34px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.staff-Expert ul {
  margin-left: 24px;
}
.staff-Expert ul li {
  margin-bottom: 10px;
}

.p-staff-model-section {
  padding: 70px 0 100px;
  background: #f8f8f8;
}
.p-staff-model-section h2 {
  margin-bottom: 1.2em;
}
.staff-contract {
  gap: 50px;
}

.p-staff-model-section .G-image-Left{
    width:unset;
}
.staff-contract-left img {
  width: 95%;
  border-radius: 4px;
}

.staff-contract-right h3 {
  font-size: 30px;
  margin-bottom: 0.7em;
}
.staff-contract-right p {
  line-height: 28px;
}

.project-staff {
  padding: 100px 0;
}

/*.project-staff img {*/
/*  width: 100%;*/
/*}*/
.project-staff .G-image-Left {
    width: unset;
}
.project-staff .staff-contract-left {
  text-align: center;
  margin-top: auto;
}

/*.managed-staff img {*/
/*  width: 100%;*/
/*}*/
.managed-staff {
  padding-bottom: 70px;
}
.managed-staff .G-image-Left {
    width: unset;
}


.professional-service {
  padding: 100px 0;
  background: #f5f5f5;
}
.professional-service ul li{
    background:#ffffff;
    padding: 20px 50px;
}

/* professional media query  */

@media (max-width: 767px) {
  .professional-first-sec {
    padding: 50px 0;
  }

  .professional-second-sec {
    padding: 70px 0 70px;
  }
  .professional-architecture {
    padding: 70px 0;
  }

  .prof-staff {
    padding: 70px 0;
  }
  .p-staff-model-section h2 {
    margin-bottom: 1em;
  }
  .p-staff-model-section {
    padding: 70px 0 70px;
  }

  .managed-staff .staff-contract {
    display: flex;
    flex-direction: column-reverse;
  }

  .professional-service {
    padding: 70px 0;
  }
  
  .staff-contract-right h3 {
    font-size: 24px;
  }
}


/* ============ Architecture Consulting  page ============ */
.architecture_main_banner {
  background: url(./images/architechture-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.architecture-first-sec {
  padding: 100px 0;
}

.architecture-first-sec h2 {
  margin-bottom: 0.7em;
}

.architecture-svr-image {
  background: #f9f9f9;
  padding: 70px 0;
  text-align: center;
}

.architecture-services {
  padding: 100px 0;
}

.architecture-services .grid-item {
  background: #f8f8f8;
  text-align: left;
  padding: 40px;
}
.architecture-services .card-1 {
  gap: 20px;
}

.architecture-services h2 {
  margin-bottom: 1em;
}

.arch-counsulting-section {
  padding: 0 0 100px;
}

.arch-counsulting-section .G-image-Left{
    width:unset;
}
.arch-counsulting-section ul {
  margin-left: 24px;
}
.arch-counsulting-section ul li {
  margin-bottom: 10px;
}
.arch-counsulting-section h2 {
  margin-bottom: 0.7em;
  line-height: 45px;
}

.architecture-cards {
  padding: 0 0 70px;
}
.architecture-cards .card-1 {
  gap: 20px;
}
.architecture-cards .grid-item {
  box-shadow: 0px 0px 3px 0px #00000040;
  text-align: left;
  padding: 40px;
}

.arch-counsulting-section ul li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -34px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.architecture-last-sec {
  padding: 50px 0 70px;
}
.architecture-last-sec h2 {
  margin-bottom: 1em;
}

.architecture-last-sec .product-last-left p {
  line-height: 28px;
}

.architecture-last-sec ul li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -34px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.architecture-last-sec ul {
  margin-left: 25px;
  margin-top: 20px;
}

.architecture-last-sec ul li {
  margin-bottom: 15px;
}

/* Architecture media query  */
@media (max-width: 1280px) {
  .architecture-svr-image img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .architecture-first-sec {
    padding: 50px 0 70px;
  }

  .architecture-services {
    padding: 50px 0 70px;
  }
  .arch-counsulting-section h2 {
    margin-bottom: 0.7em;
    line-height: 40px;
    margin-top: 0.7em;
  }
  .arch-counsulting-section {
    padding: 0 0 50px;
  }
  .architecture-last-sec {
    padding: 50px 0 50px;
  }
}


/* ============ IT Outsourcing page ============ */


.it_outsource_banner {
  background: url(./images/itOutsource-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.it-outsource-first-sec {
  padding: 100px 0;
}

.it-source-Content h2 {
  margin-bottom: 0.3em;
}
.it-source-Content p {
  line-height: 28px;
}
.it-source-Content img {
  width: 100%;
}
.it-source-Content {
  gap: 30px;
}

.it-benefits {
  padding: 100px 0;
  background: #f9f9f9;
}

.it-benefits h2 {
  margin-bottom: 1em;
}

.it-benefits-content {
  gap: 0;
  margin-bottom: 3em;
}

.it-benefits-left img {
  width: 100%;
  height: 100%;
}

.it-benefits-right {
  background: #ffffff;
  padding: 30px 30px;
  display: flex;
    flex-direction: column;
    justify-content: center;
}

.it-benefits-right h3 {
  margin-bottom: 0.5em;
  font-size: 26px;
  font-weight: 600;
}
.it-benefits-right p {
  line-height: 28px;
}
.it-Services {
  background: #ffffff;
  padding: 100px 0;
}
.it-Services h2 {
  margin-bottom: 0.7em;
}

.it-outsource-para {
  margin-bottom: 2em;
  line-height: 28px;
  width: 80%;
}

.it-Services .it-benefits-right {
  background: #f8f8f8;
}

.it-app-service {
  padding: 70px 0;
  background: #e2e8ef;
}
.it-app-service h2 {
  margin-bottom: 1em;
}
.it-app-service p {
  line-height: 28px;
}

.it-legacy-services {
  padding: 70px 0 50px;
}
.it-legacy-banefits {
  padding-bottom: 100px;
}
.it-legacy-banefits p {
  margin-bottom: 2em;
  line-height: 28px;
}

.it-outsource-last {
  padding: 70px 0 100px;
}
.it-outsource-last h2 {
  margin-bottom: 0.7em;
}

.it-outsource-last p {
  line-height: 28px;
}

/* IT-outsourcing media query starts  */

@media (max-width: 767px) {
  .it-outsource-first-sec {
    padding: 50px 0;
  }

  .it-benefits {
    padding: 50px 0 30px;
  }

  .it-benefits-right h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .it-benefits-right {
    padding: 20px 15px;
  }
  .it-benefits-content {
    margin-bottom: 2em;
  }
  .it-Services {
    padding: 50px 0 30px;
  }

  .it-app-service {
    padding: 50px 0;
  }
  .it-legacy-services {
    padding: 50px 0 50px;
  }
  .it-legacy-banefits {
    padding-bottom: 60px;
  }
  .it-outsource-last {
    padding: 50px 0 60px;
  }
}


/* ============ Application Engineering page ============ */

.appDev_banner {
  background: url(./images/application-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.appDev-first-sec {
  padding: 100px 0;
}

.appDev-first-sec h2 {
  margin-bottom: 0.7em;
  line-height: 40px;
}

.appDev-cards {
  padding: 70px 0 100px;
  background: #f8f8f8;
}

.appDev-cards h2 {
  margin-bottom: 1em;
}

.appDev-cards .card-1 {
  gap: 20px;
}

.appDev-cards .grid-item {
  padding: 40px;
  text-align: left;
}

.appDev-second-sec {
  padding: 100px 0;
}

.appDev-technology {
  padding: 70px 0 100px;
  background: #f8f8f8;
}
.appDev-technology h2 {
  margin-bottom: 1em;
}
.appDev-technology .card-1 {
  gap: 20px;
}

.appDev-technology .grid-item {
  padding: 0px;
  /* text-align: left; */
  display: flex;
    flex-direction: column;
}
.appDev-technology .grid-item img{
    width:100%;
}

.card-appDev{
    gap:50px
}
.appDev-technology .grid-item span{
    background: #c5c5c5;
    width: 100%;
    padding: 10px 10px;
    text-align: center;
}

.app-why-section {
  padding: 100px 0;
}
.app-why-section h2 {
  margin-bottom: 1em;
}
.app-why-section .grid-item {
  background: #f8f8f8;
  padding: 30px 30px;
  text-align: left;
}

.app-why-section .card-1 {
  gap: 10px;
}

.appDev-method {
  background: #f8f8f8;
  padding: 80px 0;
}

.appDev-method img {
  width: 100%;
}

.appDev-method-content {
  gap: 50px;
}
.appDev-method .product-approach-right {
  display: flex;
  align-items: flex-end;
  margin: unset;
}

.appdev-planning {
  padding: 80px 0;
}

.appDev-info {
  gap: 50px;
}

.appDev-info img {
  box-shadow: rgb(99 99 99 / 5%) 0px 1px 6px 0px;
  border-radius: 4px;
  width: auto;
}
.appdev-planning h2 {
  margin-bottom: 1em;
}

.appDev-last-sec h2 {
  margin-bottom: 1em;
}
.appDev-last-sec p {
  line-height: 28px;
}

.appDev-process ul li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -34px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.appDev-process ul {
  margin-left: 24px;
}

.appDev-process ul li {
  margin-bottom: 15px;
}

/* Application engineering media query starts  */

@media (max-width: 1280px) {
  .appDev-info img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .appDev-first-sec {
    padding: 50px 0 90px;
  }
  .appDev-cards {
    padding: 50px 0 70px;
  }
  .appDev-second-sec {
    padding: 50px 0 90px;
  }
  .appDev-technology {
    padding: 50px 0 70px;
  }
  .app-why-section {
    padding: 50px 0 70px;
  }
  .appDev-method {
    padding: 50px 0 70px;
  }
  .appdev-planning {
    padding: 50px 0;
  }
  .appDev-last-sec {
    padding: 50px 0 70px;
  }
}

/* ============ Products main page ============ */

.products_main_banner {
  background: url(./images/products-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}
.products_main_page {
  padding: 100px 0;
}
.products_main_page .global-card-one{
    cursor:pointer;
}

.products_main_page .column-3 {
  gap: 30px;
}

@media (max-width: 767px) {
  .products_main_page {
    padding: 70px 0;
  }
}


/* ============ ZEVA-AI Chatbot page ============ */
.zeva-chatbot_banner {
  background: url(./images/chatbot-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}
.zeva-first-sec {
  padding: 70px 0 100px;
}
.zeva-first-sec h2 {
  margin-bottom: 0.7em;
}
.zeva-first-sec ul {
  margin-top: 1.5em;
  margin-left: 24px;
}

.zeva-first-sec ul li::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 30px;
  margin-left: -34px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.zeva-first-sec ul li {
  margin-bottom: 15px;
}
.zevachatbot-cards{
    padding:100px 0;
}
.zevachatbot-cards .column-2{
    grid-template-columns:45% 1fr;
    gap:30px;
}
.zeva-sticky{
  position:sticky;
  top:300px;
}

.zevachatbot-cards h2 {
  margin-bottom: 0.4em;

}

.zevachatbot-cards  .grid-item {
    padding: 20px;
    margin-bottom: 15px;
}
.zevachat-para {
  padding-bottom: 1.5em;
}

.zeva-features {
  background: #fff;
}

.zeva-features .grid-item {
  background: #f8f8f8;
}

/* zeva-chatbot media query  */
@media (max-width: 767px) {
  .zeva-first-sec {
    padding: 50px 0 100px;
  }
  .zevachatbot-cards .column-2{
      grid-template-columns: auto;
     
  }
  .zevachatbot-cards{
      padding:70px 0;
  }
  
}



/* ============ ZEVE - Virtual Environment page ============ */

.zeve_banner {
  background: url(./images/zeve-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.zeve-first-sec {
  padding: 100px 0;
}

.zeve-first-sec h2 {
  margin-bottom: 0.7em;
}

.zeve-btn {
  margin-top: 2.5em;
}

.zeve-events h2 {
  margin-bottom: 0.4em;
}

.zeve-events .zeve-para {
  padding-bottom: 2em;
}

.zeve-carousel {
  padding: 100px 0 30px;
}

.zeve-carousel .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
}

.zeve-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -1.5em;
}

.zeve-carousel button.owl-dot {
  background: #d3d3d3 !important;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  z-index: 22;
}

.zeve-carousel button.owl-dot.active {
  background: #226ce0 !important;
}

.zeve-counter {
  margin: 2em 0 0;
}
.zeve-counter .counter-container {
  display: grid;
  background-color: #f8f8f8;
  gap: 50px;
}
.zeve-counter .counter-item {
  text-align: left;
}

.zeve-counter .counter-item p {
  font-size: 16px;
  color: #797979;
  margin-top: 0.5em;
}

.zeve-features {
  background: #ffffff;
}

.zeve-features .grid-item {
  background: #f8f8f8;
}

.zevebenefits {
  background: #ffffff;
  padding: 70px 0 100px;
}
.zevebenefits .grid-item {
  background: #f8f8f8;
  padding: 30px 20px;
}

.zevebenefits .card-1 {
  gap: 15px;
}
.zeve-why-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.zeve-why-section h2 {
  margin-bottom: 1em;
}
.zeve-why-section h4 {
  font-size: 18px;
  margin-bottom: 1.5em;
  color: #5e5e5e;
  font-weight: 500;
}

.zeve-why-info ul li::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 30px;
  margin-left: -7px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.zeve-why-info ul {
  gap: 15px;
  /* margin-left: 24px; */
}

.zeve-why-info2 {
  margin-top: 2em;
}
.zeve-why-info li {
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 4px;
  transition: transform 0.4s ease;
}
.zeve-why-info li:hover {
  transform: translateY(-7px);
}

/* zeve media query starts  */

@media (max-width: 767px) {
  .zeve-first-sec {
    padding: 50px 0 90px;
  }

  .zeve-carousel {
    padding: 70px 0 30px;
  }

  .zevebenefits {
    padding: 50px 0 70px;
  }

  .zeve-why-section {
    padding: 50px 0;
  }
}



/* ============ LoyaltyFactor-Customer-Loyalty-Management page ============ */

.loyalty_banner {
  background: url(./images/loyalty-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.loyaltyfactor {
  padding: 100px 0;
}
.loyaltyinfo {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 30px;
  align-items:center;
}
.loyaltyinfo h2 {
  margin-bottom: 1em;
}
.loyaltyinfo p {
  line-height: 28px;
}

.loyalty-right img {
  width: 100%;
}

.loyalty-program-sec {
  padding: 100px 0;
}
.loyalty-program-sec h2 {
  margin-bottom: 1em;
}
.loyalty-program-sec p {
  line-height: 28px;
}

.loyalty-function {
  padding: 100px 0;
}

.loyalty-function h4 {
  font-size: 24px;
  margin: 1em 0;
  font-weight: 600;
}

.loyalty-function ul li {
  margin-bottom: 15px;
}

.loyalty-function ul li::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 30px;
  margin-left: -7px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.loyalty-function {
  padding: 70px 0 50px;
}

.loyalty-function1 {
  padding-top: 120px;
}

.loyalty-function3 {
  padding-bottom: 120px;
}

/* media query starts  */
@media (max-width: 767px) {
  .loyaltyfactor {
    padding: 50px 0 70px;
  }
  .loyaltyinfo {
    grid-template-columns: 1fr;
  }

  .loyalty-right img {
    margin-top: 1.5em;
  }
  .loyalty-program-sec {
    padding: 70px 0;
  }
  .loyalty-function1 {
    padding-top: 70px;
  }
  .loyalty-function3 {
    padding-bottom: 100px;
  }
}



/* ============ Industries page starts ============ */

.industries_main_banner {
  background: url(./images/industries-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}
.industries_main_page .column-3{
    gap:20px;
}

.industries_main_page {
  padding: 100px 0;
}
.industries_main_page .global-card-one{
    cursor:pointer;
}
.industries_main_page 
.industries_main_page .column-3 {
  gap: 25px;
}

.industries_main_page .global-card-one-img img {
  object-position: right;
}

@media (max-width: 767px) {
  .industries_main_page {
    padding: 70px 0;
  }
}


/* ============ Aviation  page ============ */

.aviation_banner {
  background: url(./images/aviation-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.aviation-first-sec {
  padding: 100px 0;
}

.avi-image img {
  width: 100%;
}
.aviation-info {
  gap: 50px;
}
.aviation-info p {
  line-height: 32px;
  margin-top: 1.2em;
}
.aviation-inf h2 {
  margin-top: 2em;
}

.avi-sol-sec {
  padding: 100px 0 120px;
  background-color: #f8f8f8;
}

.avi-sol-sec h2 {
  margin-bottom: 0.7em;
}
.avi-sol-sec p {
  line-height: 28px;
  margin: 10px 0 20px;
}

.avi-sol-sec ul li {
  margin-bottom: 15px;
}

.avi-sol-sec ul li::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 30px;
  margin-left: -7px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.avi-sol-sec ul {
  margin-bottom: 2em;
}

.Avi-cards {
  background: #ffffff;
  padding: 100px 0;
}
.Avi-cards .grid-item {
  background: #f8f8f8;
}

.avi-impact {
  padding: 100px 0;
  background: #f8f8f8;
}
.avi-impact-info p {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 4px;
  line-height: 28px;
  transition: transform 0.6s ease;
}
.avi-impact-info {
  gap: 30px;
  margin-top: 2em;
}

.avi-impact-info p:hover {
  transform: translateY(-2px);
}

/* Aviation media query starts  */
@media (max-width: 767px) {
  .aviation-first-sec {
    padding: 60px 0;
  }

  .avi-sol-sec {
    padding: 70px 0 70px;
  }
  .Avi-cards {
    padding: 70px 0;
  }

  .avi-impact {
    padding: 70px 0;
  }
}


/* ============ Retail  page ============ */

.retail_banner {
  background: url(./images/RETAIL-BANNER.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.retail-first-sec {
  padding: 100px 0;
}

.retail-first-sec .avi-image img{
    box-shadow: 0px 0px 10px 0px #b0b0b024;
    border-radius: 4px; 
}
.retial-f-new{
    margin:auto;
}
.retail-solution h2 {
  margin-bottom: 0.7em;
}
.retail-sol-para {
  margin-bottom: 2em;
}
.retail-benefits {
  background: #ffffff;
}
.retail-benefits .grid-item {
  background: #f8f8f8;
}

.retail-video {
  padding: 100px 0;
  background: #f8f8f8;
}
.retail-video-info {
  align-items: center;
  gap: 50px;
}
.retail-video h2 {
  margin-bottom: 1em;
}
.retail-video p {
  line-height: 28px;
}

/* retail media query starts  */

@media (max-width: 767px) {
  .retail-first-sec {
    padding: 60px 0;
  }

  .retail-video {
    padding: 60px 0;
  }
}



/* ============ Real estate  page ============ */

.real-estate_banner {
  background: url(./images/realestate-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}
.real-estate-first-sec {
  padding: 100px 0;
}

.real-estate-solution .real-sol-para {
  margin-bottom: 2em;
  width: 90%;
}
.real-estate-solution .card-1 .grid-item span{
   font-weight: 500; 
}
.real-estate-sol-2 {
  background: #ffffff;
}
.real-estate-sol-2 .grid-item {
  background: #f8f8f8;
}

.real-estate-expertise {
  background: #f8f8f8;
  padding: 70px 0;
}
.real-estate-expertise h2 {
  margin-bottom: 1em;
}
.real-estate-expert {
  gap: 50px;
  display: grid;
  grid-template-columns: 60% 1fr;
}
.expert-icons img {
  width: 50px;
  height: auto;
}
.expert-icons {
  background: #ffffff;
  border-radius: 4px;
  padding: 10px 20px;
  align-items: center;
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  transition: transform 0.6s ease;
}
.expert-icons:hover {
  transform: translateY(-5px);
  background: #000000;
  color: #ffffff;
}

/* real estate media query starts  */
@media (max-width: 767px) {
  .real-estate-expert {
    grid-template-columns: auto;
  }
  .real-estate-first-sec {
    padding: 60px 0;
  }

  .real-estate-solution .real-sol-para {
    width: 100%;
  }
  .real-estate-expertise {
    padding: 60px 0;
  }
}



/* ============ Manufacturing  page ============ */

.manufacturing_banner {
  background: url(./images/manufacturing-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.manufacturing-first-sec {
  padding: 100px 0;
}

.manufacturing-solution .para {
  margin-bottom: 2em;
  width: 80%;
  line-height: 28px;
}

.manufact-offer {
  background: #ffffff;
}
.manufact-offer .grid-item {
  background: #f8f8f8;
}

.real-estate-industry {
  background: #f8f8f8;
  padding: 100px 0;
}

.real-estate-industry h2 {
  margin-bottom: 1em;
}

.real-estate-industry .real-estate-expert p {
  line-height: 28px;
}

/* Manufacturing media query starts  */
@media (max-width: 767px) {
  .manufacturing-first-sec {
    padding: 60px 0;
  }

  .manufacturing-solution .para {
    width: 100%;
  }
  .real-estate-industry {
    padding: 60px 0;
  }
}


/* ============ Automotive  page ============ */
.automotive_banner {
  background: url(./images/automotive-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.automotive-first-sec {
  padding: 100px 0;
}
.automotive-first-sec .column-2{
    align-items:center;
}

.automotive-first-sec h2 {
  margin-bottom: 1em;
}

.automotive-first-sec p {
  line-height: 28px;
}
.automotive-first-sec .column-2 {
  gap: 50px;
}

.automotive-services .para {
  margin-bottom: 2em;
  /* width: 82%; */
  line-height: 28px;
}

.automotive-industry {
  padding: 100px 0 100px;
}

.automotive-industry h2 {
  margin-bottom: 1em;
}

.automotive-industry .expert-icons {
  background: #f8f8f8;
  margin-bottom: 12px;
}
.automotive-industry .expert-icons:hover {
  color: #ffffff;
  background: #000000;
}
.automotive-industry .real-estate-expert {
  align-items: end;
}

/* Automotive media query starts  */
@media (max-width: 767px) {
  .automotive-first-sec {
    padding: 60px 0;
  }

  .automotive-industry {
    padding: 60px 0 50px;
  }
}



/* ============ Healthcare  page ============ */

.healthcare_banner {
  background: url(./images/healthcare-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}
.healthcare-first-sec {
  padding: 100px 0;
}
.healthcare-first-sec .column-2 {
  gap: 50px;
}
.healthcare-first-sec h2 {
  margin-bottom: 1em;
}
.healthcare-first-sec p {
  line-height: 28px;
}
.healthcare-offer .para {
  margin-bottom: 2.5em;
  line-height: 28px;
  width: 95%;
}

.healthcare-platform {
  padding: 100px 0;
}
.healthcare-platform h2 {
  margin-bottom: 0.8em;
}
.healthcare-platform p {
  line-height: 28px;
  margin-bottom: 1.5em;
}
.healthcare-platform .column-2 {
  gap: 50px;
  align-items: center;
}

.healthcare-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: left;
  border-radius: 4px;
}

.healthcare-last-section .para {
  margin-bottom: 2em;
}

/* Healthcare media query starts  */

@media (max-width: 767px) {
  .healthcare-first-sec {
    padding: 60px 0;
  }
  .healthcare-offer .para {
    width: 100%;
  }

  .healthcare-platform {
    padding: 60px 0;
  }
}



/* ============ contact  page ============ */

.contact_banner {
  background: url(./images/contact-banner.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}
.contactPageform {
  padding: 100px 0;
}

.contactPageform .contactPara {
  text-align: center !important;
  margin-top: 0.7em;
}
.contactPageform h2 {
  text-align: center;
}

.contactPageform .contact-form {
  box-shadow: 0px 2px 13px 0px #00000024;
  width: 95%;
  margin: 50px auto;
  gap: 25px;
  padding: 40px;
}

.contactPageform .contact-form input,
.contactPageform .contact-form textarea {
  padding: 20px 15px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  background-color: #f8f8f8;
  box-shadow: unset;
  transition: 0.2s ease-in-out;
}

/* location map  */

.contact-locations {
  padding: 100px 0;
  background: #f8f8f8;
}
.contact-locations h2 {
  text-align: center;
}
.contact-subText p {
  color: #008aff;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-align: center;
}

.location-container {
  gap: 20px;
  background: #f7f7f7;
  width: 90%;
  margin: auto;
  margin-top: 4em;
}

.location-card {
  background: #fff;
  padding: 20px 20px 40px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.location-icon {
  background: #c8d4e8;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -42px;
}

.location-icon img {
  width: 35px;
  height: 35px;
}

.location-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #222d39;
  margin-top: 1.8em;
}

.location-card p {
  font-size: 16px;
  margin: 18px 0;
  color: #1c1c1c;
}
p.location-Add {
    min-height: 74px;
}

.location-card a {
  color: #226ce0;
  text-decoration: none;
}

.map-button {
  display: block;
  margin-top: 15px;
  padding: 14px;
  background: #226ce0;
  border-radius: 4px;
  font-size: 14px;
  color: #ffffff !important;
  text-align: center;
}

/* contact media query starts  */
@media (max-width: 767px) {
  .contactPageform {
    padding: 60px 0;
  }

  .contactPageform .contact-form {
    width: 100%;
    padding: 25px;
    margin: 50px auto 10px;
  }

  .contact-locations {
    padding: 60px 0;
  }
  .location-container {
    gap: 60px;
    width: 100%;
  }
}

@media only screen and (max-width: 900px) {
#myVideo {
height: 85vh !important;
  }
}




/* ============ ZDviewer  page ============ */

.zdviewer_banner {
  background: url(./images2/hero-digital-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 60vh; */
  width: 100%;
}

.zd-first-sec {
  padding: 70px 0;
}

.zdvideo {
  width: 50%;
}

.zdvideo video {
  border-radius: 4px;
}
.zd-first-sec .global_title {
  padding: 0 0 20px 0;
}
.zdvideo-btn {
  margin-top: 2em;
}

.zd-sticky {
  position: sticky;
  top: 300px;
}

.zd-cards-cards {
  padding: 100px 0;
}
.zd-cards .column-2 {
  grid-template-columns: 45% 1fr;
  gap: 30px;
}

.zd-cards h2 {
  margin-bottom: 0.4em;
}

.zd-cards .grid-item {
  padding: 20px;
  margin-bottom: 15px;
}

.zdsteps-card {
  padding: 70px 0 100px;
  background: #ffffff;
}

.zdsteps-card h2 {
  margin-bottom: 1em;
}

.zdsteps-card .card-1 {
  gap: 20px;
}

.zdsteps-card .grid-item {
  padding: 40px;
  text-align: left;
}

.zdsteps-card .grid-item {
  background: #f8f8f8;
}

.zd-benefits {
  padding: 70px 0 100px;
  background: #f8f8f8;
}

.zd-benefits h2 {
  margin-bottom: 1em;
}

.zd-benefits .card-1 {
  gap: 20px;
}

.zd-benefits .grid-item {
  /* padding: 40px; */
  padding: 20px 25px 10px;
  text-align: left;
}
.zd-benefits ul li {
  margin-bottom: 1em;
}

.zd-benefits ul li::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: -30px;
  background-image: url(images2/circleList.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.zd-benefits ul {
  margin-top: 1em;
  margin-left: 1em;
}

.zdvideo2 {
  position: relative;
  overflow: hidden;
  height: 600px;
  padding: 70px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.zdvideo2 .zdvideo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.zdvideo2 .container {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.zdvideoText {
  font-size: 20px;
  line-height: 39px;
  font-weight: 400;
}

.zd-marq{
    overflow: hidden;
    padding:70px 0;
}
.zd-slides{
    text-align:center;
}
.zd-slides h2{
    padding-bottom:0.3em;
}

.zd-slides p{
    padding-bottom:2em;
}

.marquee-left-zd {
  display: flex;
  align-items: center;
  animation: zd-left 40s linear infinite;
  gap: 1rem;
  width: 70%;
}

.marquee-l-zd {
    flex: 0 0 23vw;
    padding: 0;
    position: relative;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: auto;
    text-align: center;
}

.marquee-l-zd img {
 height: 15em;
}

.marquee-left-zd:hover {
  animation-play-state: paused;
}

@keyframes zd-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-144vw);
  }
}

/*marquee zd right */

.marquee-right-zd {
  display: flex;
  align-items: center;
  animation: zd-right 40s linear infinite;
  gap: 1rem;
  width: 70%;
}

.marquee-r-zd {
    flex: 0 0 23vw;
    padding: 0;
    position: relative;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin: auto;
    text-align: center;
    margin-top:1em;
}

.marquee-r-zd img {
 height: 15em;
}

.marquee-right-zd:hover {
  animation-play-state: paused;
}

@keyframes zd-right {
  0% {
    transform: translateX(-144vw);
  }
  100% {
    transform: translatex(0);
  }
}

/* zdviewer media query  */

@media (max-width: 767px) {
  .zd-first-sec {
    padding: 50px 0 100px;
  }
  .zd-cards .column-2 {
    grid-template-columns: auto;
  }
  .zd-cards {
    padding: 70px 0;
  }
  .zdsteps-card {
    padding: 50px 0 70px;
  }
  .zd-benefits {
    padding: 50px 0 70px;
  }
  
  .zdvideo2 .container{
    padding: 60px 0px;
  }
  .zdvideoText {
    font-size: 18px;
    line-height: 32px;
}
.zdvideo {
    width: 100%;
}

  }

