@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none !important;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
ul {
  padding: 0 !important;
  margin: 0 !important;
}
li {
  list-style: none;
}
p {
  margin: 0;
}
html,
body {
  scroll-behavior: auto !important;
}
body {
  font-family: "Montserrat", sans-serif !important;
  scroll-behavior: smooth;
  height: 100%;
}
html.no-scroll,
body.no-scroll {
  overflow-y: hidden !important;
  touch-action: none; /* Prevents scroll on touch devices */
  height: 100vh !important;
  position: fixed !important;
  width: 100%;
}
body::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
  background-color: #fff;
  border-radius: 10px;
}
body::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(0, 203, 253)),
    color-stop(0.72, rgb(17, 187, 255)),
    color-stop(0.86, rgb(40, 159, 238))
  );
}

/* .container {
  max-width: 1370px !important;
} */
.d_flex_center_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ====================================== */

/* ======== Cursor Css ======= */
.cursor {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  border: 2px solid #01a9eb;
  background: transparent;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}

/* Pulse effect (scale) */
.cursor::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #01a9eb;
  animation: pulse 1s infinite ease-in-out;
  top: 0;
  left: 0;
  transform: scale(1);
}

/* Click expand effect */
.cursor.expand::before {
  animation: clickExpand 0.4s ease-out forwards;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes clickExpand {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(2.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Fullscreen dark background */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1a1a1a; /* Or your background color */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}
#loader-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Centered layout */
.loader-content {
  text-align: center;
}

/* Floating icon */
.logo-icon {
  width: 60px;
  margin-bottom: 20px;
  animation: floatIcon 2s ease-in-out infinite;
}

/* Text wrapper */
.border-glow-text {
  font-size: 56px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  gap: 20px; /* ← space between letters */
  letter-spacing: 4px;
  font-family: "Arial Black", sans-serif;
}

.border-glow-text span {
  color: transparent;
  position: relative;
  -webkit-text-stroke: 1.2px #00baff;
  opacity: 0.3;
  animation: glowBorder 1.8s ease-in-out infinite;
}

/* Trail delay per letter stays same */
.border-glow-text span:nth-child(1) {
  animation-delay: 0s;
}
.border-glow-text span:nth-child(2) {
  animation-delay: 0.15s;
}
.border-glow-text span:nth-child(3) {
  animation-delay: 0.3s;
}
.border-glow-text span:nth-child(4) {
  animation-delay: 0.45s;
}
.border-glow-text span:nth-child(5) {
  animation-delay: 0.6s;
}
.border-glow-text span:nth-child(6) {
  animation-delay: 0.75s;
}

@keyframes glowBorder {
  0%,
  100% {
    opacity: 0.3;
    text-shadow: none;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 3px rgba(0, 186, 255, 0.6), 0 0 6px rgba(0, 186, 255, 0.3);
  }
}

/* Icon hover float */
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Lenis Animation */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s; /* 0.3s delay */
}
.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in-img {
  opacity: 0;
  filter: blur(15px);
  transform: scale(1.2); /* Start slightly zoomed out */
  transition: opacity 1s ease-out, filter 1s ease-out, transform 1s ease-out;
}
.animate-fade-in-img.visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1); /* Zoom in to normal size */
}

/* ========= Header CSS Start ======== */
.header {
  position: fixed;
  top: 10px;
  width: 100%;
  z-index: 999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}
.header_left_sect img {
  width: 120px;
}
.header.active::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 5em;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.65625em);
  -webkit-backdrop-filter: blur(0.65625em);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.header.active .header_section .header_left_sect a img {
  width: 100px;
}
.header.active .header_section .header_right_sect nav ul li a {
  font-size: 17px;
  padding: 10px;
  font-weight: 500;
}
.header.active .header_section .header_right_sect nav ul li a.cta {
  height: 50px;
}
.header_section {
  padding: 10px 0;
}
.header_right_sect ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_right_sect nav ul li a {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.header_right_sect li a:hover {
  color: #01a9eb;
}
.cta {
  background: #00317b;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 30px !important;
  width: max-content;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease-in-out;
}
.cta:hover {
  background: #01a9eb !important;
  color: #fff !important;
  /* box-shadow: 0px 0px 15px 4px #01a9eb; */
  border-radius: 50px !important;
  border: none !important;
  transform: scale(1.02);
}
.all_nav_links li a.cta {
  padding: 0 70px;
}
/*  */

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
}
.header_right_sect nav ul li:hover > a {
  border-radius: 0;
  color: #01a9eb;
  border-bottom: 2px solid;
}
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 90%;
  width: 85%;
  margin: auto;
  background: #fff;
  padding: 40px 100px;
  border-radius: 50px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in;
  z-index: 999;
}
.hedaer.sticky .mega-menu {
  top: 100%;
}
.menu-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  max-width: 100%;
  margin: auto;
}

.tabs-column {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab {
  font-size: 30px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.tab.active {
  background: #e0e0e0;
  font-weight: 700;
  font-size: 30px;
}

.content-column {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 0 0;
}

.tab-content {
  display: none;
  width: 100%;
}

.tab-content.active {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  column-count: 4;
}

.tab-box ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style-type: disc;
  padding-left: 50px !important;
  align-items: flex-start;
}
.industry_links .tab-box ul {
  display: none;
}

.industry_menu_links {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.industry_menu_links ul {
  flex-direction: column;
  align-items: flex-start;
  width: 400px;
}

.industry_menu_links ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.industry_menu_links ul li a {
  color: #1a1a1a !important;
  border: none !important;
}

.industry_video video {
  width: 100%;
  border-radius: 30px;
}

.industry_video {
  width: 500px;
}
.industry_build_content.accordion {
    gap: 5px;
}
.tab-box ul li {
  list-style: disc;
}
.tab-box ul li:hover > a {
  color: #00317b !important;
  transform: translateX(4px);
}
.tab-box {
  width: calc(33.333% - 160px);
}

.tab-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
}
.tab-box h4 a {
  color: #0a0a0a !important;
}
.tab-box h4 i {
  width: 20px;
}

.tab-box ul li a {
  font-size: 14px !important;
  color: #505050 !important;
  padding: 0 !important;
}
.stellarnav {
  display: none;
}
.stellar_nav_logo img {
  width: 60px;
  position: absolute;
  top: 10px;
  left: 18px;
}
.stellar_nav_logo {
  display: flex;
  height: 30px;
}

/* ============ Hero Section CSS =========== */
.hero_section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  background: url("../images/hero_bg.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.hero_section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    to bottom,
    rgb(0 0 0 / 69%) 0%,
     rgb(0 0 0 / 32%) 40%,
     rgb(255 255 255 / 17%) 70%,
     rgba(255, 255, 255, 1) 100%
      White bottom 30vh
  ); */
  background: linear-gradient(
    to bottom,
    rgb(0 0 0 / 88%) 0%,
    /* Top left area (strong black) */ rgb(0 0 0 / 63%) 40%,
    /* Top right-ish area (lighter black) */ rgb(255 255 255 / 0%) 70%,
    /* Transparent before white fade starts */ rgba(255, 255, 255, 1) 100%
      /* White bottom 30vh */
  );
}
.background_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}
.hero_section .index_sect1_content .title {
  height: 150px;
}
.title {
  font-size: 50px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: -4px;
  line-height: 1;
}
.title span {
  font-size: 100px;
  color: #01a9eb;
  font-weight: 700;
}
.paragraph {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.index_sect1_content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}
.index_sect1_content .paragraph {
  width: 100%;
  max-width: 650px;
  position: relative;
  margin: 30px 0;
}
.index_sect1_content .paragraph:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 5px;
  background: #fff;
  top: -10px;
}
/* ======== Index Section 2 CSS ======== */
.index_section2 {
  position: relative;
  z-index: 1;
  /* background: #f9f9f9; */
}
.index_section2 .index_tabs_section {
  width: 95% !important;
}
.title_section {
  text-align: center;
}
.boldTitle {
  font-size: 60px;
  color: #0a0a0a;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1;
}
.title_section .paragraph {
  padding: 0 170px;
  color: #0a0a0a;
  font-weight: 400;
}
/* ========= Index Tab Section CSS ========= */
.index_tabs_section {
  width: 100%;
  max-width: 95%;
  margin: auto;
  background-color: #0a0a0a;
  border-radius: 60px;
  padding: 80px 0 60px;
  transition: width 0.6s ease-out; /* Optional fallback */
}
.index_tabs_section .boldTitle {
  color: #fff;
  line-height: 1.2;
}
.index_tabs_section .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  height: 200px;
  width: 200px;
  font-size: 20px;
  color: #989ea5;
  font-weight: 600;
  border: 0;
  outline: none;
  box-shadow: none;
  margin-bottom: -2px;
}
.index_tabs_section .nav {
  justify-content: space-between;
}
.index_tabs_section .nav-tabs .nav-link.active {
  background: transparent;
  border: 0;
  border-bottom: 3px solid #00317b;
  color: #fff;
}
.index_tabs_section .tab-content {
  display: block;
}
.index_tabs_section .paragraph {
  color: #fff;
  font-weight: 400;
  padding: 30px 0px;
}
.index_tabs_section .btn_section .cta {
  width: 230px;
}
.tab_title {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
}
.tabs_content {
  padding: 50px 0 0;
}
.btn_section {
  display: flex;
  align-items: center;
  justify-content: end;
}
.btn_section .cta {
  padding: 0 80px;
}
/* ========= Index Card Section CSS ========= */
.index_card_section {
  position: relative;
  padding: 70px 0 0;
  /* background: #f9f9f9; */
  overflow-x: hidden;
}
.index_card_section .title_section {
  margin: 0 auto;
}
.index_card_section .title_section .paragraph {
  padding: 10px 50px;
  color: #0a0a0a;
  max-width: 850px;
  margin: 0 auto;
  font-weight: 400;
}
.paraBold {
  font-size: 20px;
  font-weight: 700;
  color: #00317b;
  margin: 0;
  padding: 0;
}
.blue_card {
  background: #00317b;
  padding: 30px 40px;
  border-radius: 30px;
  height: 100%;
  color: #ffffff;
  transition: background 0.4s ease, transform 0.4s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blue_card:hover {
  background: #01a9eb;
}
.card_title_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.4s ease;
  z-index: 2;
  transform: translateY(70px);
  padding: 0;
}
.blue_card:hover .card_title_section {
  transform: translateY(-10px);
}
.blue_card .paragraph {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  position: relative;
  z-index: 1;
  text-align: left;
  font-size: 19px;
  font-weight: 400;
}
.blue_card:hover .paragraph {
  opacity: 1;
  transform: translateY(0);
  margin-top: 0;
}

.about_core_values .card_title_section {
  transform: translateY(45px);
}
.about_core_values .vector_star {
  top: 56%;
}
.index_card_section .row {
  width: 85%;
  margin: 50px auto 0;
  position: relative;
  z-index: 2;
}
.card_title {
  font-size: 45px;
  color: #fff;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.card_num {
  font-size: 80px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  right: 20px;
  top: 0px;
}
.card_title_section .card_title {
  width: 70%;
}
.explore_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.explore_btn .cta {
  width: 220px;
}
.vector {
  position: absolute;
}
.vector_1 {
  position: absolute;
  top: 25px;
  right: 0;
  width: 435px;
  z-index: 1;
  transform: translateX(50px) translateY(-100%);
  opacity: 0;
  transition: transform 1.2s ease-out, opacity 1s ease-out;
}
.vector_1.animate-in {
  transform: translateX(0) translateY(0);
  opacity: 1;
}

.vector_2 {
  bottom: 100px;
  right: 0;
  width: 310px;
  z-index: 0;
}
.vector_star {
  left: 49%;
  top: 59%;
  animation: twinklePulse 2s infinite ease-in-out,
    starGlow 3s infinite ease-in-out;
}
@keyframes starGlow {
  0% {
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
  }
  50% {
    transform: rotate(10deg) scale(1.2);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  }
  100% {
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
  }
}
@keyframes twinklePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}
/* ======== Index Project BG Black Section ========= */
.index_project_section {
  position: relative;
  padding: 50px 0;
}
.why_work_rowSec {
  text-align: center;
  max-width: 65%;
  margin: 0 auto;
}
.why_work_rowSec .boldTitle {
  width: 100%;
}
.digital_marketing_wrapper .why_work_rowSec .paragraph {
  width: 100% !important;
}
.index_project_section .title_section h2 {
  color: #fff;
}
.index_project_section .title_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 70%;
  margin: auto;
}
.vector_3 {
  top: -200px;
  left: 110px;
  width: 320px;
  height: auto;
  animation: bounceOnly 5s infinite;
  animation-timing-function: linear;
}
@keyframes bounceOnly {
  0% {
    transform: translateY(0);
    animation-timing-function: ease-in;
  }

  /* Bounce up */
  20% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  30% {
    transform: translateY(-40px);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  40% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  55% {
    transform: translateY(-25px);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  65% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  80% {
    transform: translateY(-10px);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  90% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========== Who We Are Section CSS ========== */
.index_who_we_are {
  width: 100%;
  background: #f5f5f5;
}

.who_we_are_container {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.who_we_are_left {
  width: 40%;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.who_we_are_right {
  width: 60%;
  padding: 100px 40px;
}

.who_we_are_card_scroll {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 10vh;
}

.card-pair {
  display: flex;
  gap: 30px;
  min-height: 100vh;
  margin-top: 300px;
}
.card-pair:nth-of-type(2) {
  margin-top: 0px;
}

.who_we_are_cardSection_left,
.who_we_are_cardSection_right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.index_who_we_are .title_section {
  text-align: left;
  padding-right: 0px;
  padding-top: 70px;
}
.index_who_we_are .title_section .paragraph {
  padding: 0;
}
.index_who_we_are .title_section .boldTitle {
  font-size: 80px;
}
.index_who_we_are .title_section .cta {
  padding: 0 70px;
}
.index_who_we_are .paragraph {
  color: #0a0a0a;
}
.who_we_are_cards {
  background: linear-gradient(145deg, #00317b, #002766);
  padding: 30px;
  border-radius: 30px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  height: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.who_we_are_cards img,
.who_we_are_cards .textBold {
  transition: transform 0.4s ease;
}
.who_we_are_cards .paragraph {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 15px;
}
.who_we_are_cards:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.who_we_are_cards:hover img {
  animation: rs-fold linear 0.3s;
}
@keyframes rs-fold {
  0% {
      transform: rotateY(0);
  }
  50% {
      transform: rotateY(90deg);
  }
  100% {
      transform: rotateY(0);
  }
}
.who_we_are_cards:hover .paragraph {
  opacity: 1;
  transform: translateY(0);
}
.who_we_are_cards::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(
    120deg,
    rgba(0, 123, 255, 0.6),
    rgba(0, 212, 255, 0.3)
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.who_we_are_cards:hover::before {
  opacity: 1;
}
.who_we_are_cards::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease-in-out;
  pointer-events: none;
}
.who_we_are_cards:hover::after {
  left: 125%;
}
.textBold {
  font-size: 35px;
  color: #fff;
  font-weight: 700;
  margin: 0;
  padding: 20px 0 5px;
  line-height: 1.2;
}
.who_we_are_cards .paragraph {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}
.who_we_are_cardSection_right {
  margin-top: 90px;
}
/* =========== How We Are Section CSS ========== */
.how_we_work_section {
  position: relative;
  padding: 70px 0 0;
  overflow-x: hidden;
}
.step {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 100px;
}
.timeline_title {
  font-size: 50px;
  color: #00317b;
  font-weight: 700;
}
.step_content {
  width: 45%;
}
.step_content .paragraph {
  color: #505050;
}
.step .paragraph {
  color: #505050;
  font-weight: 400;
}
.step_icon {
  width: 45%;
  text-align: center;
}
.line_num {
  position: relative;
  background-color: #fff;
  padding: 5px 10px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 50px;
  font-weight: 900;
  color: #0a0a0a;
}
.line_fill {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 0;
  background: #0a0a0a;
  transform: translateX(-50%);
  z-index: -1;
}
/* Timeline vertical line in center */
.timeline-progress {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 0;
  overflow: hidden;
}

/* The actual filled line that grows on scroll */
.progress_fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #0a0a0a;
  transform-origin: top;
}
.how_we_work_timelinesect {
  padding: 50px 0 0;
  position: relative;
  margin-top: 50px;
}
.step .line_num::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 400px;
  background: #d9d9d9;
  top: 10px;
  z-index: -1;
}
.step:last-child .line_num::before {
  background: none;
  height: 0;
}
/* =========== Contact Section CSS ============= */
.index_contact_section {
  position: relative;
  padding: 150px 0 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, #0a0a0aeb 50%);
}
.index_contact_section .contact_lets_goSect {
  display: flex;
  align-items: center;
}
.index_contact_section .css_contact_sect .title_section {
  padding-right: 50px !important;
}
.index_contact_section .contact_lets_goSect .title_section {
  text-align: left;
  padding-right: 190px;
}
.SEO_Wrapper .index_contact_section .contact_lets_goSect .title_section {
  padding-right: 50px;
}
.SEO_Wrapper .contact_vector img {
  bottom: -190px;
}
.index_contact_section .contact_lets_goSect .title_section h3 {
  color: #fff;
  text-transform: capitalize;
  max-width: 90%;
  font-size: 60px;
  line-height: 1.2;
}
.index_contact_section .contact_lets_goSect .title_section p {
  color: #fff;
  padding: 0;
  max-width: 90%;
}
.contact_vector {
  width: 40%;
  position: relative;
}
.contact_vector img {
  position: absolute;
  bottom: -176px;
  right: -30px;
  z-index: 1;
  width: 600px;
}
.service_contact_sect .contact_vector img {
  bottom: -190px;
}
.service_contact_sect .contact_vector .web_dev_vector4 {
  bottom: -232px;
}
.service_contact_sect .contact_vector .ai_ml_vector_4 {
  bottom: -211px;
}
.service_contact_sect .contact_vector .ui_ux_vector4 {
  bottom: -226px;
}
.ecommerce_contact_vector .vector_4 {
  bottom: -226px !important;
}
/* =========== Get In Touch Section & Form CSS ============ */
.contact_form_section {
  padding: 70px 0 0;
}
.get_touch_section h3 {
  color: #00abe9;
  text-transform: capitalize;
  letter-spacing: -4px;
  width: 75%;
}
.get_touch_section .paragraph {
  font-size: 19px;
  font-weight: 500;
}
.contact_form {
  background: #fff;
  padding: 50px 30px;
  border-radius: 30px;
  width: 600px;
  margin: -180px 0 0 auto;
}
.contact_form .tab_title {
  color: #0a0a0a;
  text-align: center;
  font-size: 35px;
}
.input_field {
  margin-bottom: 20px;
}
.input_field input {
  background: #f9f9f9;
  border: none;
  height: 65px;
  border-radius: 50px;
  padding: 0 30px;
  outline: none;
  box-shadow: none;
  font-size: 18px;
  color: #1a1a1a;
}
.input_field textarea {
  background: #f9f9f9;
  border: none;
  height: 150px;
  border-radius: 20px;
  padding: 15px 30px;
  outline: none;
  box-shadow: none;
  font-size: 18px;
  color: #1a1a1a;
  resize: none;
}
.form-control:focus {
  background-color: #f9f9f9 !important;
  border-color: #00abe9b5 !important;
  border: none !important;
  outline: 0;
  box-shadow: none !important;
}
.consultaion_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.desktop_vector {
    width: 470px;
    height: 360px;
    object-fit: cover;
}
.mobile_vector {
  display: none;
}
.mobile_vector_sect img {
  width: 100%;
}
.stellarnav.mobile {
  position: absolute !important;
  width: unset !important;
  right: 20px !important;
  bottom: -10px !important;
  background: transparent !important;
}
/* ============== Footer CSS ============= */
footer {
  position: relative;
  background: #0a0a0aeb;
  background-size: cover;
  background-position: 100% 98%;
}
.ft_title {
  font-size: 32px;
  color: #fff;
  font-weight: 400;
}
.ft_title span {
  color: #01a9eb;
  font-weight: 700;
}
.ft_link_title {
  font-size: 25px;
  color: #01a9eb;
  font-weight: 700;
  margin-bottom: 8px;
}
footer .paragraph {
  font-size: 17px;
  font-weight: 400;
}
.ft_left_content p {
  padding-right: 45px;
}
.ft_desc {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.ft_link li {
  padding-bottom: 5px;
}
.ft_link li a {
  font-size: 17px;
  color: #fff;
  font-weight: 400;
}
.ft_link li a:hover {
  color: #00abe9;
}
.ft_loc_section.row {
  border: none;
}
.ft_loc_section .row:first-of-type {
  border-bottom: 1px solid #01a9eb;
}
.ft_loc_section .col-md-6:first-of-type {
  border-right: 1px solid #01a9eb;
}
.copy_right_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #01a9eb;
  margin-top: 5px;
}
.copy_right_text p {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
.ft_socialSect {
  display: flex;
  align-items: center;
  gap: 35px;
}
.contact_social_sect {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ft_nav_links_contact {
  margin-top: -40px;
}
.privacy_terms ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.privacy_terms ul li a {
  font-size: 18px;
  color: #fff;
}
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.reveal-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
.reveal-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-50%);
}

/* ============== Inner Page CSS ================ */

/* Services */
.inner_banner_section {
  position: relative;
  background: url("../images/service_bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  /* height: 1056px; */
  height: 105vh;
  display: flex;
  align-items: center;
}
.inner_banner_section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgb(0 0 0) 0%,
    /* Top left area (strong black) */ rgb(0 0 0 / 88%) 40%,
    /* Top right-ish area (lighter black) */ rgb(0 0 0 / 67%) 70%,
    /* Transparent before white fade starts */ rgba(255, 255, 255, 1) 100%
      /* White bottom 30vh */
  );
  /* background: linear-gradient(
    to bottom,
    rgb(0 0 0) 0%,
    rgb(0 0 0 / 64%) 40%,
    rgb(255 255 255 / 0%) 70%,
    rgba(255, 255, 255, 1) 100%
    White bottom 30vh 
  ); */
}
.mobile_app_service1 {
  background: url("../images/mob_app_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.mobile_app_service1:before {
  background: linear-gradient(
    to bottom,
    rgb(0 0 0 / 84%) 0%,
    /* Top left area (strong black) */ rgb(0 0 0 / 47%) 40%,
    /* Top right-ish area (lighter black) */ rgb(0 0 0 / 67%) 70%,
    /* Transparent before white fade starts */ rgba(255, 255, 255, 1) 100%
      /* White bottom 30vh */
  );
}
.web_dev_service {
  background: url("../images/web_dev_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.web_dev_service::before {
  background: linear-gradient(
    to bottom,
    rgb(0 0 0) 0%,
    /* Top left area (strong black) */ rgb(0 0 0 / 44%) 40%,
    /* Top right-ish area (lighter black) */ rgb(0 0 0 / 77%) 70%,
    /* Transparent before white fade starts */ rgba(255, 255, 255, 1) 100%
      /* White bottom 30vh */
  );
}
.ui_ux_services {
  background: url("../images/ui-ux-banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.ui_ux_services::before {
  background: linear-gradient(
    to bottom,
    rgb(0 0 0) 0%,
    /* Top left area (strong black) */ rgb(0 0 0 / 13%) 40%,
    /* Top right-ish area (lighter black) */ rgb(0 0 0 / 67%) 70%,
    /* Transparent before white fade starts */ rgba(255, 255, 255, 1) 100%
      /* White bottom 30vh */
  );
}
.ai_ml_services {
  background: url("../images/ai_ml_service_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.ai_ml_services::before {
  background: linear-gradient(
    to bottom,
    rgb(0 0 0) 0%,
    rgb(0 0 0 / 32%) 40%,
    rgb(0 0 0 / 67%) 70%,
    rgba(255, 255, 255, 1) 100%
  );
}
.ecomerce_services {
  background: url("../images/e-commerce-banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.ecomerce_services::before {
  background: linear-gradient(
    to bottom,
    rgb(0 0 0) 0%,
    /* Top left area (strong black) */ rgb(0 0 0 / 75%) 40%,
    /* Top right-ish area (lighter black) */ rgb(0 0 0 / 67%) 70%,
    /* Transparent before white fade starts */ rgba(255, 255, 255, 1) 100%
      /* White bottom 30vh */
  );
}
.branding_services {
  background: url("../images/branding_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.seo_banner_sect {
  background: url("../images/seo_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.ppc_banner_sect {
  background: url("../images/ppc_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.socialmedia_banner_sect {
  background: url("../images/social_media_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.socialmediaad_banner_sect {
  background: url("../images/social_media_ad_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.contentmarketing_banner_sect {
  background: url("../images/content_marketing_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.email_marketing_banner_sect {
  background: url("../images/email-marketing-banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.erp_banner_sect {
  background: url("../images/erp_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.crm_banner_sect {
  background: url("../images/crm_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.cms_banner_sect {
  background: url("../images/cms_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.iOS_banner_sect {
  background: url("../images/ios_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.android_banner_sect {
  background: url("../images/android_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.custom_web_banner_sect {
  background: url("../images/custom_web_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.custom_portal_banner_sect {
  background: url("../images/custom_portal_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.ui_design_banner_sect {
  background: url("../images/ui_design_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.ux_design_banner_sect {
  background: url("../images/ux_design_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.predictive_analytics_banner_sect {
  background: url("../images/predictive_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.ai_chatbot_banner_sect {
  background: url("../images/ai_chatbot_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.onlinestore_banner_sect {
  background: url("../images/onlinestore_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.shopify_banner_sect {
  background: url("../images/shopify_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.magento_banner_sect {
  background: url("../images/magento_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.graphicdesign_banner_sect {
  background: url("../images/graphicdesign_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.inner_banner_section .title span {
  font-size: 100px;
}
.service_sect2 .title_section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 20px 0 70px;
}
.we_build_sect {
  flex-direction: row !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 200px;
}
.we_build_sect .paragraph {
  padding: 0;
  font-weight: 400;
}
.inner_banner_section .index_sect1_content .paragraph {
  max-width: 75%;
}
.servies_section {
  width: 100%;
  max-width: 95%;
  margin: auto;
  border-radius: 50px;
  padding: 50px 0;
  margin-bottom: 50px;
}
.service_bg_dark {
  background-color: #0a0a0a;
}
.servies_section .boldTitle {
  color: #fff;
  font-size: 50px;
  padding-right: 200px;
}
.servies_section .row {
  align-items: center;
}
.service_bg_blue {
  background: #00317b;
}
.services_imgs {
  text-align: center;
}
.services_content,
.services_imgs {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.services_imgs img {
  width: 300px;
}
.getQuote_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_tech_stack .title_section {
  max-width: 40%;
}
.service_tech_stack .vector.vector_3 {
  left: unset;
  right: 100px;
  width: 250px;
  top: 0;
}
.mob_service_tech_stack .title_section {
  max-width: 70%;
  text-transform: capitalize;
}
.mob_service_tech_stack .vector.vector_3 {
  left: unset;
  right: 100px;
  width: 200px;
  top: 0;
}
.mob_service_tech_stack .title_section .cta {
  width: 350px;
}
.service_tech_stack .title_section .cta {
  width: 300px;
}
.industries_section .boldTitle {
  font-size: 60px;
  text-transform: none;
}
.industries_section .paragraph {
  font-weight: 400;
  padding: 10px 100px 0;
}
.industries_section {
  padding: 30px 0 70px;
}
.industries_section .title_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.industries_section .who_we_are_cards .paragraph {
  padding: 0;
}
.healthcare_cards .textBold {
  font-size: 40px;
}
.industries_card_section {
  padding: 0 170px;
}
.industries_card_section .row {
  align-items: center;
}
.services_industry_card_sect .row {
  align-items: center;
}
.services_industry_card_sect .row .who_we_are_cards {
  height: 300px;
}
.startup_saas_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.startup_saas_btn .cta {
  background: #1a1a1a;
}

/* =========== About CSS ============ */
.about_us_banner {
  background: url("../images/about_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.about_us_banner::before {
  background: linear-gradient(
    to bottom,
    rgb(0 0 0) 0%,
    /* Top left area (strong black) */ rgb(0 0 0 / 40%) 40%,
    /* Top right-ish area (lighter black) */ rgb(0 0 0 / 67%) 70%,
    /* Transparent before white fade starts */ rgba(255, 255, 255, 1) 100%
      /* White bottom 30vh */
  );
}
.about_us_banner .index_sect1_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about_content {
  text-align: end;
  padding-top: 100px;
}
.about_content .paragraph {
  color: #505050;
  font-weight: 400;
  font-size: 18px;
}
.about_img img {
  width: 100%;
  margin-top: -60px;
}
.about_img_mob {
  display: none;
}
.about_story_section .row {
  display: flex;
  align-items: center;
}
.story_content .paragraph {
  color: #505050;
  font-weight: 400;
  font-size: 18px;
}
.story_img img {
  width: 100%;
  border-radius: 40px;
  object-fit: cover;
  object-position: center;
}
.about_contact_vector img {
  bottom: -190px !important;
  right: 0;
}
.crm_contact .contact_vector img {
  bottom: -205px;
  right: 0;
}
.andriod_dev_contact .contact_lets_goSect .title_section {
  padding-right: 170px;
}
.andriod_dev_contact .contact_vector img {
  bottom: -205px;
  right: 0;
}
/* Marquee CSS */

.logoMarqueeSection {
  padding-top: 10vh;
  padding-bottom: 15vh;
}

.default-content-container {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  width: 100%;
  min-height: 100vh;
}

div.marquee > a > img {
  height: 50px;
}

.logoMarqueeSection > div > div {
  padding: 0;
  min-height: 0;
}
#logoMarqueeSection {
  overflow: hidden;
}
.marquee-wrapper {
  display: inline-block;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee a {
  display: inline-block;
  white-space: nowrap;
  padding-right: 5.4rem;
}

.marquee-wrapper:hover .marquee {
  animation-play-state: paused !important;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.service_tech_sect {
  position: relative;
  padding: 70px 0 20px;
  /* background: #f9f9f9; */
}
.service_tech_sect .boldTitle {
  text-transform: capitalize;
  font-size: 60px;
}
/* ============= */
.diggit_work_card {
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 25px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: translateY(0);
  cursor: pointer;
}
.diggit_work_card:hover {
  background: linear-gradient(135deg, #eaf6ff, #ffffff);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 49, 123, 0.2);
}

/* Title animation */
.diggit_work_card .textBold {
  color: #00317b;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.2;
  text-transform: capitalize;
  transition: color 0.3s ease;
}
.diggit_work_card:hover .textBold {
  color: #007acc; /* Change to a more vibrant blue on hover */
}
/* Paragraph fade-in effect */
.diggit_work_card .paragraph {
    color: #1a1a1a;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}
.diggit_work_card:hover .paragraph {
  opacity: 0.9;
  transform: translateY(-3px);
}
.why_work_withus_sect p {
  color: #505050;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
.why_work_withus_sect .row {
  padding: 0 160px;
}
.SEO_Wrapper .diggit_work_card .paragraph {
  font-size: 17px;
}
.SEO_Wrapper .diggit_work_card {
  padding: 20px;
}

/* Service How We Work CSS */

.service_how_we_work_sect {
  position: relative;
  padding: 70px 0;
}
.how_we_work_bgBlue {
  background: #00317b;
  padding: 30px;
  border-radius: 50px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.how_we_work_img_mb {
  display: none;
}
.left_bgBlue {
  margin-left: -150px;
  width: 800px;
}
.right_bgBlue .title span {
  font-size: 65px !important;
}
.right_bgBlue {
  padding-top: 0;
  width: calc(100% - 150px);
}
.row_inner_boxes .textBold {
  font-size: 40px;
  padding-top: 0px;
}
.right_bgBlue .paragraph {
  font-weight: 400;
  font-size: 16px;
}
.row_inner_boxes {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  cursor: pointer;
  margin-top: 20px;
}
.row_inner_boxes:hover {
  background: linear-gradient(135deg, #00abe9 0%, #0083b0 100%);
  box-shadow: 0 8px 25px rgba(0, 171, 233, 0.3);
}
.left_bgBlue img {
  width: 100%;
}
.row_left_numSect span img {
  margin-bottom: 0;
  width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

.row_inner_boxes:hover .row_left_numSect span img {
  transform: scale(1.1);
}
.row_inner_boxes .row_left_numSect {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.4s ease;
  min-width: 100px;
}
.row_inner_boxes:hover .row_left_numSect {
  transform: translateX(0);
  opacity: 1;
}
.row_inner_boxes::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.row_inner_boxes:hover::before {
  left: 100%;
}

/* ======== Digital-Marketing-Solutions ========= */

.Digital-Marketing-Solutions-wrapper {
  background: url("../images/Digital-Marketing-Solutions.png") no-repeat;
  background-size: cover;
  background-position: right;
}
.how_we_work_btn {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 20px 0 10px;
}
.how_we_work_btn .cta {
  background: #00abe9;
  width: max-content;
  padding: 0 30px;
}
.digital_marketing_work_card .textBold {
  font-size: 30px;
  line-height: 1;
}
.finance_fintech_wrapper .industry_work_withUs .title_section .paragraph {
    padding: 0 100px;
}
/* ============================= */
.rounded_title_sect {
  text-align: center;
  padding: 30px 0 0;
}

.rounded_title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.rounded_title span {
  width: 70px;
  height: 70px;
  border: 1px solid #00abe9;
  color: #00abe9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: bounceBackground 3s infinite ease-in-out;
}

/* Slower staggered delays */
.rounded_title span:nth-child(1) {
  animation-delay: 0s;
}
.rounded_title span:nth-child(2) {
  animation-delay: 0.4s;
}
.rounded_title span:nth-child(3) {
  animation-delay: 0.8s;
}
.rounded_title span:nth-child(4) {
  animation-delay: 1.2s;
}
.rounded_title span:nth-child(5) {
  animation-delay: 1.6s;
}
.rounded_title span:nth-child(6) {
  animation-delay: 2s;
}

@keyframes bounceBackground {
  0%,
  100% {
    transform: translateY(0);
    background-color: transparent;
    color: #00abe9;
  }
  30% {
    transform: translateY(-10px);
    background-color: #00abe9;
    color: white;
  }
  60% {
    transform: translateY(5px);
  }
}

.bg_gray_box {
  background: #f9f9f9;
  width: 800px;
  margin: 30px auto;
  padding: 40px;
  border-radius: 30px;
  text-align: left;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.bg_gray_box:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 171, 233, 0.2);
  box-shadow: 0 25px 50px rgba(0, 171, 233, 0.1);
}

.bg_gray_box .paragraph {
  color: #505050;
  font-size: 17px;
  font-weight: 400;
}
.btn_sect {
  display: flex;
  justify-content: center;
}
.service_dotted_sect {
  padding: 30px 0;
}
.service_dotted_sect .paragraph {
  font-weight: 400;
}

/* ============= Service Arrow Card Section CSS ============ */

.service_arrow_section .title_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service_arrow_section .title_section .boldTitle {
  width: 100%;
  text-align: left;
  font-size: 50px;
}
.service_arrow_section .title_section .paragraph {
  width: 100%;
  text-align: left;
  padding: 0;
  font-weight: 400;
}
.service_arrow_card {
  text-align: left;
  padding-right: 90px;
}
.arrow_bgblack {
  position: absolute;
  top: 20px;
  right: 20px;
}
.arrow_bgblack img {
  width: 60px;
}

/* ============= FAQ ============== */

.FAQ_section {
  position: relative;
  padding: 70px 0;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordion-item {
  background-color: #f9f9f9 !important;
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}
.accordion-button:focus {
  border: none !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: #0a0a0a !important;
  background-color: #f9f9f9 !important;
  box-shadow: none !important;
  font-size: 45px !important;
  font-weight: 700;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 100px !important;
  font-size: 38px !important;
  color: #212529;
  text-transform: capitalize;
  font-weight: 700;
  text-align: left;
  background-color: #f9f9f9 !important;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}
.accordion-body {
  padding: 20px 110px !important;
}
.accordion-body .paragraph {
  color: #505050;
  font-size: 17px;
  font-weight: 400;
}
.accordion-button::after {
  position: absolute;
  right: 50px;
  background-image: url("../images/arrow.png") !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../images/arrow.png") !important;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button::after {
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.accordion-body {
  padding: 0 30px 24px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  background-color: transparent;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
}
/* ========= PPC ======= */
.ppc_contact .contact_lets_goSect .title_section h3 {
  font-size: 55px;
}
.ppc_contact .contact_lets_goSect .title_section .paragraph {
  padding-right: 150px;
}
/* Contact Vector */
.ppc_contact .contact_vector img {
  bottom: -214px;
}
.iOS_contact .contact_vector img {
  bottom: -211px;
  right: 0;
}
.custome_web_contact .contact_vector img {
  bottom: -241px;
  right: 0;
}
.ai_chatbot_contact .contact_vector img {
  bottom: -211px;
}
.predictive_contact .contact_vector img {
  bottom: -205px;
  right: 0;
}
.content_marketing_contact .contact_vector img {
  bottom: -241px;
  right: 0;
}
.email_marketing_contact .contact_vector img {
  bottom: -199px;
  right: 0;
}
.social_media_management_contact .contact_vector img {
  bottom: -185px;
  right: 0;
}
/* ======== CLIENT FEEDBACK SERVICES ========== */

.client-facing-problems {
  position: relative;
  z-index: 2;
}

.client-facing-problems .container .top-sec {
  height: 100vh;
  min-height: 800px;
  padding-top: 100px;
  box-sizing: border-box;
  align-content: space-evenly;
  max-height: 1000px;
}

.client-facing-problems .container .top-sec h3 {
  text-align: left;
  margin-bottom: 100px;
  width: 80%;
  font-size: 50px;
  line-height: 50px;
  margin: 0 0 200px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  text-transform: uppercase !important;
}

.client-facing-problems .container .top-sec h2 * {
  text-align: right;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  width: 100%;
  margin: 0 0 0 auto;
  max-width: 500px;
  text-transform: uppercase;
}

.client-facing-problems .container .top-sec h2 * strong {
  color: #26abf4 !important;
  font-weight: 700;
}

.client-facing-problems .container .cards-wrapper {
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 50px;
  max-width: 100%;
  margin: 0 auto;
}

.client-facing-problems .container .cards-wrapper .cards {
  padding: 0;
}

.client-facing-problems .container .cards-wrapper .cards .card-wrapper {
  width: 100%;
  perspective: 500px;
  margin-bottom: 50px;
}

.client-facing-problems .container .cards-wrapper .cards .card-wrapper .card {
  max-width: fit-content;
  width: 90%;
  margin: 0 auto;
  height: 500px;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  border-radius: 10px;
  border: 1px solid;
  background: #fff;
  border-radius: 50px;
}

.client-facing-problems
  .container
  .cards-wrapper
  .cards
  .card-wrapper
  .card.gradient-red {
  display: none;
}

.client-facing-problems
  .container
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .list-icon {
  text-align: center;
  z-index: 1;
  align-self: end;
}

.client-facing-problems
  .container
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .list-icon
  img {
  width: 70%;
  margin: 0 auto;
  max-width: 180px;
  object-fit: contain;
  object-position: center;
}

.client-facing-problems
  .container
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .list-text {
  text-align: center;
  width: 90%;
  margin: 0 auto auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
  z-index: 1;
}

.client-facing-problems
  .container
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .list-text
  h3 {
  line-height: 100%;
  color: #030304;
}

.client-facing-problems
  .container
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .list-text
  .body-text {
  max-width: 650px;
  margin: 0 auto;
}

.client-facing-problems
  .container
  .cards-wrapper
  .cards
  .card-wrapper
  .card
  .list-text
  .body-text
  * {
  color: #030304;
  font-size: 20px;
}

@media only screen and (min-width: 1200px) {
  .client-facing-problems .container .cards-wrapper .cards .card-wrapper .card {
    grid-template-columns: 350px 1fr;
    grid-column-gap: 60px;
  }

  .client-facing-problems
    .container
    .cards-wrapper
    .cards
    .card-wrapper
    .card
    .list-icon
    img {
    max-width: 200px;
  }
}

@media only screen and (min-width: 768px) {
  .client-facing-problems .container .cards-wrapper .cards .card-wrapper .card {
    padding: 0 5%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-column-gap: 30px;
  }

  .client-facing-problems
    .container
    .cards-wrapper
    .cards
    .card-wrapper
    .card
    .list-icon {
    align-self: center;
  }

  .client-facing-problems
    .container
    .cards-wrapper
    .cards
    .card-wrapper
    .card
    .list-text {
    text-align: left;
    margin: 0 auto;
  }

  .client-facing-problems
    .container
    .cards-wrapper
    .cards
    .card-wrapper
    .card
    .list-text
    h3 {
    font-size: 50px;
    /* max-width: 500px; */
  }

  .client-facing-problems
    .container
    .cards-wrapper
    .cards
    .card-wrapper
    .card
    .list-text
    .body-text {
    margin: 0;
  }
}

@media only screen and (min-width: 576px) {
  .client-facing-problems {
    position: relative;
    z-index: 2;
  }

  .client-facing-problems .container .top-sec h3 {
    font-size: 60px;
    line-height: 60px;
  }

  .client-facing-problems .container .top-sec h2 * {
    font-size: 50px;
    line-height: 60px;
  }

  .client-facing-problems
    .container
    .cards-wrapper
    .cards
    .card-wrapper
    .card
    .list-icon
    img {
    max-width: 120px;
    height: auto;
  }

  .client-facing-problems
    .container
    .cards-wrapper
    .cards
    .card-wrapper
    .card
    .list-text
    h3 {
    font-size: 40px;
  }
}

.card.dark-bg-1 {
  background-color: #0a0a0a !important;
  color: #fff;
}
.card.dark-bg-2 .cta {
  background: #fff;
  color: #00317b !important;
}
.card.dark-bg-2 {
  background-color: #00317b !important;
  color: #fff;
}

.card.dark-bg-1 *,
.card.dark-bg-2 * {
  color: #fff !important;
}

.card {
  grid-template-columns: 1fr 250px !important;
  /* Reversed layout: text | image */
}

.card .list-icon {
  text-align: right;
}

@media (max-width: 768px) {
  .card {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .card .list-icon {
    order: -1;
    margin-bottom: 20px;
  }
}

.client-facing-problems .cards .card-wrapper .card {
  width: 100% !important;
  max-width: 1400px !important;
}

/*  */

/* ============ GACS CSS ============ */
.gacs_industries_section {
  position: relative;
  padding: 50px 0px;
}
.gacs_industries_section .title_section .paragraph {
  font-weight: 400;
  color: #505050;
  padding: 0 250px;
}
.gacs_industries_section .title_section {
  padding: 0 0 50px;
}
.gacs_banner_sect {
  background: #1a1a1a;
  height: 105vh;
  overflow: hidden;
}
.gacs_banner_sect::before {
  right: -90px;
  top: 322px;
  border-radius: 0;
  width: 60%;
  background: radial-gradient(
    circle,
    rgb(0 177 255) 15%,
    rgb(26 26 26) 56%,
    rgba(26, 26, 26, 1) 100%
  );
}
.gacs_vector_banner {
  position: absolute;
  right: -110px;
  top: 135px;
}
.gacs_banner_sect .index_sect1_content .paragraph {
  max-width: 650px;
}
.why_gacs .boldTitle {
  color: #fff;
}
.banner_btn_sect {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta_br {
  background: transparent;
  border: 1px solid #fff;
}
.banner_btn_sect .input_field input {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  height: 60px;
}
.banner_btn_sect .input_field {
  margin: 0;
}
.gacs_card_sect .vector_1 {
  right: 30px;
  top: 155px;
  z-index: 2;
  width: 500px;
}
.gacs_blue_crad .card_title_section {
  transform: unset;
}
.gacs_blue_crad .paragraph {
  opacity: 1;
  transform: unset;
}
.gacs_industry_card {
  border-radius: 24px 24px 0 24px;
  padding: 40px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f7f7f7;
  /* background: url('../images/curve_bg.png'); */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.3s ease;
  color: #1a1a1a;
}
.gacs_industry_card .icon:after {
    position: absolute;
    content: "";
    top: -20px;
    right: 6px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    -webkit-box-shadow: 6px 6px 0 6px #fff;
    box-shadow: 6px 6px 0 6px #fff;
}
.gacs_industry_card .icon:before {
    position: absolute;
    content: "";
    bottom: 6px;
    left: -20px;
    background: transparent;
    width: 20px;
    height: 20px;
    border-bottom-right-radius: 20px;
    -webkit-box-shadow: 6px 6px 0 6px #fff;
    box-shadow: 6px 6px 0 6px #fff;
}
.gacs_industry_card:hover .icon {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.gacs_industry_card .icon {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.gacs_industry_card .icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 90px;
    height: 90px;
    background: #fff;
    border-top-left-radius: 50%;
    padding: 15px;
    opacity: 1;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.gacs_card_sect .vector_star {
  top: 60%;
}
/* Animated gradient overlay */
.gacs_industry_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00317b 0%, #0057b8 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Light sweep effect */
.gacs_industry_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: 1;
}

.gacs_industry_card:hover {
  transform: translateY(-6px);
}

.gacs_industry_card:hover::before {
  opacity: 1;
}

.gacs_industry_card:hover::after {
  left: 120%;
}

/* Ensure content stays above gradient */
.gacs_industry_card > * {
  position: relative;
  z-index: 2;
}

/* Text Styling */
.gacs_industry_card h5,
.gacs_industry_card .paragraph {
  transition: color 0.4s ease;
}

.gacs_industry_card:hover h5,
.gacs_industry_card:hover .paragraph {
  color: #fff;
}
.gacs_industry_card h5 {
  font-weight: 600;
  font-size: 35px;
}
.gacs_industry_card p {
  color: #505050;
  font-size: 20px;
  padding-top: 10px;
  font-weight: 400;
}
.gacs_industry_card:hover p {
  color: #fff;
}
.gacs_industry_card .cta {
  background: #1a1a1a;
  color: #fff;
  width: 100%;
  max-width: 220px;
  transition: all 0.3s ease-in-out;
}
.gacs_industry_card:hover .cta {
  background: #f7f7f7;
  color: #1a1a1a;
}
.why_gacs {
  position: relative;
  background: url("../images/why_gacs_bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}
.why_gacs:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgb(0 0 0 / 72%) 0%,
    rgba(15, 15, 15, 1) 100%
  );
  top: 0;
}
.why_gacs .container {
  position: relative;
}
.why_gacs .title_section h3 {
  color: #fff;
}
.why_gacs .title_section .paragraph {
  color: #fff;
  font-weight: 400;
  padding: 0 310px;
}
.why_gacs .title_section {
  padding: 0 0 50px;
}
.why_gacs_card {
  position: relative;
  background: #00317b;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 0;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid transparent;
}
.why_gacs_card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #01a9eb, #3fd0ff, #01a9eb);
  border-radius: 40px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.why_gacs_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  z-index: 1;
  transition: left 0.75s ease;
}
.why_gacs_card:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(1, 169, 235, 0.3);
}
.why_gacs_card:hover::before {
  opacity: 1;
}
.why_gacs_card:hover::after {
  left: 125%;
}
.why_gacs_card h6 {
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}
.why_gacs_card .paragraph {
  font-weight: 400;
  font-size: 18px;
  padding-top: 20px;
  color: #fff;
  transition: color 0.3s ease;
}
.gacs_work_section {
  position: relative;
  padding: 100px 0;
  background: #f9f9f9;
}
.gacs_work_section .title {
  color: #1a1a1a;
  font-weight: 600;
  padding-bottom: 30px;
  font-size: 70px;
}
.gacs_work_list {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #a8a5a5;
}
.gacs_work_list_last {
  border: none;
}
.gacs_list_num {
  font-size: 60px;
  color: #00317b;
  font-weight: 700;
  width: 80px;
}
.gacs_list_detail {
  width: calc(100% - 100px);
}
.gacs_list_detail .textBold {
  padding: 0;
  color: #00317b;
  font-weight: 600;
  font-size: 30px;
}
.gacs_list_detail .paragraph {
  color: #505050;
  font-weight: 400;
  font-size: 18px;
}
.gacs_work_content {
  padding-right: 50px;
}
.try_gacs_btn {
  padding-left: 110px;
}
.try_gacs_btn .cta {
  background: #1a1a1a;
  width: 200px;
}
.gacs_work_img img {
  width: 100%;
  border-radius: 40px;
  object-fit: cover;
  object-position: bottom;
  height: 700px;
}

/* Override Calendly popup container */
.calendly-popup-overlay {
  background-color: rgba(0, 0, 0, 0.6) !important; /* dimmed dark background */
  z-index: 9999 !important;
}

/* Force center and size of Calendly iframe */
.calendly-popup {
  max-width: 800px !important;
  width: 90% !important;
  height: 90vh !important;
  margin: auto !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background-color: white !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  position: fixed !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Hide excess spacing on body (optional) */
body.calendly-popup-open {
  overflow: hidden;
}

body.calendly-popup-open .WrdpezlzjKu1CoRihaXS {
  padding-bottom: 0 !important;
}
._cUP1np9gMvFQrcPftuf.xahN8AEzyAvQtVj17TPv {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
/* ============== Industries Page CSS Start Here ============ */
.industry_banner_section {
  position: relative;
  background: url("../images/healthcare_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
  height: 105vh;
  display: flex;
  align-items: center;
}
.industry_banner_section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgb(0 0 0) 0%,
    /* Top left area (strong black) */ rgb(0 0 0 / 67%) 40%,
    /* Top right-ish area (lighter black) */ rgb(0 0 0 / 53%) 70%,
    /* Transparent before white fade starts */ rgba(255, 255, 255, 1) 100%
      /* White bottom 30vh */
  );
}
.industry_banner_section .index_sect1_content .title {
    font-size: 40px;
    letter-spacing: -2px;
}
.industry_banner_section .index_sect1_content .title span {
    font-size: 80px;
}
.industry_banner_section .index_sect1_content .paragraph {
    max-width: 75%;
}
.healthcare_banner_sect {
  background: url("../images/healthcare_banner.png") no-repeat;
}
.industry_build_bg .collapse-toggle {
    padding: 0.8rem 1.5rem 0 !important;
    border: 0 !important;
}
.industry_build_bg .collapse-toggle .textBold {
  color: #505050;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
}
.industry_build_bg .collapse-toggle.active .textBold {
    color: #00317b;
    font-size: 30px;
    position: relative;
    padding-right: 30px;
    font-weight: 600;
}
.section-wrapper .collapse-toggle:hover .textBold {
    color: #002f78;
}
.industry_build_bg .paragraph {
  font-weight: 400;
  margin: 0;
  font-size: 18px;
}
.industry_build_bg .collapse-toggle .star_blue {
    display: none;
}
.industry_build_bg .collapse-toggle.active .star_blue {
    display: inline;
    position: absolute;
    right: 0;
    top: 5px;
    animation: twinklePulse 2s infinite ease-in-out, starGlow 3s infinite ease-in-out;
}
.industry_build_bg .collapse-toggle .star_black {
    display: inline;
}
.industry_build_bg .collapse-toggle.active .star_black {
    display: none;
}
.industry_build_section .title_section .paragraph {
    padding: 0 100px 20px;
}
.industry_banner_section .title {
    font-size: 30px !important;
    color: #A8A5A5;
}
.industry_build_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 0;
  font-size: 20px;
  color: #505050;
  font-weight: 500;
}
.industry_build_img img {
  width: 100%;
  border-radius: 40px;
  height: 650px;
  object-fit: cover;
  object-position: center;
}
.healthcare_compliance .btn_sect {
  justify-content: flex-start;
  margin-top: 50px;
}
.industry_build_section {
  position: relative;
  padding: 70px 0;
}
.healthcare_compliance {
  position: relative;
  padding: 70px 0;
  background: #f9f9f9;
}
.healthcare_compliance .title_section {
  text-align: left;
}
.healthcare_compliance .title_section .paragraph {
  padding: 20px 0;
  color: #505050;
}
.healthcare_compliance_img img {
  width: 100%;
  border-radius: 50px;
}
.healthcare_compliance_faq .accordion-button {
  padding: 0 20px !important;
  font-size: 18px !important;
  flex-direction: column;
  align-items: flex-start;
  color: #505050 !important;
}
.healthcare_compliance_faq .accordion-item {
  background: #fff !important;
}
.healthcare_compliance_faq .accordion-item .accordion-button:not(.collapsed) {
  background-color: #fff !important;
}
.healthcare_compliance_faq .accordion-item .accordion-button:not(.collapsed) {
  background-color: #fff !important;
}
.healthcare_compliance_faq .accordion-item .accordion-header {
  background-color: #fff !important;
}
.healthcare_compliance_faq .accordion-button .textBold {
  color: #1a1a1a;
}
.healthcare_compliance_faq .accordion-body {
  padding: 20px !important;
}
.healthcare_compliance_faq .accordion-button::after {
  display: none;
}
.healthcare_industries_sect {
  padding: 0;
  margin-top: 200px;
}
.healthcare_industries_sect .row > .col-12:nth-child(2) {
  margin-top: -300px;
}
.healthcare_industries_sect .row > .col-12:nth-child(5) {
  margin-top: -270px;
}
.healthcare_industries_sect .row > .col-12:nth-child(7) {
  margin-top: -120px;
}
.healthcare_cards {
  position: relative;
  height: 450px;
  padding-top: 60px;
}
.healthcare_cards .paragraph {
  opacity: 1;
  transform: unset;
}
.healthcare_cards .card_num {
  position: absolute;
  right: 20px;
  top: -10px;
}
.healthcare_industries_sect .industries_card_section .textBold {
  font-size: 38px !important;
  padding-right: 50px;
  line-height: 1.2;
}
.healthcare_feature {
  position: relative;
  padding: 70px 0;
  background: #f9f9f9;
}
.healthcare_feature .title_section {
  text-align: left;
}
.healthcare_feature .title_section {
  padding: 20px 0 30px;
}
.healthcare_feature .title_section .paragraph {
  padding: 10px 0 10px;
  max-width: 800px;
}
.healthcare_feature .title_section .cta_br {
  border-color: #1a1a1a;
  color: #1a1a1a;
}
.healthcare_bg_cardSection {
  padding: 20px 0 50px;
}
.section-wrapper .collapse-toggle {
  font-size: 30px;
  font-weight: 600;
  background-color: transparent;
  color: black;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #dee2e6;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 0;
}
.section-wrapper .collapse-toggle.active {
  background-color: #00abe9;
  color: white;
  border: 0;
  padding-bottom: 0;
}
.section-wrapper .collapse-body {
  background-color: #00abe9;
  color: white;
  padding: 1rem 1.5rem;
  border: none;
  border-top: none;
}
.section-wrapper {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}
.logistic_healthcare .paragraph {
  max-width: 100% !important;
}
.Logistics_list_sect ul {
  padding-left: 20px !important;
}
.Logistics_list_sect ul li {
  list-style: disc;
}
.logistics_transport_sect {
  background: url("../images/logistics_transport_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.ecommerce_retail_sect {
  background: url("../images/ecommerce_retail_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.finance_fintech_sect {
  background: url("../images/finance_fintech_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.elearning_sect {
  background: url("../images/elearning_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.realestate_proptech_sect {
  background: url("../images/realestate_proptech_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.travel_sect {
  background: url("../images/travel_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.manufacturing_sect {
  background: url("../images/manufacturing_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.automotive_sect {
  background: url("../images/automotive_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.media_entertainment_sect {
  background: url("../images/media_entertainment_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.public_sector_sect {
  background: url("../images/public_sect_banner.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.terms_privacy_banner_sect {
  background: url("../images/privacy-banner-image.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  height: 90vh;
}
.industry_work_withUs .row {
  padding: 0 0;
}

/* ========== Flip Card Animation =========== */
.flip-card {
  perspective: 1000px;
  width: 100%;
  height: 350px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 30px;
}
.flip-card:hover .flip-card-inner,
.flip-card.auto-flip .flip-card-inner {
  transform: rotateY(180deg);
}
/* .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
} */
.flip-card-front {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 10px;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(145deg, #00317b, #002766);
    color: #fff;
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  box-sizing: border-box;
}
.flip-card-back {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(145deg, #00317b, #002766);
  color: #fff;
  position: relative;
  z-index: 1;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: pulse-glow 2s infinite ease-in-out;
  box-shadow: 0 0 0 2px #01a9eb;
}
 @keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 2px #01a9eb, 0 0 10px #01a9eb, 0 0 20px #01a9eb;
  }
  50% {
    box-shadow: 0 0 0 2px #00317b, 0 0 15px #01a9eb, 0 0 30px #01a9eb;
  }
  100% {
    box-shadow: 0 0 0 2px #01a9eb, 0 0 10px #01a9eb, 0 0 20px #01a9eb;
  }
}

.flip-card-back {
  transform: rotateY(180deg);
}
.flip-card .textBold {
  font-size: 45px;
  padding: 0;
  line-height: 1;
  text-align: center;
}
.flip-card .paragraph {
  font-size: 18px;
  padding: 0 !important;
  font-weight: 500;
} 

/* ========== Thank You CSS =========== */
.thanks_wrapper {
    background: url('../images/thankyou_bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.thanks_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 0px 300px;
}
.thanks_content .title span {
    font-size: 50px;
    color: #1a1a1a;
    font-weight: 700;
}
.thanks_content .cta {
    width: 250px;
}
.thanks_content .paragraph {
    width: 60%;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 0;
}
.thanks_content .paragraph:nth-of-type(2) {
  color: #fff;
}
.thanks_content .paragraph a {
  color: #fff;
  font-weight: 500;
}
.thanks_content .copy_right_text p {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 0;
    color: #fff;
}
.thanks_logo {
    width: 170px;
}
.thanks_content .cta {
  background: #1a1a1a;
}
.thanks_content .cta:hover {
  background: #002f78 !important;
}